Modifying Soap-Response

Modifying Soap-Response

am 07.01.2008 18:46:49 von Bert Leu

Hi

I've got two questions to Soap unter VB.Net

1) if one creates a WebService with a method i.g. "MethodX" (with
VB.Net),
the Soap-Response looks like:



...

Unfortunately, the Client wants the following form: (without the
....Response... row):


...

-- does exist an option to supress the ....Result - Row ?


2) Is there a possibility to modify (or create) a Soap-Request? I've seen
SoapExtensions, but this looks *fairly complicated...

Thaks a lot
Bert Leu

RE: Modifying Soap-Response

am 07.01.2008 19:13:07 von brucebarker

no, because thats not standard soap. soap is a method call, response. so the
standard is body is:






where is made up for xsi: defined types. you can make a now
SOAP web service return whatever you want, but you will need to supply the
input parsing and output writing routines yourself. just make a handler.

-- bruce (sqlwork.com)


"Bert Leu" wrote:

> Hi
>
> I've got two questions to Soap unter VB.Net
>
> 1) if one creates a WebService with a method i.g. "MethodX" (with
> VB.Net),
> the Soap-Response looks like:
>
>
>
> ...
>
> Unfortunately, the Client wants the following form: (without the
> ....Response... row):
>
>
> ...
>
> -- does exist an option to supress the ....Result - Row ?
>
>
> 2) Is there a possibility to modify (or create) a Soap-Request? I've seen
> SoapExtensions, but this looks *fairly complicated...
>
> Thaks a lot
> Bert Leu
>
>
>
>
>