Createing a service that receives SOAP XML

View: New views
3 Messages — Rating Filter:   Alert me  

Createing a service that receives SOAP XML

by Stefano Tranquillini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,
i don't know if this issues is possibily in ode, anyway.
there's a possibility to construct something like a webservice that is able
to receive the SOAP string of a message?
is a low-level receiver for soap message.
i want something that receives message like this:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:prov="http://www.example.org/ProvaWSDL/">
   <soapenv:Header/>
   <soapenv:Body>
      <prov:NewOperation>
         <in>ciao</in>
      </prov:NewOperation>
   </soapenv:Body>
</soapenv:Envelope>

is this possbile?

--
Stefano

Re: Createing a service that receives SOAP XML

by Daniel Schleicher :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Stefano,

please give us more information what you want to do? Do you want to
intercept a SOAP message? Or do you want to start a BPEL process?

Best regards,

Daniel

On Fri, Nov 6, 2009 at 11:32 AM, Stefano Tranquillini <
stefano.tranquillini@...> wrote:

> Hi all,
> i don't know if this issues is possibily in ode, anyway.
> there's a possibility to construct something like a webservice that is able
> to receive the SOAP string of a message?
> is a low-level receiver for soap message.
> i want something that receives message like this:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/
> "
> xmlns:prov="http://www.example.org/ProvaWSDL/">
>   <soapenv:Header/>
>   <soapenv:Body>
>      <prov:NewOperation>
>         <in>ciao</in>
>      </prov:NewOperation>
>   </soapenv:Body>
> </soapenv:Envelope>
>
> is this possbile?
>
> --
> Stefano
>

Re: Createing a service that receives SOAP XML

by Stefano Tranquillini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i would have a webservice that intercepts the soap message, an i asked if
ode permits that.
but, i found another solution: put at the end point of the wsdl a jsp that
reads the input.
in this way i can simply read the entire soap message.
thanks

On Tue, Nov 10, 2009 at 11:18, Daniel Schleicher <
schleicher.daniel@...> wrote:

> Hi Stefano,
>
> please give us more information what you want to do? Do you want to
> intercept a SOAP message? Or do you want to start a BPEL process?
>
> Best regards,
>
> Daniel
>
> On Fri, Nov 6, 2009 at 11:32 AM, Stefano Tranquillini <
> stefano.tranquillini@...> wrote:
>
> > Hi all,
> > i don't know if this issues is possibily in ode, anyway.
> > there's a possibility to construct something like a webservice that is
> able
> > to receive the SOAP string of a message?
> > is a low-level receiver for soap message.
> > i want something that receives message like this:
> > <soapenv:Envelope xmlns:soapenv="
> http://schemas.xmlsoap.org/soap/envelope/
> > "
> > xmlns:prov="http://www.example.org/ProvaWSDL/">
> >   <soapenv:Header/>
> >   <soapenv:Body>
> >      <prov:NewOperation>
> >         <in>ciao</in>
> >      </prov:NewOperation>
> >   </soapenv:Body>
> > </soapenv:Envelope>
> >
> > is this possbile?
> >
> > --
> > Stefano
> >
>



--
Stefano