Building a SharePoint Web Service to Use with Nintex

  • 9 April 2016
  • 3 replies
  • 116 views

Badge +9

Sometimes as a developer usual channels don't work.  My colleague and I tried for several hours to extract a base64 file from a document library using "/_vti_bin/Lists.asmx" in a Nintex Web Service component.  We could see the correct SOAP output after using the internal run command. But alas, after compiling, the workflow, the web service returned nothing.

 

Being a SharePoint Developer for over eight years, it was time to write a web service to talk to Nintex.  Since it had been awhile since I had written one, I turned to Google for help.

 

To the rescue came Rob Windsor's Video and Blog on the Subject of creating a SharePoint Web Service:
 

 

The Weblog is for SharePoint 2010 in the video, Rob explains the changes needed for 2013.

 

For those unfamiliar with Rob, he is a gifted instructor with some heavy-duty SharePoint courses on Pluralsight.com.

 

I, especially, appreciate his no-nonsense, step-by-step guide and sample code.  Having developed some web services that resided in SharePoint's ISAPI directory, the simpler method of building the web service for the SharePoint Layouts folder appealed to me.

Web services built for the ISAPI directory have a complicated discovery wrapper. This makes them much harder to create. As long as my colleague and I know the address of the web service ".asmx" file, web discoverability is irrelevant.

 

The basic process of creating the Web Service harness is basically a recipe.  Getting the right logic in the Web Service Class  is a little more difficult and depends on what you are trying to accomplish.

 

Just to summarize the formulaic steps using either Visual Studio 2013 or 2015:

 

  1. Choose to deploy as a Farm Solution.
  2. Add the SharePoint Layout's folder as a mapping to the project.
  3. Under the Project Name beneath the layout's folder, add a new text file. Name it using the class name that you will be creating. Also, change the extension to ".asmx" from ".txt".
  4. Add a class file with the base name used for the ".asmx" file.
  5. Add a Reference to the project for System.Webservices.
  6. Save the project.
  7. Choose the Build Command by right-clicking the Project Name in Explorer View.
    The project is just a shell at this point in time, but the build command will create the Assembly. The three-part Assembly Name is needed for the .asmx file.
  8. To actually obtain the Assembly three-part name, the author points to an article link for creating a PowerShell tool to attach to the Visual Studio Tools Menu for Strong Name Generation.  The tool will generate the three-part Assembly Name and output to a window in Visual Studio.   Follow the instructions--then simply run the command .  The output for my example code is as follows:

    WorkflowHelperWS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9e9ca5ad43f9694
  9. The .asmx file would read as:

    <%@ WebService class="{PROJECT}.{CLASS}, {THREE-PART SHAREPOINT ASSEMBLY NAME}" %>

    In my example, my CopyWebSvcs.asmx file looks as follows:

    <%@ WebService class="WorkflowHelperWS.CopyWebSvcs, WorkflowHelperWS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9e9ca5ad43f9694" %>

    This line is the ENTIRE Contents of my CopyWebSvcs.asmx File.
  10. Finally, write the class code.

 


Rob has good sample code that I called from Nintex.

Rob's Code:
 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Services;
using Microsoft.SharePoint;

namespace WebServiceDemo
{
     public class MyCustomWebService : WebService
     {
          [WebMethod]
          public string GetSiteListCount()
          {
               var web = SPContext.Current.Web;

               return (web.Title + " contains " +
                 web.Lists.Count.ToString() + " lists.");
          }
     }
}

 

Note that this code requires No Parameters and returns a string.

 

Another interesting thing to note about Rob's code is that he makes use of the SPContext object. 

This object assumes you are in the SPWeb where you want to work.  Unfortunately, it doesn't always work out that way.

 

Rob explains in his videos that he directly accesses the web service .asmx file through the URL of his current Site Collection "http://win7virtualbox/sites/demo/_layouts/15/WebServiceDemo/MyCustomWebService.asmx".  However, after he executes the web service from the web page, he is redirected to the Root Site Collection and the URL becomes:

"http://win7virtualbox/_layouts/15/WebServiceDemo/MyCustomWebService.asmx".

 

This means the SPContext object is referencing the Root Site Collection/Root Web--not the site from which the URL was invoked.

 

Rob goes on to explain when you access the web service from code, as in his test harness console app--also in the video, the Proxy URL  is used to set the site for the SPContext object. This allows the executing site to be used instead of the Root Site Collection/Root Site.

 

Unfortunately, this doesn't seem to happen in Nintex. You will notice in my code below that I specifically open the site and web from a URL parameter. I tried at first to use the SPContext object; however, it always pointed to the URL of my Root Site Collection/Root Web.

 

Since my web service was being used from Nintex, I did not bother with the console apps.

 

 

Once you have created your class, you can create multiple routines or webmethods within the class file.  You can even use the same method with different overload signatures (different parameters).

 

At first, I just wanted to duplicate what I had been trying to get from SharePoint "Lists.asmx" web service, namely, a Base64 string from a document in a document library.  But using this web service still required me to couple it with some other steps such as parsing the returned XML and another call to "/_vti_bin/Lists.asmx" to the document string as an attachment to a specific list item.

 

What I really wanted was a single web service to copy a document from a document library and add it to a specific list item as an attachment. I wanted to do the entire operation in one call: hence, my second webmethod.

 

The way I created the second webmethod was to find and morph a PowerShell Script.

 

Stephan's Code:

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Security.Cryptography;

using System.Web.Services;

using Microsoft.SharePoint;

 

namespace WorkflowHelperWS

{

    class CopyWebSvcs

    {

[WebMethod]

        public string DoctoBase64toStringByWebUrl(string WebUrl, string ListName, int docID)

        {

           using (SPSite site = new SPSite(WebUrl))

            {

                using (SPWeb web = site.OpenWeb())

                {

                         byte[] binFile;

                          try

                           {

                               var list = web.Lists[ListName];

                               SPListItem item = list.GetItemById(docID);

                               SPFile file = item.File;

                                binFile = file.OpenBinary();

                                    }

                                    catch (Exception ex)

                                         {

                                              return (ex.Message);

                                          }

                               return (Convert.ToBase64String(binFile));

                               }

                 }

        }

 

[WebMethod]

        public string CopyDocumenttoList(string WebUrl, string docLibName, string docName, string ListName, int ListID )

        {

                     using (SPSite site = new SPSite(WebUrl))

                      {

                               using (SPWeb web = site.OpenWeb())

                               {

                                    try

                                         {

                                              var list = web.Lists[ListName];

                                              var docLib = web.Lists[docLibName];

                                              SPListItem listitem = list.GetItemById(ListID);

                                               var filePath = WebUrl + docLibName + "/" + docName;

                                               var file = web.GetFile(filePath).OpenBinary();

                                               listitem.Attachments.Add(filePath, file);

                                               listitem.Update();

                                         }

                                    catch (Exception ex)

                                    {

                                         return (ex.Message);

                                   }

 

                               return ("Document Successfully Copied to List");

                          }

                 }

             }

 

    }

}

 

 

 

Note also the error handling  with the use of the "try" statement.  I chose to have an error message returned on error. This would allow the workflow to complete with a normal termination. This error message can be written in the output by including the variable in the Common Section of the Web Services component.

 

By having the workflow terminate normally, the user does not have to physically click the error status and choose to terminate the workflow to start another.

 

Workflow with an Error:

 

Workflow with Error.png

 

The WSP plus the entire project are attached for your experimentation with at your own risk.  Use it as a starting template and at the very least, you'll learn some SharePoint and Nintex.


3 replies

Badge +1

Stephen,

Thanks for the detailed write up. I believe the above procedure works for on-prem sites. What is the process for O365?

Thanks,

Vinay.

Badge +1

Hello,

I really appreciate information shared above. It’s of great help Thanks for sharing!

Badge +9

You're welcome. It nice to see someone read what I wrote.

Reply