|
| Basically I'm working on an orchestration that converts a set of old infopath
forms into a new infopath schema. I'm using a schema map in the
orchestration and it seems to be working ok, except for one problem.
Even though my "new" schema has all of the xmlns to define it as an infopath
form, this infomation gets lots when the mapping occurs. My resulting XML
file has the correct data mapped, but loses a number of xmlns attributes,
which make the form unuable and unable to open in infopath.
Here is what gets "lost" in the process:
<xsd:schema
xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2005-10-06T21-01-25"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xd="http://schemas.microsoft.com/office/infopath/2003"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:b="http://schemas.microsoft.com/BizTalk/2003"
targetNamespace="http://schemas.microsoft.com/office/infopath/2003/myXSD/2005-10-06T21-01-25"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|