Hi,
Here i am discussing about one of my experiences in Infopath Deployment.
Actually, we don't have Infopath services enabled (Available) in the SharePoint server.
So,
1) I had developed an infopath form (Web enabled).
2) In Tools -> Form Options -> Security and Trust, select Full trust and create certificate.
3) Deploy it on the desktop.
4) In the SharePoint site add the code to run "infopath.exe " command with the file name of deployed template.
Java script to open infopath from Web page.
ReplyDelete//**************************************//
function btnDIR_onclick()
{
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("infopath.exe");
}
//**************************************//