0

I am working with BizTalk 2010 and using the BAM API to record the body of an incoming message in the BAM_Itinerary_CompletedRelationships table of the BAMPrimaryImport database. This is working well and through SSMS I can see the inbound XML message in the LongReferenceData column. I was hoping to see link to this in the "Related Documents" section of the BAM Portal, but this is empty.

Does anyone know how to get this data to be displayed in the BAM portal?

I'd rather not write a custom / SSRS UI if I can avoid it!

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200

1 Answers1

1

With the API you should be able to achieve that using the AddReference method with a type of DocumentUrl - see http://msdn.microsoft.com/en-us/library/aa956649.aspx

This blog might also have some useful info for you - http://geekswithblogs.net/gwiele/archive/2009/05/28/132469.aspx

Good luck!

Fabio
  • 730
  • 3
  • 10
  • I am using the AddReference method to get the message body into the LongReferenceData column, problem is this doesn't seem to be read by the BAM Portal. However, the link you sent looks very promising, I'll try this at the weekend and let you know. – Rob Bowman Apr 11 '12 at 19:55
  • 1
    I am delighted to report, it works! Bravo http://geekswithblogs.net/gwiele/archive/2009/05/28/132469.aspx – Rob Bowman Apr 12 '12 at 20:44