infopath 2007 OM, DataAdapters

R

Richard

How to use DataConnections in Infopath 2007 OM

I want to convert the following code that was in infopath 2003 to the new
2007 OM.

WebServiceAdapter2 WSSubmit = (WebServiceAdapter2)
thisXDocument.DataAdapters["PutMarkLogicDoc"];

WSSubmit.Submit();
 
S

S.Y.M. Wong-A-Ton

Try

WebServiceConnection WSSubmit =
(WebServiceConnection)this.DataConnections["PutMarkLogicDoc"];
WSSubmit.Execute();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top