Re: Problem in installation

2002-02-25 Thread Steen Linden
Hi Nilanjan, I had a null pointer problem similar to the one you describe on a Windows NT box when running SOAP-2_2 on tomcat 3.2.4 with jdk1.2.2. It works for me now after upgrading to j2sdk1.4.0 and modifying tomcat.bat to include all the SOAP related jars in CLASSPATH. Best wishes Steen Lind

Re: SSL over SOAP is SLOW!

2002-02-25 Thread David Wall
That shouldn't be the problem since the comparison was HTTP versus HTTPS, and cookie/session management would be the same. The "problem" is that the first call using an SSL socket requires the initialization of the SecureRandom object. After the first message is sent, you should be able to see m

Architecture

2002-02-25 Thread Parimi Srinivas
Hi, Is there any architecture guide avl for soap 2.2.2,

WSDL generation in soap 2.2.2

2002-02-25 Thread Parimi Srinivas
Hi, Do soap 2.2.2 has utility classes to generate WSDL like the ones( Wsdl2java and java2Wsdl) in Axis alpha 3 ?.

RE: SSL over SOAP is SLOW!

2002-02-25 Thread armstpat
If you call SOAPHTTPConnection.setMaintainSession(true), then the setup only happens on the first call and you have session oriented connections. If you don't want sessions, then as far as I know, the setup will happen each time and the overhead will kill your app. One of the samples gives an ex

RE: SSL over SOAP is SLOW!

2002-02-25 Thread Jeremy Levy
I am using RPC, so therefore the first "Call" set's it up, or each call it has to set up? jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 5:14 PM To: [EMAIL PROTECTED] Subject: RE: SSL over SOAP is SLOW! The initial setup of

legal question

2002-02-25 Thread Bill Binole
Title: legal question We are currently using an old version of SOAP mainly because the newer versions are using the java mail api which cannot be freely distrubuted according the the liscense aggreement.  Is this true?  Is there something like the JRE that can be freely distrubuted ?  I would

RE: SSL over SOAP is SLOW!

2002-02-25 Thread armstpat
The initial setup of the connection is the time consuming task. If you use sessions, this only happens once. -Original Message- From: Jeremy Levy [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 1:52 PM To: [EMAIL PROTECTED] Subject: SSL over SOAP is SLOW! I have noticed a si

Re: WSDL interop question

2002-02-25 Thread Simon Fell
One clarification .NET does support import, MSTK2.0 does not. Cheers Simon www.pocketsoap.com On Mon, 25 Feb 2002 22:36:31 -, in soap you wrote: >Yes.. you have to combine the three generated files into one.. i.e. .NET >can't handle the inport tags so you have to do the importing by hand. >

Re: WSDL interop question

2002-02-25 Thread Phil Cornelius
Yes.. you have to combine the three generated files into one.. i.e. .NET can't handle the inport tags so you have to do the importing by hand. One other important thing when combining the files is change binding: to tns: in the service section Here is one of my wsdl files that I combined from th

SSL over SOAP is SLOW!

2002-02-25 Thread Jeremy Levy
I have noticed a significant difference in the speed of my soap calls when I use SSL... Anyone experienced anything similar? jeremy _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

AW: How to send an xml-message in "iso-8859-1" encoding?

2002-02-25 Thread Beer, Christian
Hi Andreas, okay, thanks. Found a way to convert my strings to UTF-8. Christian > -Ursprüngliche Nachricht- > Von: Andreas Ullmann [mailto:[EMAIL PROTECTED]] > Gesendet: Montag, 25. Februar 2002 15:01 > An: Beer, Christian; [EMAIL PROTECTED] > Betreff: Re: How to send an xml-message in

Error building response envelope

2002-02-25 Thread Carver, Christopher
--Problem: When trying to recieve a SOAP message from my server I get the following error: Exception in thread "main" [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml". Response was: Error: 500 Location: /soap/servlet/messagerout

Re: How to send an xml-message in "iso-8859-1" encoding?

2002-02-25 Thread Andreas Ullmann
Hi Christian, UTF-8 is also able to handle the german Umlaute properly. The only draw back is that the message you send will get a bit longer. If you like we can continue our conversation in german ( [EMAIL PROTECTED]) Andreas > We are sending messages, containing an xml-body, where a user-d

RE: Firewall problem: Invalid SAX Transformer && URLNotAvailableException

2002-02-25 Thread Michel Bergijk
Chuck, I am not accessing my own webserver using localhost, but with my (intranet) system name. So I am using the proxy to access my own system. The problem lies in my webserver trying to access Internet services, and not being able to find these services. Me thinks it is because of the SOAP req

How to send an xml-message in "iso-8859-1" encoding?

2002-02-25 Thread Beer, Christian
We are sending messages, containing an xml-body, where a user-definable text may contain german umlauts (äöü...). This have to be sent using encoding="ISO-8859-1". I saw, that "UTF-8" is hard coded. Is there a way to go around this prob.? Thanks Christian __

Re: Firewall problem: Invalid SAX Transformer && URLNotAvailableExcep tion

2002-02-25 Thread Chuck Amadi
Michel Bergijk wrote: >SOAP users, > >In my company we use a proxy which is frustrating my SOAP. Anyone know how I >can get through the proxy? When I look into the >%JETSPEED_HOME%\WEB-INF\log\jetspeed.log I find the following information: >[Mon Feb 25 12:27:35 CET 2002] -- WARN -- Cache getEntry

Firewall problem: Invalid SAX Transformer && URLNotAvailableException

2002-02-25 Thread Michel Bergijk
SOAP users, In my company we use a proxy which is frustrating my SOAP. Anyone know how I can get through the proxy? When I look into the %JETSPEED_HOME%\WEB-INF\log\jetspeed.log I find the following information: [Mon Feb 25 12:27:35 CET 2002] -- WARN -- Cache getEntry Called with http://jakarta.a

doubt in JWSDP

2002-02-25 Thread V.Sundaresan
In a hurry i miss spelt the whole mail. Sorry! for the inconvenience caused. I got few doubts in webservices RI(JWSDP) from sun. Am trying to contact a SOAP component implemented in JAX-RPC thru JAXM API. JAXRPC server implementation - given sample for JAX-RPC JAXM code follows. -

Java WebServices Developer Pack

2002-02-25 Thread V.Sundaresan
Hi all, Any of got any chance to work with JWSD pack from Sun. I got few doubts regarding in their RI. Doubt: Am trying to contact a SOAP component implemented thru JAX-RPC from thru JAXM API. It should be possible. But am getting security privileges exception while running JAXM client..

Re: How to call a web service from a web app or html page

2002-02-25 Thread akshay saluja
Hello Paco I could not understand ur question when you can use Call to call the method from an applet client then u can return the response of the soap service to ur applet method which u can access through the JavaScript code.If you want some more details as to how you can make a Call to a web s