![]() |
|
|
|
|
|
|
5
29th September 15:17
External User
Posts: 1
|
The myMessage1 is the message you specify on the receive shape.
When you write this: NewMessage = myMessage1 it means that you set NewMessage to be the same as myMessage1 - no transformation needed! But after you have given NewMessage the same content as myMessage1, you can change values, using distinguished fields - as long as you are inside the same construct message shape. I have put an example of what you are trying to accomplish at http://www.eliasen.dk/biztalk/messageassignment.zip -- eliasen, representing himself and not the company he works for. Private blog: http://blog.eliasen.dk Private email: jan@eliasen.dk |
|
|
8
29th September 15:18
External User
Posts: 1
|
Well, the incoming message has served its purpose. It is like a
variable that comes into a method. You can use it all you want, but at the end of the method, the variable i just garbage collected. If you want to, you can write the message to a file, but basically, if you only needed it to construct the new message, then that's all you needed. If an orchestration completes, all mesasges inside it are lost. If you need it somewhere, you can send it out via a port. Or you can enable tracking in BizTalk to keep it. -- eliasen, representing himself and not the company he works for. Private blog: http://blog.eliasen.dk Private email: jan@eliasen.dk |
|
|
|