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 Re

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 pa

Re: WSDL vs SOAP service

2002-02-28 Thread Harden ZHU
Sorry, I miss lead the question. I saw in apache soap samples there are some *.wsdl files. How those files work with soap server? Thanks Harden - Original Message - From: "Harden ZHU" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 28, 2002 5:40 PM Subject: WSDL vs S

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.(URL.java:473)     at java.net.URL.(URL.java:376)     a

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 informati

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: 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 j2ee

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: 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 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 solicit-response

Re: error message

2002-02-28 Thread Mark Childerson
You are also using Tomcat as your servlet container. Tomcat doesn't use the regular classpath, as far as I can recall: you need to put needed jars in the TOMCAT_HOME\lib directory tree. The precise location depends on the Tomcat version. At 05:01 PM 2/27/02 -0800, you wrote: Hello,   I'm just t

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 Colin Saxton
With comments like this   "This means that any data sent from the server must first come from a client request." (SEE BELOW)    you would think that it was Monday morning!! (doh...) my apologies but you get what I mean...(I hope!!) -Original Message-From: Colin Saxton [mailt

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 commu

RE: sun j2ee ref impl and soap 2.2

2002-02-28 Thread Colin Saxton
Use JBoss instead! its free (www.jboss.org) -Original Message- From: Paul Baker [mailto:[EMAIL PROTECTED]] Sent: 27 February 2002 23:18 To: [EMAIL PROTECTED] Subject: sun j2ee ref impl and soap 2.2 Anyone have a receipe (or success story) to install soap 2.2 on the latest j2ee ref imp