Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct typo. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
de790bc3edbb9fc2fab9e2a3ce8085d3 |
User & Date: | gerald 2012-08-28 04:40:52.104 |
Context
2012-09-05 03:48 | Correction to return inputs and outputs on operation list. check-in: 5e09915ab0 user: gerald tags: trunk | |
2012-08-28 04:40 | Correct typo. check-in: de790bc3ed user: gerald tags: trunk | |
2012-08-26 00:16 |
Correction to handle expected, but missing reply headers (i.e. the SOAP Header element is missing enterly).
Also made a correction to handle a complex type that extends another type but does not add any elements or attributes. check-in: 3c5e0ef7f8 user: gerald tags: trunk | |
Changes
Changes to Utilities.tcl.
︙ | ︙ | |||
3018 3019 3020 3021 3022 3023 3024 | } } } set baseInfo [GetServiceTypeDef $mode $serviceName $baseName] ::log::log debug "\t baseInfo is {$baseInfo}" catch {set partList [concat $partList [dict get $baseInfo definition]]} } else { | | | 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 | } } } set baseInfo [GetServiceTypeDef $mode $serviceName $baseName] ::log::log debug "\t baseInfo is {$baseInfo}" catch {set partList [concat $partList [dict get $baseInfo definition]]} } else { ::log::log debug "\t Simple type" } foreach elementNode [$node childNodes] { set tmp [partList $mode $elementNode $serviceName results $tns] if {[llength $tmp]} { set partList [concat $partList $tmp] } } |
︙ | ︙ |