Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for [9efd219dc8] - DoCall instead of DoAsyncCall in Tcl_Web_Service_Example.html. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | Release_2.3.8 |
Files: | files | file ages | folders |
SHA1: |
dcae275d259a56526f33de88b453f797 |
User & Date: | gerald 2015-03-12 23:17:20.197 |
Context
2015-05-08 02:38 | Fix for [411a2eb59f] -- add double qutoes arround the SOAP Action. check-in: 80934c5bda user: gerald tags: trunk | |
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 | |
Changes
Changes to docs/Tcl_Web_Service_Example.html.
︙ | ︙ | |||
105 106 107 108 109 110 111 | </PRE><PRE> proc hadError {service operation errorCode errorInfo} { global waitVar </PRE><PRE> puts stdout "A call to $operation of $service was failed with {$errorCode} {$errorInfo}" set waitVar 1 } </PRE><PRE> set waitVar 0 puts stdout "Calling SimpleEcho via DoAsyncCall!" | | | | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | </PRE><PRE> proc hadError {service operation errorCode errorInfo} { global waitVar </PRE><PRE> puts stdout "A call to $operation of $service was failed with {$errorCode} {$errorInfo}" set waitVar 1 } </PRE><PRE> set waitVar 0 puts stdout "Calling SimpleEcho via DoAsyncCall!" ::WS::Client::DoAsyncCall wsExamples SimpleEcho $inputs \ [list success wsExamples SimpleEcho] \ [list hadError wsExamples SimpleEcho] vwait waitVar </PRE><PRE> puts stdout "Calling ComplexEcho via DoAsyncCall!" ::WS::Client::DoAsyncCall wsExamples ComplexEcho $inputs \ [list success wsExamples SimpleEcho] \ [list hadError wsExamples SimpleEcho] vwait waitVar </PRE><PRE> exit </PRE> <P><BR></P> |
︙ | ︙ |