Axis 1.3 webservice C# client

2006-08-10 Thread Vali Grigoras
Hello,I have some Axis webservices protect the service with user and password using WSS4J. I can connect to the webservice via java client no problem, but I need to do the same from C# client. I don't know how to provide user credentials from a C# client. Have you guys done anything like that?.
Thanks,Vali


Web services implementation. Pros and cons

2006-06-16 Thread Vali Grigoras
I know this is an Axis user list and this might not be the right place to ask such question but I would like to hear your opinion regarding Axis, Burlap/Hessian, which one would you chose and why?. It seems to me that Hessian binary protocol might be lighter than XML web services but don't know if is stable enough to be used in production for high traffic apps.
I really appreciate your opinion in this matter, and eager to see your suggestions.Thanks,Vali


Axis 1.2 - Object graph serialization

2006-06-15 Thread Vali Grigoras
Hello,I'm a newbie to Webservices and I have a simple question for you regarding RPC web services and java objects serialization. I would like to know if there are any limitations in serializing objects graphs. For example if I have a one to many relation between a Parent and Child and the data model looks like:
 class Parent { private String name; private Set children; ... // removed the getter and setter }class Child{ private String name; private Parent; ...
 // removed the getter and setter}Any help is greatly appreciated.Vali