Dear All,
I'm facing a problem from a couple of days now and I'm starting to lose my mind....
I have an Administrator Approved InfoPath 2010 form linked with a SharePoint 2010 Document Library. This form contains
- a Data connection "Get Analysis" linked with a Web Service which get me the result of a table.
[
WebMethod] public List<Analysis_Results_PDS> GetAnalysisByProduct(string DocTypeAndNumber)
- a Table linked with the result of "Get Analysis".

- a Second data connection "Submit Analysis" linked with a web service to send the updated resuls in the table.
[
WebMethod] public void SubmitAnalysisByProductStaging(XmlNode xEntry, string AnalysisType, string sMasterDataID, string sProduct_unid)
The Goal is to load the results at form load, modify them and update the results when we click on a button.
This is working fine on my computer when I do a preview, but when I publish the form on the server the form is blocked on the submit. (blocked means they are various rules after the submit function and they are not executed). I've checked on my logs on the web service side, it's like if the submit function was never called...
I'm pretty sure that's the problem comes from he repeating table transfer because if I remove the parameter "XmlNode xEntry" from my submit function the solution works.
For information I've already clear all the unnecessary data connections and the form have been uploaed already more than 50 times...
Any help would be really apreciated.
Best Regards,
Nelson