Link to home
Start Free TrialLog in
Avatar of nsyyoung
nsyyoungFlag for United States of America

asked on

How do I solve a SOAP error when submitting an InfoPath 2007 form with repeating tables to a SharePoint list:

The SOAP response indicates that an error occurred on the server:

Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
<detail><errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap/">Value does not fall within the expected range.</errorstring></detail>

I have followed the instructions on this page: http://www.bizsupportonline.net/infopath2007/how-to-submit-items-rows-repeating-table-infopath-sharepoint-list.htm  and can't get past the error.  I've tried the GUID with and without braces.  I've tried adding his code to the button click event and replacing the default.  It fails at this line: DataConnections("CustomListItemsSubmit").Execute() (last line in the btnSubmitMinutes_Clicked sub.  The code is attached.  

I'm looking forward to the help anyone can give me that will stop my wheels from spinning; thanks in advance.
Imports Microsoft.Office.InfoPath
Imports System
Imports System.Windows.Forms
Imports System.Xml
Imports System.Xml.XPath
Imports mshtml


Namespace GFMCMinutesForm5
    Public Class FormCode
        ' Member variables are not supported in browser-enabled forms.
        ' Instead, write and read these values from the FormState
        ' dictionary using code such as the following:
        '
        ' Private Property _memberVariable() As Object
        '     Get
        '         _memberVariable = FormState("_memberVariable")
        '     End Get
        '     Set
        '         FormState("_memberVariable") = value
        '     End Set
        ' End Property

        ' NOTE: The following procedure is required by Microsoft Office InfoPath.
        ' It can be modified using Microsoft Office InfoPath.
        Private Sub InternalStartup(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Startup
            AddHandler DirectCast(EventManager.ControlEvents("btnSubmitMinutes"), ButtonEvent).Clicked, AddressOf btnSubmitMinutes_Clicked
        End Sub

       

        Public Sub btnSubmitMinutes_Clicked(ByVal sender As Object, ByVal e As ClickedEventArgs)
            ' Delete all Method nodes from the CAML Batch XML
            Dim secDSNav As XPathNavigator = DataSources("CustomListCAML").CreateNavigator()
            Dim iter As XPathNodeIterator = secDSNav.Select("/Batch/Method")
            Dim methodNodesCount As Integer = iter.Count

            Dim firstMethodNav As XPathNavigator = _
            secDSNav.SelectSingleNode("/Batch/Method[1]", _
            NamespaceManager)
            Dim lastMethodNav As XPathNavigator = _
            secDSNav.SelectSingleNode("/Batch/Method[" & _
            methodNodesCount.ToString() & "]", _
            NamespaceManager)

            firstMethodNav.DeleteRange(lastMethodNav)

            ' Retrieve the rows of the repeating table
            Dim root As XPathNavigator = MainDataSource.CreateNavigator()
            Dim rows As XPathNodeIterator = root.Select( _
            "/my:myFields/my:rows/my:row", NamespaceManager)

            ' Loop through the rows of the repeating table
            ' and construct the CAML Batch XML
            Dim counter As Integer = 1
            While rows.MoveNext()
                ' Retrieve the title
                Dim title As String = rows.Current.SelectSingleNode( _
                "my:title", NamespaceManager).Value

                ' Add an item to the CAML Batch XML
                AddMethodNode(counter, title)

                ' Increment the counter
                counter = counter + 1
            End While

            ' Submit the rows to the Lists web service to update the custom list
            DataConnections("CustomListItemsSubmit").Execute()
        End Sub
        Public Sub AddMethodNode(ByVal id As Integer, ByVal title As String)
            Dim sb As System.Text.StringBuilder = New System.Text.StringBuilder()
            sb.AppendFormat("<Method ID=""{0}"" Cmd=""New"">", id.ToString())
            sb.AppendFormat("<Field Name=""Title"">{0}</Field>", title)
            sb.AppendFormat("</Method>")

            Dim methodXml As XmlDocument = New XmlDocument()
            methodXml.LoadXml(sb.ToString())

            Dim secDSNav As XPathNavigator = DataSources("CustomListCAML").CreateNavigator()
            Dim batchNav As XPathNavigator = secDSNav.SelectSingleNode("/Batch", NamespaceManager)
            batchNav.AppendChild(methodXml.DocumentElement.CreateNavigator())
        End Sub
    End Class
End Namespace

Open in new window

Avatar of arduk
arduk

Have you had a look at the actual batch xml that is being submitted? It may give you (or us) some clue as to what is incorrect.

Also, whenever I have used the lists.asmx web service (not through infopath admittedly), I have always used the list name, rather than the guid - you may be able to try that.

If you can't get it to work submitting it this way, you could always add a reference to the lists.asmx webservice directly, and then build the xml, and call the webservice directly through code. May be a little more work, but at least you would have full control over everything...

Hope this helps...
Avatar of nsyyoung

ASKER

Oh, boy.  Where do I find the actual batch file? I will try it with the listname instead and report back.
And how would I go about following your second suggestion?  This is all fairly new for me.
I have just tried this code (I used the c# version) with the list name rather than the guid, and it seems to work - the items are actually added to the list.
I did get an error indicating that it had failed (NOT a SOAP error), but adding the line below after executing the submit of the data connection seems to have resolved that (remember this is in c# - so syntax may be slightly different for you in VB?)
e.CancelableArgs.Cancel = false
to indicate that it has worked...

Considering that I have been through this and it works exactly as is, I would suggest going back over the steps in the article, and ensuring that your datasources are setup correctly - particularly check that the listName parameter is mapped correctly on the "CustomListItemsSubmit" datasource.
If your datasources are correct, I would then try using the list name, rather than the guid (you can use either, but it could be an issue with the guid being incorrect, using list name will get around that)


As for finding out the actual values in the xml batch:
in your code, the following lines are adding each of the methods to the xml batch code (below is the correct VB code I believe):
            Dim secDSNav As XPathNavigator = DataSources("CustomListCAML").CreateNavigator()
            Dim batchNav As XPathNavigator = secDSNav.SelectSingleNode("/Batch", NamespaceManager)
            batchNav.AppendChild(methodXml.DocumentElement.CreateNavigator())

so what you are actually ending up with here is an xml node "Batch" that has the details of the items to be added to the list.

To get the actual content of that node, add the following lines of code before the submit:
            secDSNav = DataSources("CustomListCAML").CreateNavigator()
            Dim batchNav As XPathNavigator = secDSNav.SelectSingleNode("/Batch", NamespaceManager)
dim batchContents as string = batchNav.OuterXml;

Put a break point after the code above, and then examine the contents of "batchContents"

When I did this, having entered 3 rows in the repeating table with the values "test item 1", "test item 2", "test item 3", I get the following as the value of "batchContents"
"<Batch>\r\n\r\n<Method ID=\"1\" Cmd=\"New\"><Field Name=\"Title\">test item 1</Field></Method><Method ID=\"2\" Cmd=\"New\"><Field Name=\"Title\">test item 2</Field></Method><Method ID=\"3\" Cmd=\"New\"><Field Name=\"Title\">test item 3</Field></Method></Batch>"

Thanks, I'll try that and see how it goes.
ASKER CERTIFIED SOLUTION
Avatar of nsyyoung
nsyyoung
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial