Tuesday, 16 July 2013

SharePoint Infopath Print Button

I received a request to put a print button within a List Item display view so that one could easily print the current item they’re viewing. After searching for a way to put a print button within the Infopath form itself (and coming up empty), I figured out how to simply add it to the page that displays the form. The end goal

 
Once you have your Infopath form put together and published to a List, go to the List page.
1. Click on the “List” tab under List Tools
2. Click on the drop down arrow on the “Modify Form Webparts” button (pictured)

                                               SharePoint 2010 Infopath Print Button

3. Select “(Item) Display Form”
4. This will take you to an edit page screen with your Infopath form set as a webpart


                                     SharePoint 2010 Infopath Print Button

5. Add a “Content Editor Webpart” to the page
6. Edit your new webpart’s source and paste in the following:
1<input type="button" value=" Print this page "
2onclick="window.print();return false;" />
Note: <form> tags are not required

This adds a print button to the page that uses the default print call within a browser. Since we edited the “Display” form, the button will not appear if a user is editing the form or creating a new item.
Of course, the best part of this discovery is the added bonus of being able to add extra code to our Infopath forms, making them a much more versatile tool than they were before.

Sunday, 14 July 2013

GetUserProfileByName Connection Error in SharePoint InfoPath Forms (Error 5566)


Scenario:

My web application uses claims based authentication with windows authentication (NTML). No other authentication provider is used. Whenever I try to connect to the web service from the InfoPath form I get the following error:
An error occurred while trying to connect to a Web service.
An entry has been added to the Windows event log of the server.
Log ID:5566
Correlation ID:fa658c2f-a405-433a-8895-27fb43fd5706

 

Solution

After some further investigation i found that it's actually the "ASP.NET Impersonation" that needs to be disabled under "Authentication Providers" for the web application in IIS.
I've tried this on several web applications and it's very consistent.
The web applications have been running without problems in my environment for several days so I think it's safe to disable it.