Inheritance in Argument Classes Resolved?

2002-06-24 Thread Ronald Hütter
I'm exposing a method, that uses an interface as an argument. Properties defined in that interface go into the WSDL and the client-side stub code. However, that interface extends another interface, which's properties don't appear in the WSDL. Is this a feature or a bug? Second: the stub generated

WSDL2Java: abstract class generated for referenced type?!?

2002-05-30 Thread Ronald Hütter
I defined a service, which uses a complex type. The complex type (at the service side) is described by an _interface_. Running the sources through Java2WSDL and WSDL2Java results in a client-side class being generated for the complex type which is _abstract_. Now, if I execute the service method,

Design guidelines for web service interfaces?

2002-05-23 Thread Ronald Hütter
Does anybody know about some guidelines on how to design web service interfaces? I'm facing a couple of problems when translating object oriented interfaces into traditional RPCs. Thanks, Ronald

Re: javascript SOAP clients

2002-05-20 Thread Ronald Hütter
You may want to try WASP. I believe its what you're looking for. Regards, Ronald Huetter - Original Message - From: "robert woodley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, 20. May 2002 21:43 Subject: javascript SOAP clients > Dear All - > > I need to write a AXIS SOAP

Persistent connections: do I use these by default?

2002-05-10 Thread Ronald Hütter
I read here and there about persistent connections. Is AXIS using these by default or can I configure for it? Will it improve performance?

--deployScope "Session": what to expect

2002-05-09 Thread Ronald Hütter
I expected, that if I deploy the service with the above option, the constructor of the xxxImpl class would be called only once per session. In fact I don't see any difference compared to "Request" scope. Am I on the wrong track? How can I instantiate a class as a session singleton?

Using multiple threads to call the same service

2002-05-04 Thread Ronald Hütter
Does anybody know, whether it is safe to call the same service by multiple threads, resulting in overlapping calls? BR, Ronald

Performance impact of XML Parser?

2002-05-04 Thread Ronald Hütter
I did not explicitly put any specific XML parser on the classpath. How can I know, which one is used and which one would give me the best performance? Ronald