On 10/3/07, boris agbodjan <[EMAIL PROTECTED]> wrote: > > I have used the ServiceClientUtil class to reach the process management > web > service (the endpoint is " > http://localhost:8080/ode/services/ProcessManagement") and to list all my > deployed process on the intalio server. > > Here is my SOAP request : > > <?xml version="1.0" encoding="http://schemas.xmlsoap.org/soap/envelope/"?> > <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/ > "> > <soapenv:Body> > <pmapi:listAllProcesses xmlns:pmapi=" > http://www.apache.org/ode/pmapi/types/2006/08/02/"/> > </soapenv:Body> > </soapenv:Envelope> > > Unfortunately, there was no error but I did'nt get any answer (no soap > response but a header HTTP/1.1 200 OK) although I have deployed processes > on the server. So I am wondering if I am invoking the right endpoint.
BTW the encoding on the first line of your request is invalid. It should be something like: <?xml version="1.0" encoding="utf-8"?> Ode returned a fault saying "Character Set Encoding from transport information do not match with character set encoding in the received SOAP message" when I tried using your request. The Ode endpoint is the same on Intalio Server and I've used the same endpoint and your request (with corrected encoding) with success. You could turn on DEBUG logging for "org.apache.ode", and "org.apache.axis2" to get a better idea of what's happening if it still doesn't work for you. Can you tell me where I can find the java classes and the WSDL in the > intalio server folders? Ode is deployed under $GERONIMO/repository/ode/ode-war/{$version}. Here are links for the WSDL<http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.1/axis2/src/main/wsdl/pmapi.wsdl>and the schema<http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.1/bpel-schemas/src/main/xsd/pmapi.xsd> . cheers, alex