RE: porting from socket to SOAP

2002-02-28 Thread Colin Saxton
Most implementations of SOAP use HTTP which means the connection is closed after each client request (or possibly closed). This means that any data sent from the server must first come from a client request. It also depends on the nodes that are communicating. To implement effecient

RE: porting from socket to SOAP

2002-02-28 Thread Colin Saxton
With comments like this "This means that any data sent from the server must first come from a client request." (SEEBELOW) you would think that it was Monday morning!! (doh...)my apologies but you get what I mean...(I hope!!) -Original Message-From: Colin Saxton

Inspection of a returned Response-Object

2002-02-28 Thread michael . buchardt
Hi, trying invoke(URLStringValue, SOAPActionValue) on my Call-Object, I receive a response-object. Using the method getParams() and size() on the returned Vector [myParaVector = myResp.getParams(); int myVecSize = myParaVector.size();] to inspect the field params of the returned response-object,

RE: porting from socket to SOAP

2002-02-28 Thread Simon McClenahan
Our system received asynchronous callbacks from B using our own custom protocol that was similar to HTTP. When we decided to switch to SOAP for messaging, we also changed the transport to HTTP. HTTP uses a request-response method of transmission, whereas our systems also require a

Re: get real XML message of Call instance

2002-02-28 Thread Tim Wei
Would somebody please give me the email address that I can unsubscribe from this user list? Thanks. Tim --- Fred Meredith [EMAIL PROTECTED] wrote: --- I'm assuming you want to do this on the client side? But anyway, you can call the buildEnvelope method of the Call object to return an

Re: porting from socket to SOAP

2002-02-28 Thread Mike Brown
Thanks Colin and Simon for your responses! After further reading, I'm wondering if there is a way to do this using HTTP/SSL. (I also need to tackle our security problem). Can I setup a HTTPS connection between the two programs and ensure that the connection is persistent? Program A connects to

RE: sun j2ee ref impl and soap 2.2

2002-02-28 Thread Rob Finneran
I also agree. Use the JBoss/Tomcat or JBoss/Jetty 2.4.4 packages and simply drop the soap .war file into the deploy directory. Cheers! -Original Message- From: Colin Saxton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 1:19 AM To: '[EMAIL PROTECTED]' Subject: RE: sun

WSDL vs SOAP service

2002-02-28 Thread Harden ZHU
What is difference of web service(WSDL) and SOAP service? Are they same? Deploy the web service in SOAP server is same as deploy soap service? Thanks Harden

RE: WSDL vs SOAP service

2002-02-28 Thread Brian Abbott
Harden, Webservices is really more of a concept that a tangible entity. Basically webservices is the idea of transmitting self-describing objects over layer 7 protocols. SOAP and WSDL are components which comprise a working implementation of the web services concept. For more

error to run a installation command

2002-02-28 Thread Jinghua Gu
When I run the following command, I got the error: java org.apache.soap.server.ServiceManagerClient rcp-router-url list Exception in thread main java.net.MalformedURLException: no protocol: rcp-rout er-url at java.net.URL.init(URL.java:473) at java.net.URL.init(URL.java:376) at

Java SOAP call

2002-02-28 Thread Neil Stirton
Please can someone answer this... I have written a port listener and redirected my soap calls to go through this listener (proxy). Why does the header start like this: POST HTTP/1.0 with no path supplied in between? The call still seems to work but I am confused as to how, if there is no

RE: Urgent Help requirred - Limitations of the TcpTunnel

2002-02-28 Thread William Brogden
I believe the tunnel uses an AWT TextArea to display data. There is a 32k character limit on the display - furthermore, the tunnel works with small chunks of characters, repeatedly adding them to the TextArea - this does not work well with large messages. To capture large messages, modify the