You can also retrieve this information now using : DJMessage object with sourcemsg.Properties("SourceName")
Example code : fmsg.Properties("SourceName")
Other property values can be determined using :
The properties depend on the source of the DJMessage. You should be able to find all properties for a DJMessage using the following code (you can also modify it from MsgBox() to LogMessage() to get a copy-able list):
For i = 0 to msg.PropertiesCount - 1
MsgBox(msg.PropertyNames(i) & " = " & msg.Properties(i))
Next i Although the actual properties of message from specific sources aren't documented, this code and more info on DJMessage objects are in the help here: http://docs.pervasive.com/products/integration/di/wwhelp/wwhimpl/js/html/wwhelp.htm#href=rifl/DJMessage_Object.html
David Byrd
Former Senior Integration Engineer at Pervasive,
http://integrationcomputing.blogspot.com