simple c-sharp client for my axis web service

2004-01-29 Thread Andrew Smith
I have an axis message style web service that works quite well with perl and java clients. I was hoping to get a c# client to test .net interop. Any C# experts know the equivalent of the following perl code? --- use SOAP::Lite; use SOAP::MIME; open (FILE, $ARGV[0]); while ()

Re: Document Style Service with Attachments

2003-10-24 Thread Andrew Smith
chmentPart) iterator.next(); DataHandlerdh = part.getDataHandler(); dh.writeTo(new java.io.FileOutputStream("somefilename")); } -a. On Fri, 2003-09-26 at 11:05, Andrew Smith wrote: > I have a very simple web service that echos back the xml given that > looks like this: >

Document Style Service with Attachments

2003-09-26 Thread Andrew Smith
I have a very simple web service that echos back the xml given that looks like this: public class MessageService { public Document echoDocument(Document doc) throws Exception { return doc; } } On the client I have the various methods setup to retrieve the result vector and pr

Re: SSL web services

2003-09-24 Thread Andrew Smith
On Tue, 2003-09-23 at 16:09, Henry lu wrote: > Is there any cliewnt code for SSL web services? What we'd like to know how > to send user name, password, truststore, and trustStorePassword to server. The following code inside a client ought to do it: System.setProperty("java.protocol.handler.pkgs