RE: Axis, gSoap Project

2004-12-14 Thread Zhou Jian Han
This is very useful. Also do you have any sample which uses gSoap as a server and Axis as a client. Can you post it? thanks, Georgia -Original Message- From: V D [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 10:12 PM To: [EMAIL PROTECTED] Subject: Axis, gSoap Project I just

RE: Connection Timeout

2004-12-02 Thread Zhou Jian Han
PROTECTED] Sent: Wednesday, December 01, 2004 10:10 PM To: '[EMAIL PROTECTED]' Subject: RE: Connection Timeout I think you should specify -1 as timeout value. Regards, Luc. -Original Message- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: woensdag 1 december 2004 18:44 To: [EMA

RE: Connection Timeout

2004-12-01 Thread Zhou Jian Han
Hi, Do you know is there anyway to set no-timeout for the client request? Thanks, Georgia -Original Message- From: Bernolet, Luc [PRDBE Extern] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 2:44 AM To: '[EMAIL PROTECTED]' Subject: RE: Connection Timeout Hi, I had a simil

How to set request contains HTTP header with "Connection: Keep-Alive" in Axis

2004-11-30 Thread Zhou Jian Han
Hi, I look into the Class 'Call' which has setTimeOut(Integer timeout), it takes millisec as param. But How can I set a request which has no timeout, and generate request contains an HTTP header with "Connection:keep-alive". Should I set timeout=-1?? Many Thanks, Georgia <>

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-27 Thread Zhou Jian Han
, October 22, 2004 8:28 AM To: [EMAIL PROTECTED] Subject: RE: Does Axis support polymorphism (dynamic send back the derived class) > -Original Message- > From: Zhou Jian Han [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 21, 2004 7:24 PM > To: [EMAIL PROTECTED] > Subject

RE: one way message callback to Apache Axis?

2004-10-27 Thread Zhou Jian Han
? Thanks, Georgia -Original Message- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: Friday, October 22, 2004 11:47 AM To: [EMAIL PROTECTED] Subject: one way message callback to Apache Axis? Hello, Does anybody using one way message and call back in Axis client side? Do I have to use JMS

one way message callback to Apache Axis?

2004-10-22 Thread Zhou Jian Han
Hello, Does anybody using one way message and call back in Axis client side? Do I have to use JMS? But I can't because of I use gSoap(c/c++) as my server SOAP. I use Axis as SOAP client. I tried to send a oneway call back function from server, here are the steps I did, I must be missing somthing

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
="xxx" use="encoded"/> http://schemas.xmlsoap.org/soap/encoding/"; namespace="xxx" use="encoded"/> ... Christophe > -Original Message- > From: Zhou Jian Han [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 2

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
----- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: Thursday, October 21, 2004 2:42 PM To: [EMAIL PROTECTED] Subject: RE: Does Axis support polymorphism (dynamic send back the derived class) Hi Christophe, I tried use the comand: soapcpp2 -t polymorph.h but it does not generate any xsi:type

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
cle 4 40 ... Christophe > -Original Message- > From: Zhou Jian Han [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 21, 2004 3:08 PM > To: [EMAIL PROTECTED] > Subject: RE: Does Axis support polymorphism (dynamic send back the derived > class) > > Hi Christophe, >

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
Hi Christophe, According to your suggestion, I took out the inherited fileds. and I checked my PolymorphStub.java, it does include both Shape and Square, see below: public PolymorphStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { if (service == null) { sup

RE: Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
; -Original Message----- > From: Zhou Jian Han [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 21, 2004 1:02 PM > To: [EMAIL PROTECTED] > Subject: Does Axis support polymorphism (dynamic send back the derived > class) > > Hi, > I have a based class named Shape, and a der

Does Axis support polymorphism (dynamic send back the derived class)

2004-10-21 Thread Zhou Jian Han
Hi, I have a based class named Shape, and a derived class named Square( Square extends Shape). Is that possible I declare a method in service: public Shape getShape(int type) throws RemoteException and send back the Square Object? By the way, I use gSoap(c/c++ soap) on server side, and apache Axi