Re: SOAP Request is repeated in the SOAP response.
- From: "MeAgin" <MeAgain@xxxxxxxxx>
- Date: Tue, 26 Sep 2006 14:29:35 +0530
Hi all,
I found the solution for this. This can be configured in our WSDL files.
Here is what you guys will have to do,
1.. Locate the area where your method is described in the WSDL file. If
your method is MyMethod you will get 2 method descriptions for the Request
and the Response. The names would be,
1.. Mymethod
2.. MyMethodResponse
2.. Against the MyMethodResponse all parameters returned will be listed.
This list will contain all parameters from the Mymethod and an additional
parameter with the name Result. Excluding Result parameter delete all other
parameters.
3.. Search your method further down and you will find areas the operations
are described. This tag will start as Operation and the name attribute will
contain your method name.
Ex: <operation name='MyMethod'>
4.. This will contain 2 sub levels Input and Output. You will have to
change the details of the Output tag. All the parameters will be described
against the Part attribute in this tag. Excluding Result remove all other
parameter names.
5.. Now your method will return only the return value of called method not
the parameters passed to the Request.
Like this way you guys can control the values returned in the SOAP response.
Please note I'm using VFP XML web services publisher to generate all these
WSDL files using my COM+ application.
Hope this will help.
Best regards,
Nadee
"MeAgin" <MeAgain@xxxxxxxxx> wrote in message
news:#0FcZiS4GHA.3364@xxxxxxxxxxxxxxxxxxxxxxx
Hi all,additional
After analyzing WSDL files identified that for the description of the
Response all the parameters of the Request are described with the
parameter "Result". This "Result" will contain the return value from thereturning.
called method and the other parameters will contain the values available
when returning. So if we don't make any change in the called method the
parameters will be returned as it is to the client side.
Is there a way to restrict these parameters returned from the server?
Any help is greatly appreciated.
Best regards,
Nadee
"MeAgin" <MeAgain@xxxxxxxxx> wrote in message
news:#tmTN$J3GHA.4632@xxxxxxxxxxxxxxxxxxxxxxx
Hi again,still
I found how this is happening but can't figure out why it is happening.
This happens if the parameter values I passed from the client side is
available in the parameters I received them on the server when
will
For example:
Client side method SaveMail() calls Server side SetMail().
Parameters would be cSessionKey and cXML to the server side method. The
server side method would be like,
Function SetMail
Lpara cSessionKey, cXML
** Some Processing
Return cSavedMailXML
EndFunc
When you return as shown above values available for cSessionKey, cXML
SOAPbe sent in the SOAP message back to the client. The structure of the
willsent to the client would be something like,
<SOAP-Envelope>
<SOAP header info>
</SOAP header info>
<Result>
=Value of cSavedMailXML
</Result>
<cSessionKey>
=Value of cSessionKey
</cSessionKey>
<cXML>
=Value of cXML
</cXML>
</SOAP-Envelope>
So in my case if I don't change the values of cSessionKey, cXML they
bereturned
returned back to the client. I am not sure why this is happening. Is it
some kind a feature or a bug?
As a workaround we can blank out the parameters so they won't be
toblank
the client. But this is not a standard in VFP. Ie, we don't have to
Ie,out parameters at the end of a method. As we received them as LPARA Iassume
those will be released at the end of the method.the
Is there a way to overcome this problem?
Best regards,
Nadee
"MeAgin" <MeAgain@xxxxxxxxx> wrote in message
news:O0d4pAJ3GHA.2196@xxxxxxxxxxxxxxxxxxxxxxx
Hi all,
I'm using SOAP tool kit version 3 in my VFP 9 application.
When analyzed SOAP responses closely using the Fiddler I noticed that
data we sent (a XML in this case) is again repeated in the response.
valuesthethat
same data we sent to the server is returned back to the client again.
My response from the server is sent within a <Result> tags and after
all the detail I sent to the server is returned back again. These
transferredwill not be received back to your calling method but will be
debuggerfrom the server to the client. You can check this by using a HTTP
Whyproxy such as Fiddler.
Is this the behavior of SOAP or can we configure SOAP not to do this?
is it returning the same data we sent back again?transfer
In my case I send a XML to the server and after doing dome processing
receive a XML. Now it seems in the response I have to spend time to
the original request back! This is very inefficient.
Please advice if this can overcome in any way.
Best regards,
Nadee
.
- Follow-Ups:
- References:
- SOAP Request is repeated in the SOAP response.
- From: MeAgin
- Re: SOAP Request is repeated in the SOAP response.
- From: MeAgin
- Re: SOAP Request is repeated in the SOAP response.
- From: MeAgin
- SOAP Request is repeated in the SOAP response.
- Prev by Date: Re: append from excel
- Next by Date: Re: SOAP Request is repeated in the SOAP response.
- Previous by thread: Re: SOAP Request is repeated in the SOAP response.
- Next by thread: Re: SOAP Request is repeated in the SOAP response.
- Index(es):