Configuring ESB Portal resubmit
When setting up the ESB Portal we didn’t see the receive ports. After some digging around it seems that the content type is not correctly set resulting in not showing up the available receive locations.
A minor change in the SP solves this problem…
Modify the Stored Procedure: EsbExceptionDb.usp_insert_Message
IF (@ContentType = 'text/plain' AND LEFT(@MessageData,1) = '<')
BEGIN
SET @ContentType = 'text/xml'
END
See the very useful post on the BizTalk forum
HTH,
Sander Nefs
Comments