diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:34:24 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:34:24 +0000 |
commit | 515d6b830bbea486d7f27bc8ab46c0bf1f23c28a (patch) | |
tree | be75329705d06a0f2383da2ef51b8c3a9dc294a6 /cpp/src/slice2wsdl/Gen.cpp | |
parent | Updated project file for IceXML. (diff) | |
download | ice-515d6b830bbea486d7f27bc8ab46c0bf1f23c28a.tar.bz2 ice-515d6b830bbea486d7f27bc8ab46c0bf1f23c28a.tar.xz ice-515d6b830bbea486d7f27bc8ab46c0bf1f23c28a.zip |
Fixed bug in slice2wsdl.
Diffstat (limited to 'cpp/src/slice2wsdl/Gen.cpp')
-rw-r--r-- | cpp/src/slice2wsdl/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2wsdl/Gen.cpp b/cpp/src/slice2wsdl/Gen.cpp index 57aeb726592..4c3ac6dce46 100644 --- a/cpp/src/slice2wsdl/Gen.cpp +++ b/cpp/src/slice2wsdl/Gen.cpp @@ -131,7 +131,7 @@ Slice::Gen::emitMessage(Output& O, const OperationPtr& p) os << "wsdl:message name=\"output." << p->name() << "\""; start(O, os.str()); - O << nl << "<wsdl:part name=\"body\" element=\"xsd1:" << scopeId << "request." << p->name() << "\"/>"; + O << nl << "<wsdl:part name=\"body\" element=\"xsd1:" << scopeId << "reply." << p->name() << "\"/>"; end(O); // message } |