Check-in [5009b918a3]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix for [b124391cf5] - inTransform and outTransform are "in" and "out" from the server point of view.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5009b918a343133c8278cd103cbbea21466dc61f
User & Date: gerald 2015-03-12 23:13:40.188
Context
2015-03-12 23:17
Fix for [9efd219dc8] - DoCall instead of DoAsyncCall in Tcl_Web_Service_Example.html. check-in: dcae275d25 user: gerald tags: trunk, Release_2.3.8
2015-03-12 23:13
Fix for [b124391cf5] - inTransform and outTransform are "in" and "out" from the server point of view. check-in: 5009b918a3 user: gerald tags: trunk
2015-03-12 23:08
Fix for [8cf2656d0e] - proc inTransform does not transform the XML Soap message check-in: d512c8e2b3 user: gerald tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to docs/Calling_a_Web_Service.html.
209
210
211
212
213
214
215
216

217

218
219
220
221
222
223
224
               Transform signature is:
                   cmd serviceName operationName <I>transformType</I> xml {url {}} {argList {}}
               where <I>transformType</I> is <B>REQUEST</B> or <B>REPLY</B>
               and url and argList will only be present for <I>transformType</I> == <B>REQUEST</B>
</PRE> </P>
<P><B>Arguments&nbsp;:</B> </P><PRE>
     <I>serviceName</I>  - The name of the Webservice
     <I>inTransform</I>  - Input transform <I>cmd</I>, defaults to {}

     <I>outTransform</I> - Output transform<I>cmd</I>, defaults to {}

</PRE>
<P><B>Returns&nbsp;: None</B></P>
<P><B>Side-Effects&nbsp;: None</B> </P>
<P><B>Exception Conditions&nbsp;: None</B> </P>
<P><B>Pre-requisite Conditions&nbsp;: Service must have been defined.</B> </P>
<HR>








|
>
|
>







209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
               Transform signature is:
                   cmd serviceName operationName <I>transformType</I> xml {url {}} {argList {}}
               where <I>transformType</I> is <B>REQUEST</B> or <B>REPLY</B>
               and url and argList will only be present for <I>transformType</I> == <B>REQUEST</B>
</PRE> </P>
<P><B>Arguments&nbsp;:</B> </P><PRE>
     <I>serviceName</I>  - The name of the Webservice
     <I>inTransform</I>  - Input transform <I>cmd</I>, defaults to {}.
     The inTransform is the proc which allows to transform the SOAP output message, which will be input in the server.
     <I>outTransform</I> - Output transform<I>cmd</I>, defaults to {}.
     The outTransform is the proc which allows to transform the SOAP input message, which is the answer of the server.
</PRE>
<P><B>Returns&nbsp;: None</B></P>
<P><B>Side-Effects&nbsp;: None</B> </P>
<P><B>Exception Conditions&nbsp;: None</B> </P>
<P><B>Pre-requisite Conditions&nbsp;: Service must have been defined.</B> </P>
<HR>