Products | Versions |
---|---|
TIBCO BusinessConnect | - |
Not Applicable | - |
Resolution:
Description
------------
For an X12 of EDIFACT trading partner, what trading partner properties can I set?
Environment
------------
BusinessConnect ConfigStore Management Interface 1.0.0
Resolution
-------------
Here is a sample XML of how to insert an EDI-X12 trading partner with an AS2 ID of "97251234" and a domain-ID pair of "01" and "987654321". You must specify the default domain ID in order for the insert to succeed:
<Participant isActive = "true" name = "AutomatedTradingPartner" type = "Partner">
<ListOfBizLocations>
<BizLocation addr1 = "TX" name = "Headquarters"/>
<BizLocation name = "TP Main headquarters">
<PrimaryLegalContact firstName = "John" lastName = "Smith"/>
<PrimarySupportContact firstName = "Jane" lastName = "Doe"/>
<ListOfContacts>
<BizContact fname = "John" lname = "Smith" type = "Legal"/>
<BizContact fname = "Jane" lname = "Doe" type = "Support"/>
</ListOfContacts>
</BizLocation>
</ListOfBizLocations>
<ListOfDomainIds>
<DomainId domainName = "AS2_ID" idName = "97251234"/>
<DomainId domainName = "01" idName = "987654321"/>
</ListOfDomainIds>
<ListOfEnabledProtocols>
<EnabledProtocol name = "EDI-X12">
<DefaultDomainId domainName="01" idName="987654321"/>
<DefaultAS2DomainId idName = "97251234"/>
<Transports>
<HttpTransport name = "bbc" url = "http://localhost:8080/EZComm"/>
</Transports>
</EnabledProtocol>
</ListOfEnabledProtocols>
</Participant>