Re: Not able to deploy service!

2002-09-30 Thread Gregor Kovaè
Hi! Try deploying like this java org.apache.axis.client.AdminClient -hlocalhost -p8080 -s/axis/services/AdminService deploy.wsdd Best regards, Kovi At 13:25 30.9.2002 +0530, you wrote: > Hi > When i try to delploy a "deploy.wsdd" file, using the following > command

Re: SOAP messaging

2002-09-22 Thread Gregor Kovaè
Hi! Ok, I figured this out myself, but as I stated in my another mail, calling getContent() on SOAPPArt of SOAPMessage always returns null, even with Axis 1.0RC1 so this is pretty useless. Or do you know a way how to get a String / org.w3c.dom.Document out of SOAPBody not using any Axis' speci

Re: Unable to create JavaBean of type... maybe a name space problem

2002-09-22 Thread Gregor Kovaè
Hi! As the exception says the bean must have a default constructor and set/get methods for fields if you want to use the BeanSerializer, otherwie you can write your own serialider/deserializer. Best regards, Kovi At 02:39 23.9.2002 +0200, you wrote: >Hi, all. > >my client throws a SA

SOAP messaging

2002-09-20 Thread Gregor Kovaè
Hi! I'm sorry to post this again, but I didn't get any reply on my previous messages. So... I'm trying to write a service and a client that would exchange XML documents. On AXIS' web page there is a User's Guide talking about Axis three types of methods on the service side that can be used fo

messaging

2002-09-18 Thread Gregor Kovaè
Hi! I'm still trying to send an org.w3c.dom.Document XML document with Axis. Since in user's doc there is a section about this stating that Axis supports also the public Document method(Document doc) type of methods on the service side I tried using JAXM to send it: SOAPConnectionFactory facto

Re: Exeption when creating wsdl for "document-type".

2002-09-18 Thread Gregor Kovaè
Hi! Look at the User's Guide on Axis' website. There is a section about messaging (sending XML documents). And in samples/messaging directory of your Axis install you have an example of the first method type Axis supports. I also tried making it work with org.w3c.dom.document and I didn't succ

Sending org.w3c.dom.Document and java:MSG

2002-09-17 Thread Gregor Kovaè
Hi! In User's Guide of Axis there is stated that  Axis supports messaging with three types of methods: public Element [] method(Vector v); public Document method(Document doc); public void method(MessageContext mc); The sample in samples/messaging is using the first method (public Element [] metho