I have been able to create a message and do an insert to a table. Where I am having trouble is using the Message Assignment shape and modifying data for a message. Can anyone give me a direction?
You must create a variable of xmlDocument type. For example:
xmlDoc.LoadXml(@"ns0:Response xmlns:ns0='http://WebServiceSimulado.schRetorno'> <MSG_RETORNO>OK</MSG_RETORNO> </ns0:Response>"); msgIn_Resp = xmlDoc; The xmlDoc variable is xmlDocument type.
xmlDoc.LoadXml(@"ns0:Response xmlns:ns0='http://WebServiceSimulado.schRetorno'>
<MSG_RETORNO>OK</MSG_RETORNO>
</ns0:Response>");
msgIn_Resp = xmlDoc;
The xmlDoc variable is xmlDocument type.