No serializer found

2005-02-16 Thread Christopher Johnson
I'm in the process of writing a web service and have ran into the problem of sending custom objects. I have an object that contains nothing more then a few String[] and Datahandler[]. When calling invoke I get the error No serializer found... understandable.. in my client code I added the

documentation tag

2005-02-08 Thread Christopher Johnson
Has anyone gotten the documentation tag to display 'documentation' in their wsdl? Thanks

Web Service Security

2005-02-04 Thread Christopher Johnson
While Axis creates WSDL's for you based off deployed java code they are not always secure. How do I add my own schemas to the created WSDL's. Do I use the Java2WSDL then edit them as needed, where do I put these documents on the server. How do I tell axis to use my custom WSDL rather then make

Re: How to monitor remote web service endpoints

2005-02-04 Thread Christopher Johnson
If the remote host is using axis you could make use of the SOAPMonitor or... you could make use of etheral to watch all network traffic Chris On Fri, 4 Feb 2005, babloosony wrote: Hi All, I am using AXIS TCPMonitor to monitor my soap requests and soap response for all the web service

Re: Client Certificates in Axis

2005-02-04 Thread Christopher Johnson
/* Gives applications knowledge of client certificate */ System.setProperty(javax.net.ssl.keyStore, mycert.p12); System.setProperty(javax.net.ssl.keyStoreType, pkcs12); System.setProperty(javax.net.ssl.keyStorePassword, password); Make sure you have the server ask for the Client cert. On Fri, 4

Connection Keep Alive

2005-02-03 Thread Christopher Johnson
I'm trying to increase performance to my web service by making use of the HTTP/1.1 protocol I'd like to set Connection to keep-alive but I'm not sure how to do it, everything try is not working for me. Also by setting connection to keep-alive after calling call.invoke() will the connection be

Re: Connection Keep Alive

2005-02-03 Thread Christopher Johnson
does not use Keep-Alive? Thanks, Carol - Original Message - From: Christopher Johnson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 03, 2005 12:11 PM Subject: Connection Keep Alive I'm trying to increase performance to my web service by making use