Monday, June 28, 2010

Deploying Infopath Template with out Infopath Services Enabled.

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.

1 comment:

  1. Java script to open infopath from Web page.


    //**************************************//

    function btnDIR_onclick()
    {
    var WshShell = new ActiveXObject("WScript.Shell");
    WshShell.Run("infopath.exe");

    }


    //**************************************//

    ReplyDelete