|
@@ -1131,12 +1131,12 @@ def callInfoFromWSDL(port, name): |
|
|
except KeyError: |
|
|
except KeyError: |
|
|
if self.strict: |
|
|
if self.strict: |
|
|
raise RuntimeError( |
|
|
raise RuntimeError( |
|
|
"Recieved message not defined in the WSDL schema: %s", |
|
|
|
|
|
|
|
|
"Recieved message not defined in the WSDL schema: %s" % |
|
|
operation.output.message) |
|
|
operation.output.message) |
|
|
else: |
|
|
else: |
|
|
message = wsdl.addMessage(operation.output.message) |
|
|
message = wsdl.addMessage(operation.output.message) |
|
|
print "Warning:", |
|
|
|
|
|
"Recieved message not defined in the WSDL schema.", |
|
|
|
|
|
|
|
|
print "Warning:", \ |
|
|
|
|
|
"Recieved message not defined in the WSDL schema.", \ |
|
|
"Adding it." |
|
|
"Adding it." |
|
|
print "Message:", operation.output.message |
|
|
print "Message:", operation.output.message |
|
|
|
|
|
|
|
|