Use our Google Custom Search for best site search results.
Search
-
In the above example that i have give note that ''<my:group1>'' is a section which contains a node within it. Similarly you can have your fields inside that xml.
Agni
InfopathDev India
-
If a node is an optional in the xml and in the Infopath UI then then that node will not be present in the XML by default. You can add this node in the code, when you add this node in the code that optional field will be seen in the UI.
Here is the sample to add a Node
string sXml = ''<my:group1 ...
-
Hi ScottAtRVC,
I dont know whether i understood your problem in full or not, but let me put your question in my words
before answering it.
You want to submit XML as an Input parameter to a webservice dataconnection.
If my understanding is correct here is the solution:
1. If webservice wants xml as a string you can pass your xml as ...
-
Hi Liorlankri,
If you are using Web Reference through c# code you will have to give full trust and sign the form.
But another way of calling a webservice method is through infopath dataconnection for which you dont have to sign the form.
Steps to create a Webservice Dataconnection in Infopath:
1. Tools->DataConnections->Add
2. Select ...
-
Getting the Option data if you give values directly to the dropdown is not possible as far as i know. But here is one workaround for your
problem. Create an xml file in the following manner
<SelectOptions>
<Select option = ''Option1'' value = ''value1''></Select>
<Select option = ''Option2'' value = ...
-
Can we insert a row or update database with a database dataconnection? Or is there any other way that i can insert into database without signing the form?
Limitation I have is there is no webservice to submit data to database.
Agni