RE: Http 1.0 session

2002-08-15 Thread Hongda Lin
re are also products like Tomcat or Resin that provide both a Web server and J2EE container. Scott Nichol - Original Message - From: "Hongda Lin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 15, 2002 1:18 PM Subject: Http 1.0 session Hi, Does a

Http 1.0 session

2002-08-15 Thread Hongda Lin
Hi, Does anyone know how long HTTP1.0 session stays alive? I do know HTTP does expires after a period of time. How long is that? Can I set it? Also does apache SOAP work with IIS? Thanks a lot, Hongda -- To unsubscribe, e-mail: For additional comma

RE: Is this the way SOAP works?

2002-08-13 Thread Hongda Lin
tly after the method is called on the instance. This stuff all happens in org.apache.soap.server.http.ServerHTTPUtils#getTargetObject. Scott Nichol - Original Message - From: "Hongda Lin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 13, 20

Is this the way SOAP works?

2002-08-13 Thread Hongda Lin
Title: RE: Will call-back works on SOAP by managing HTTP session? Hi,     I know that SOAP uses HTTP 1.0. After a request/response the HTTP session dies, but what about the code it was running on? Is it running all the time once you register it, then it just waiting for someone to

RE: Will call-back works on SOAP by managing HTTP session?

2002-08-09 Thread Hongda Lin
e can simulate it. BTW , do u know how to access the common request header info on webservice side once call comes in? I need to take some action based on "REMOTE_USER" , and other common request header parameters within my webservice code. Please let me know. thanks -Original Messag

Will call-back works on SOAP by managing HTTP session?

2002-08-09 Thread Hongda Lin
Hi, Does anyone know if call-back works on SOAP by managing HTTP session? I know that HTTP is a connectionless protocol. Is HTTP session manageable in Java? Thank you, Hongda -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Question: Does SOAP support call-back?

2002-08-08 Thread Hongda Lin
uses HTTP 1.0, you can only send one request/response on any connection. My larger question is why you want to create this tortured design? SOAP was not designed for such a scenario, whereas something like RMI was. Scott Nichol - Original Message ----- From: "Hongda Lin" &l

RE: Question: Does SOAP support call-back?

2002-08-02 Thread Hongda Lin
for example). My question is it possible for me to have a SOAP call back without setting up a web application server at the client-side? Thank you, Hongda Lin -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 10:04 AM To: [EMAIL

Question: Does SOAP support call-back?

2002-08-02 Thread Hongda Lin
Hi,     I am trying to switch from JAVA RMI to SOAP. Does SOAP support call-back? If it does, how? Thank you.