RE: Invoking NasdaqQuotes sample web service (IBM WSTK2.3 proble m)

2001-08-09 Thread Zafar Nisthar
Thanks, Its not the StringDeserializer because its the NasdaqQuote object that it couldn't deserialize. By the way in the tutorial, in the deploy batch file what does it mean when it says remember to copy all of the wsdl files located in ./deploy to a well known location on your webserver? is

RE: Invoking NasdaqQuotes sample web service (IBM WSTK2.3 proble m)

2001-08-09 Thread James M Snell
Right, I believe its the beandeserializer. And yes, the WSDL's need to be out on your Web server. - James Snell Software Engineer, Emerging Technologies, IBM James M Snell/Fresno/IBM - [EMAIL PROTECTED] No, 'being created in God's image' does not mean I'll have this project done

RE: Invoking NasdaqQuotes sample web service (IBM WSTK2.3 proble m)

2001-08-09 Thread Zafar Nisthar
Finally got it to work Thanks to your help ! -zaf -Original Message- From: James M Snell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 1:24 PM To: [EMAIL PROTECTED] Subject: RE: Invoking NasdaqQuotes sample web service (IBM WSTK2.3 proble m) Right, I believe its the

Re: Client authentication with SSL

2001-08-09 Thread Christoph Brunner
Hi, I currently use an TOMCAT stand alone environment! Can you tel me how to generate the client certificate and how I deploy it on TOMCAT-SOAP to authenticate the Client against the server? Thank you very much Christoph Brunner *** REPLY SEPARATOR *** On 06.08.2001 at 15:32

To everyone who wants to UNSUBSCRIBE

2001-08-09 Thread Steeve Gilbert
To remove your address from the list, send a message to: [EMAIL PROTECTED]

Best way to send XML over Soap?

2001-08-09 Thread Michael Svoboda
I'd like to send plain XML inside the envelope from the client to the server and back. (I use XML because the client doesn't have to be written in Java and because I don't wan't to write Serializer/Deserializer) I know that one could use a literal_xml encoding or just put the whole XML-file in

running the provider sample

2001-08-09 Thread Kari Whitcomb
Hi all, I am trying to get all the samples to run and have a question about the sample in the provider directory (testprovider). The README file says that it should print out some information about the soap server, but when I run it, it does not. It completes succesfully, but this is all that

Problems with VB Client.

2001-08-09 Thread nielsenk
Hi all, I am having troubles getting out of the shoot here. I have created a WSDL for a StatelessEJB with one method exposed: ?xml version=1.0? definitions name=ExpenseService targetNamespace= http://www.digitalesp.com/services; xmlns=http://schemas.xmlsoap.org/wsdl/

unsubscribe me

2001-08-09 Thread prabha britto
unsubscribe me __ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/

Re: running the provider sample

2001-08-09 Thread Kari Whitcomb
I've got it now. Thanks a lot! -Kari - Original Message - From: Steeve Gilbert [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 11:16 AM Subject: Re: running the provider sample Hi Kari! From the ReadMe: Prints some debug information on the SOAP server to

RE: chaining soap servers

2001-08-09 Thread HariNam Singh
Glen, thanks a lot, this was the valueable information that I was looking for. What is SOAP-RP? Do you have a link. Somehow, I have a hard time finding documents on w3c. Their search just doesn't return everything. Thanks, HariNam -Original Message- From: Glen Daniels [mailto:[EMAIL

Re: Client authentication with SSL

2001-08-09 Thread Rich Catlett
If you go to the user documentation, click on Installation, and go to the bottom of the page, there is a link to setting up SSL on tomcat and it talks about creating, exporting and importing certificates. Christoph Brunner wrote: Hi, I currently use an TOMCAT stand alone environment! Can you

Re: Best way to send XML over Soap?

2001-08-09 Thread Rich Catlett
I am doing the same thing, this is what I have found. You can send the XML as a string, but if that String gets to large there can be performance problems on the order of a minute or two. Sending the XML in the body of the Envelope you have to unmarshall it into an envelope and then you

Re: Client authentication with SSL

2001-08-09 Thread Christoph Brunner
I have this done and with clientAuth=false it works! But with clientAuth=true there is an error: Caught SOAPException (SOAP-ENV:Client): Error opening socket: null In the window of TOMCAT following error appear: 2001-08-06 03:03:36 - Ctx( ): 400 R( /) null 2001-08-06 03:03:36 - Ctx( ):

No Access to SOAP Message inside custom provider

2001-08-09 Thread Mehashah
Hi, I wrote a custom SOAP Provider to process my RPC calls. I have two questions... I had hope the SOAP engine would not deserialize the content before calling the locate and invoke methods, but it does and I don't understand why ? Secondly when I try to access the content of the envelope by

Re: Client authentication with SSL

2001-08-09 Thread Rich Catlett
I looked at my implementation, and I have clientAuth=false. When I set it = true I also got an error, although this is what I got Exception in thread main [SOAPException: faultCode=SOAP-ENV:Client; msg=Error opening socket: null; targetException=java.lang.IllegalArgumentException: Error

IOException in: R( /) Socket closed

2001-08-09 Thread Jerome Destarac
hi, i've this error ; 400 R( /) null IOException in: R( /) Socket closed i use apache-tomcat server with a Vb client. i have these properties to my client Connector.Property(EndPointURL) = https://server:443/soap/servlet/rpcroute Connector.Property(UseSSL) = True

Can't load provider

2001-08-09 Thread Mark A. Richman
I am trying out my pluggable provider implementation on Tomcat 4.0. My provider is in a jar file called Filesystem.jar, which I placed in Tomcat's lib folder. When I try to invoke the service, I get the following error: Ouch, the call failed: Fault Code = SOAP-ENV:Server Fault

Converting Java objects to XML using SOAP utilities

2001-08-09 Thread wen xie
Hi, I am trying to use SOAP utilities to convert Java objects to XML format since I know that SOAP embeds objects to XML messages. I did some searches but so far no good. I don't need to invoke RPCs or communicate between client and server. Simply I just want to know how I can convert Java

getting attachments back from a messging service

2001-08-09 Thread Rich Catlett
I'm looking for suggestions from anyone who has done this. I'm looking to send an XML document back, and possibly in the future send back other items as attachments. I already sent a question about adding these attachments to the response so they get back. This question is about retrieving

Re: Converting Java objects to XML using SOAP utilities

2001-08-09 Thread Rich Catlett
There is also castor available at http://exolab.org Rich Catlett graham glass wrote: GLUE performs automatic bidirectional conversion from java to XML when sending arguments using SOAP. http://www.themindelectric.com cheers, graham -Original Message- From: wen xie [mailto:[EMAIL

Re: Converting Java objects to XML using SOAP utilities

2001-08-09 Thread HepJedi \(aka Aaron\)
Is GLUE free? - Original Message - From: graham glass [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 4:39 PM Subject: RE: Converting Java objects to XML using SOAP utilities GLUE performs automatic bidirectional conversion from java to XML when sending

RE: Converting Java objects to XML using SOAP utilities

2001-08-09 Thread graham glass
for most commercial uses. -Original Message- From: HepJedi (aka Aaron) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 3:50 PM To: [EMAIL PROTECTED] Subject: Re: Converting Java objects to XML using SOAP utilities Is GLUE free? - Original Message - From: graham

RE: Best way to send XML over Soap?

2001-08-09 Thread Huong Phan Thu
Hi, Have I missed any follow-up messages? Could you please let me know how to send XML file as attachment inside a message? Thanks Huong Phan Email: [EMAIL PROTECTED] |-Original Message- |From: Rich Catlett [mailto:[EMAIL PROTECTED]] |Sent:

message from c++ client to java server.

2001-08-09 Thread Jyothi K
Hi, I am testing the interop. I have a C++ client and a java server. I am using ScottSeely's simple soap library for C++ and Apache SOAP2.2 for java and Tomcat as my web server. I have an add method in server which taked two integer parameters. The java client and server are working

Urgent Question Please help ( Custom provider not working )

2001-08-09 Thread Mehashah
Hi, I wrote a custom SOAP Provider to process my RPC calls. I have two questions... I had hope the SOAP engine would not deserialize the content before calling the locate and invoke methods, but it does and I don't understand why ? Secondly when I try to access the content of the envelope by