03-06-06 10:51 PM
I have a project in which an orchestration makes a call to a web service.
I've defined two types of messages to transmit the response from the web
service.
One of the messages is a Web Message type: ETLEngineWSStartResponse
(ETLOrchestration.ykclnsd.DINEEngine_.StartEngine_response)
The other message is a Schema type: OutboundDINEStatusResponse
(ETLOrchestration.Engine)
I need to pass information from the Web Message to the Schema message. If I
try to do a direct assignment, such as
OutboundDINEStatusResponse = ETLEngineWSStartResponse;
I get an error about implicitly converting a Web Message to a Schema message
.
How do I go about passing the information between the two messages?
[ Post a follow-up to this message ]
|