I've developed a master form that creates and submits multiple forms to a library using qRules. If I run the master form as an infopath filler form, it creates and submits the forms perfectly. But if I enable the form to be used from a web browser, when I submit the form, the href indicating where the template for each form resides is stripped out.
The form uses the InsertPI command as follows:
InsertPi /name=mso-infoPathSolution /data=name="urn:schemas-microsoft-com:office:infopath:WW208-CaregiverStrainIndex:-myXSD-2018-03-07T02-56-48" solutionVersion="1.0.0.15" productVersion="14.0.0.0" PIVersion="1.0.0.0" href="http://ww-sharepoint/ClientServices/Placement/FormTemplates/WW208-CaregiverStrainIndex.xsn" /dsname=WW208-caregiverStrainIndex
when submitted from an Infopath Filler, I see this in the created form:
<?mso-infoPathSolution name="urn:schemas-microsoft-com:office:infopath:WW208-CaregiverStrainIndex:-myXSD-2018-03-07T02-56-48" solutionVersion="1.0.0.15" productVersion="14.0.0.0" PIVersion="1.0.0.0" href="http://ww-sharepoint/ClientServices/Placement/FormTemplates/WW208-CaregiverStrainIndex.xsn"?>
But when submitted from a web browser, I see this:
<?mso-infoPathSolution name="urn:schemas-microsoft-com:office:infopath:WW208-CaregiverStrainIndex:-myXSD-2018-03-07T02-56-48" solutionVersion="1.0.0.15" productVersion="14.0.0" PIVersion="1.0.0.0" ?>
Is there something else I need to do in order to ready this form to be used in a web browser with qRules?
Thanks