Hello Everyone:
I am currently working with a pipeline compnent that is respoinsible for selecting the contents of Excel files and turning that into XML. A recent change ( i.e. bug ) requires me to interrogate the Excel file for particular headers. I want to make this dynamic and configurable from the BizTalk AdminConsole and so I thought of using a collection.
When I build the pipeline component and re-install it into Visual Studio and look at the properties of the component, VS gives me the “…” button so that I can add items to the collection, however, when I deploy to BizTalk there is no “..” button and when I debug I see that the value is being read in as a string.
My collection only needs to store strings, so I have tried string[ ] and Arraylist ( would have tried List<string>, but we all know that BizTalk doesn’t work well with generics ) as the type for my property with the same results.
Does anyone have any experience with this? I am wondering if there is a certain attribute I can put on the property to make this work.
Any suggestons would be helpful and appreciated. Thanks.
Kevin Parkinson