Forum Replies Created
-
AuthorPosts
-
i think you are talking about suspended instances. this will possibly happen if you have the ESB configured. make sure the stop ESB applicaiton.
There will be send port for fault handling in ESB.
hope this helps
Thanks,
Manjunath
i think there is limitation.
always the BizTalk service need to be published in the same BizTalk server. you can use the previlege of biztalk cluster (web server clustering) and use load balancing
congrats!
July 30, 2014 at 9:27 AM in reply to: xpath expression inside a loop to pull records/nodes out #26428use like
string xpathstring = system.string.format("/parent/Child/RepeatingNode[position = {0}]", loppingcounter;
xmldoc = (System.Xml.XmlDocument) xpath(Msg, xpathstring);
this will get you the node, this is the implementation of the splitter pattern in the orchestration.
Thanks
July 28, 2014 at 2:05 AM in reply to: xpath expression inside a loop to pull records/nodes out #26425How to pick particular record from xml document by using xpath expression?
guys pls give ur suggested answers regarding these issue?
July 21, 2014 at 4:06 PM in reply to: xpath expression inside a loop to pull records/nodes out #26423But I need the whole Encounter node not just the EncounterReferenceNumber. I tried removing the last nodename and using this below but it still will not work It just keeps pulling out my first node even though my strEncounterIncrement is indeed incrementing and the xpath works when I put it in xmlspy xpath validator…
MsgEncounterAdd = xpath(MsgXMLResponse, "/*[local-name()='EncounterValidationResponse']/*[local-name()='Transactions']/*[local-name()='Transaction']/*[local-name()='Encounters']/*[local-name()='Encounter'][" + strEncounterIncrement + "]);
So I need this whole node pulled out of when strEncounterIncrement = 2…
<Encounter Status="Rejected"> <IdentifierType>SubmitterClaimIdentifier</IdentifierType> <EncounterReferenceNumber>xxxxx14020702597748</EncounterReferenceNumber> <EncounterId xsi:nil="true"/> </Encounter>
July 18, 2014 at 11:45 PM in reply to: xpath expression inside a loop to pull records/nodes out #26422Hi,
Try this line of code in your message assignment shape:
MsgEncounterAdd = xpath(MsgXMLResponse, "/*[local-name()='EncounterValidationResponse']/*[local-name()='Transactions']/*[local-name()='Transaction']/*[local-name()='Encounters']/*[local-name()='Encounter'][" + strEncounterIncrement + "]/*[local-name()='EncounterReferenceNumber']");
Good luck.
Hi again,
i think i managed that now.
Here is how it works for me:

Have a nice day, mine is savednow 🙂
How to call a particular version in Rules Engine from orchestration and how to test a rule?
July 16, 2014 at 1:31 AM in reply to: How many times can we loop the send shape in the orchestration #26417Hi, I'm new to Binding(dynamic and direct) concepts…can u please suggest any link which can help me…i'm a biginner
July 16, 2014 at 1:28 AM in reply to: How many times can we loop the send shape in the orchestration #26416Hi,iam new to bindind(dynamic and direct) concepts…can u pls suggest any link which can help me…iam a biginner
July 15, 2014 at 3:37 AM in reply to: How many times can we loop the send shape in the orchestration #26415This link should help you.
blogs.msdn.com/…/how-to-develop-biztalk-custom-pipeline-components-part1.aspx
July 15, 2014 at 3:31 AM in reply to: How many times can we loop the send shape in the orchestration #26414Can u pls explain how custom pipeline component works and interfeces involved in it?
July 15, 2014 at 3:29 AM in reply to: How many times can we loop the send shape in the orchestration #26413oh thank u so much…i got it
Hi,
Have a look at the following article and follow its instructions on how to consume an AD web service:
samirvaidya.blogspot.com/…/using-active-directory-web-services-in.html
Good luck.
-
AuthorPosts