Re: OMElement to org.w3c.dom.Document

2007-11-27 Thread Evgeniy Vyborov
Hi, I think the simplest way to transform OMElement to DOM Element is to use static method toDOM(OMElement element) from org.apache.axis2.util.XMLUtils class. Regards, Eugene Fátima Milla Olaya <[EMAIL PROTECTED]> wrote: Hi, I want to transform a OMElement to a dom document, I've tried this: OM

Re: [Axis2] SOAP12 parameter types

2007-11-26 Thread Evgeniy Vyborov
strange when I easily can get all necessary data for SOAP1.1 binding, but I can't do the same with SOAP1.2 binding. Gurus, please, help me solve this problem. This is very necessary for me now. Thanks, Eugene On Nov 20, 2007 7:28 PM, Evgeniy Vyborov wrote: > Hi, everyone. > > I w

[Axis2] SOAP12 parameter types

2007-11-20 Thread Evgeniy Vyborov
Hi, everyone. I worked with Axis1.x and I used the next code to determine operations and parameter types of the concrete port: ... SymbolTable symbolTable = wsdlParser.getSymbolTable(); BindingEntry bEntry = symbolTable.getBindingEntry(binding.getQName()); Parameters para

Re: [Axis2] Generic Web Service client

2007-10-31 Thread Evgeniy Vyborov
Thanks for your answer! I know how to invoke such web services using org.apache.commons.httpclient.methods.GetMethod and PostMethod directly. But I'd like to invoke such services using Axis2 API. Charitha Kankanamge <[EMAIL PROTECTED]> wrote: Evgeniy Vyborov wrote: > Hi

[Axis2] Generic Web Service client

2007-10-30 Thread Evgeniy Vyborov
Hi folks. I'm new to Axis 2. Now I'm trying to implement wsdl-based generic web service client. The logic of this client is simple: user loads *.wsdl file from somewhere, chooses service, port, operation, sets input parameter values. Then user can invoke this service with chosen parame