R
Renjith
hi,
I am having an Infopath form and OnSubmitRequest I am posting the data
using MSXML2.XMLHTTP.
var objXmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
var strUrl =
"http://server-01/wsSAM/samservices.asmx/InsertSelfAssessmentDetails";
objXmlHttp.open("POST", strUrl, false);
objXmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencode
d");
objXmlHttp.setRequestHeader("Content-Length",strXML.length);
objXmlHttp.send("XmlOutput="+strXML);
This works fine, but after making the form "fully trusted" (using
RegForm /U /T) it is giving "Permission Denied".
Also the code for changing views is giving the error "Access Denied".
This errors are appearing only after the form was changed to fully
trusted.
What could be the issue ?
Thanks
Renjith
I am having an Infopath form and OnSubmitRequest I am posting the data
using MSXML2.XMLHTTP.
var objXmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
var strUrl =
"http://server-01/wsSAM/samservices.asmx/InsertSelfAssessmentDetails";
objXmlHttp.open("POST", strUrl, false);
objXmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencode
d");
objXmlHttp.setRequestHeader("Content-Length",strXML.length);
objXmlHttp.send("XmlOutput="+strXML);
This works fine, but after making the form "fully trusted" (using
RegForm /U /T) it is giving "Permission Denied".
Also the code for changing views is giving the error "Access Denied".
This errors are appearing only after the form was changed to fully
trusted.
What could be the issue ?
Thanks
Renjith