Examples of messages with SOAP attatchments

2001-08-06 Thread Aniruddha Shevade
Hello I have implemented a SOAP server in C++. I plan to use chunked HTTP transfer encoding to send any soap attatchment. Is there any reference where I can find information for generating such messages to test my server Any help is appreciated Thanks Aniruddha

RE: acriotURI

2001-08-06 Thread Matthew J. Duftler
Hi Rich, That is where you can specify the URI to be used for the value of the SOAPAction header (see: http://www.w3.org/TR/2000/NOTE-SOAP-2508/#_Toc478383528). Here's the JavaDoc comment from that method: * @param actionURI the value of the SOAPAction header Thanks, -Matt > -Original

Re: acriotURI

2001-08-06 Thread Rich Catlett
> The send method of a SOAP Message has three parameters, the URL of > the message router, the actionURI, and the envelope. What is the > actionURI? > > Rich Catlett >

Re: Client authentication with SSL

2001-08-06 Thread Bernd Koecke
Hi, I think this behaviour is ok. With client authentication the server does an extended handshake. It checks the certificate of the client. So the server must know the one from the client as well or it must trust the certification authority which signed the client certificate. How to solve the

Re: Soap exception

2001-08-06 Thread Richard Boehme
OK. Glad to help :) --Richard On Mon, 6 Aug 2001, Chiranjeevi Paruchur wrote: > > Richard, > > Its working. > > The problem is with my package structure. > > There is no line about package in my server class. > > Thanks > > Chiran > > > > "Chiranjeevi > P

Re: Soap exception

2001-08-06 Thread Chiranjeevi Paruchur
Richard, Its working. The problem is with my package structure. There is no line about package in my server class. Thanks Chiran "Chiranjeev

Re: Soap exception

2001-08-06 Thread Chiranjeevi Paruchur
Richard, U are right. I am accessing my client which is kept at samples/chiran directory on my server. I created the Call object using call.setTargetObjectURI("urn:HelloChiran") and i deployed my service with the same name. But when I run my client I get the following error. Generated faul

Re: Soap exception

2001-08-06 Thread Richard Boehme
Are you trying to connect the client by pointing it at samples.chiran.HelloChiran? One it's deployed, it is accessed in the client by whatever name you created for it in the deployment descriptor (IE urn:HelloChiran). like this http://xml.apache.org/xml-soap/deployment"; id=urn:HelloChiran"> . .

test

2001-08-06 Thread Brian Levine
Title: test test

Soap exception

2001-08-06 Thread Chiranjeevi Paruchur
Hi! My SOAP service name is HelloChiran and when I run my client it throws me an error Generated fault: fault Code =SOAP-ENV:Server.Exception: Fault String =samples/chiran/HelloChiran (wrong name: HelloChiran) can any one suggest me what would have gone wrong . Chiran

RE: Working with Xerces

2001-08-06 Thread Tom Myers
At 08:07 AM 8/6/2001 -0400, Bardman, Jody wrote: >... >Here is the code I used but importNode() doesn't seem to copy anything. >What am I doing wrong? >if (nodeList.getLength() == 1) >{ > docOut.importNode(nodeList.item(0),true); >} >... >At this point szXML only contains: > Well, you

Re: SOAP and XML Problem???

2001-08-06 Thread Tom Myers
At 01:54 PM 8/6/2001 +0200, [EMAIL PROTECTED] wrote: >Hello together, > >I have installed ANT which is running pretty good. >Now I installed a net Target for integrating SOAP into my ANT script. > >After starting ANT I get the following Error: > >deploysoap: >Desrializer: org.apache.soap.encoding.

Client authentication with SSL

2001-08-06 Thread Christoph Brunner
Hi, i have installed APACHE-SOAP, TOMCAT and SSL! It's working fine with clientAuth=false! When i change the connector- parameter 'clientAuth' (server.xml) to true the following error appear: Caught SOAPException (SOAP-ENV:Client): Error opening socket: null In the window of TOMCAT following er

RE: Working with Xerces

2001-08-06 Thread Bardman, Jody
Title: RE: Working with Xerces Thanks Steeve Your suggested code works but I changed my mind on my implementation. After I get the response from SOAP, I want to just take certain nodes from it and copy those nodes to a new document. From there I want to get the XML. Here is the code I used

SOAP and XML Problem???

2001-08-06 Thread mario . heiss
Hello together, I have installed ANT which is running pretty good. Now I installed a net Target for integrating SOAP into my ANT script. After starting ANT I get the following Error: deploysoap: Desrializer: org.apache.soap.encoding.soapenc.ParameterSerializer@55562 org.xml.sax.SAXParseExceptio

making a Servlet a SOAP service...

2001-08-06 Thread Julian Gosnell
I'm considering a number of design solutions for a web app that I am playing with. I would like to expose a service API via SOAP and a report/admin interface via a Servlet. 1. Implement 3 objects, a Servlet, a SOAP Service and some shared state and tell the two services how to find the shared st