Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Custom Pipeline component error : Subscription issue
- This topic has 1 reply, 1 voice, and was last updated 8 years, 3 months ago by
community-content.
-
AuthorPosts
-
-
November 27, 2008 at 10:14 AM #21260
Hi,
I have created a custom pipeline component to read an xl file.When I test my component it gives write output. Now I need this to be used in Orchestration.I am getting a message No Subscribers found. is it something like my messagetype property is not set ?
My O/p from excel pipeline comp :
<?xml version=”1.0″ encoding=”utf-8″ standalone=”yes” ?>
– <ns0:Orders xmlns:ns0=”http://TestMyPPL.Order“>
– <Order>
<Row Name=”q” ID=”821231″ City=”salem” />
<Row Name=”qw” ID=”808908″ City=”trichy” />
</Order>
</ns0:Orders>My schema is as follows
<?xml version=”1.0″ encoding=”utf-16″ ?>
– <xs:schema xmlns:b=”http://schemas.microsoft.com/BizTalk/2003” xmlns=”http://TestMyPPL.Orders” targetNamespace=”http://TestMyPPL.Orders” xmlns:xs=”http://www.w3.org/2001/XMLSchema“>
– <xs:element name=”Orders”>
– <xs:complexType>
– <xs:sequence>
– <xs:element name=”Order”>
– <xs:complexType>
– <xs:sequence>
– <xs:element name=”Row”>
– <xs:complexType>
<xs:attribute name=”Name” type=”xs:string” />
<xs:attribute name=”ID” type=”xs:string” />
<xs:attribute name=”City” type=”xs:string” />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>Error Message :
Please let me know how to solve this. Basically I need this inside the orch for processing
-
November 27, 2008 at 11:45 PM #21263
You should have disassembler component in your custom pipeline. It will promote message type. Or your orchestration should accept XmlDocument.
-
-
AuthorPosts
- The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.