Click here to Skip to main content
15,914,447 members
Home / Discussions / XML / XSL
   

XML / XSL

 
QuestionHow to get the file position of a IXMLDOMNode ? Pin
JP GOBLET25-Nov-03 3:54
JP GOBLET25-Nov-03 3:54 
GeneralXmlDataDocument question Pin
pankajdaga21-Nov-03 7:17
pankajdaga21-Nov-03 7:17 
GeneralRe: XmlDataDocument question Pin
Ryan Roberts21-Nov-03 7:24
Ryan Roberts21-Nov-03 7:24 
GeneralRe: XmlDataDocument question Pin
pankajdaga21-Nov-03 8:06
pankajdaga21-Nov-03 8:06 
GeneralRe: XmlDataDocument question Pin
Daniel Turini21-Nov-03 7:38
Daniel Turini21-Nov-03 7:38 
GeneralRe: XmlDataDocument question Pin
pankajdaga21-Nov-03 8:05
pankajdaga21-Nov-03 8:05 
GeneralRe: XmlDataDocument question Pin
pankajdaga21-Nov-03 8:39
pankajdaga21-Nov-03 8:39 
GeneralDirect shove of data from an XML file to a web service. Pin
Jason Weibel19-Nov-03 11:44
Jason Weibel19-Nov-03 11:44 
I have a .net web service which expects a soap requested outlined by a structure of classes. Working on the client side I have created an xml file that contains everything that will be in the body of the soap envelope. If possible I want to take the contents of the xml file and shove them directly into the class and send it the web service. Here is the code I have been trying.
<br />
Dim sXMLFile As String = txtXML.Text<br />
Dim doc As New XmlDocument()<br />
Dim rc As localhost.Request<br />
<br />
Dim ds As New DataSet()<br />
Dim tbl As DataTable<br />
Dim col As DataColumn<br />
Dim row As DataRow<br />
<br />
doc.Load(sXMLFile)<br />
ds.ReadXml(New XmlNodeReader(doc))<br />
<br />
''// This doesn't work...<br />
'rc.SetInfo = ds.Tables(0).DataSet<br />
'rc.SetInfo2 = ds.Tables(1).DataSet<br />
<br />
''// This is really what I'm trying to get... <br />
''// A direct shove of the data from the XML file to thw web service.<br />
'wr.SubmitRequest(ctype(ds, localhost.Request)<br />
'wr.SubmitRequest(ctype(sXMLFile, localhost.Request)<br />
wr.SubmitRequest(ctype(XmlNodeReader(doc), localhost.Request)<br />

Is this possible and if so how?
Thanks,

Jason W.
GeneralRe: Direct shove of data from an XML file to a web service. Pin
Ryan Roberts21-Nov-03 7:33
Ryan Roberts21-Nov-03 7:33 
GeneralRe: Direct shove of data from an XML file to a web service. Pin
Jason Weibel21-Nov-03 8:54
Jason Weibel21-Nov-03 8:54 
Generalxml formatted data from a socket to a dataset Pin
Anonymous19-Nov-03 8:18
Anonymous19-Nov-03 8:18 
GeneralRe: xml formatted data from a socket to a dataset Pin
Heath Stewart26-Nov-03 3:56
protectorHeath Stewart26-Nov-03 3:56 
GeneralSystem.ObjectDisposedException Pin
Jason Weibel19-Nov-03 3:55
Jason Weibel19-Nov-03 3:55 
GeneralDocBook PDF Pin
LoisJohns17-Nov-03 17:02
LoisJohns17-Nov-03 17:02 
GeneralRe: DocBook PDF Pin
Philip Fitzsimons18-Nov-03 2:43
Philip Fitzsimons18-Nov-03 2:43 
GeneralDocBook PDF Pin
LoisJohns17-Nov-03 17:02
LoisJohns17-Nov-03 17:02 
QuestionHow to obtain the XM-format for MS-Project? Pin
d00_ape12-Nov-03 1:42
sussd00_ape12-Nov-03 1:42 
GeneralTransformed XML Display Pin
Anonymous9-Nov-03 18:26
Anonymous9-Nov-03 18:26 
GeneralRe: Transformed XML Display Pin
Douglas Troy10-Nov-03 5:38
Douglas Troy10-Nov-03 5:38 
GeneralRe: Transformed XML Display Pin
Tomas Petricek14-Nov-03 10:13
Tomas Petricek14-Nov-03 10:13 
GeneralError while creating Xml from dataset Pin
susree7-Nov-03 1:26
susree7-Nov-03 1:26 
GeneralRe: Error while creating Xml from dataset Pin
Douglas Troy10-Nov-03 5:36
Douglas Troy10-Nov-03 5:36 
QuestionHow 2 get stared on XML (newbie) Pin
paracha35-Nov-03 17:53
paracha35-Nov-03 17:53 
AnswerRe: How 2 get stared on XML (newbie) Pin
Mike Ellison5-Nov-03 18:02
Mike Ellison5-Nov-03 18:02 
AnswerRe: How 2 get stared on XML (newbie) Pin
Brandon Haase13-Nov-03 15:23
Brandon Haase13-Nov-03 15:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.