473,796 Members | 2,434 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Parsing XML from String

I am having difficulty taking an xml string passed as a
string from a web service. I am not using SOAP, but rather
calling the web service within an ASP.NET web form.
Reviewing the XML object model I am only finding file
parsing and I/O stream handling. Can anyone help out with
how this would be done?

This is just a simple test to get the returned method
values which are returned from the web service as a string.

private void cmdAirport_Clic k(object sender,
System.EventArg s e)
{
localhost.Airpo rtInfo Fetch = new localhost.Airpo rtInfo();
string Results;
if (txtCode.Text != "")
{
Results = Fetch.GetInfo(t xtCode.Text);

txtResult.Text = Results;
}
}
Nov 15 '05 #1
4 1664
Hi,

"Chad Scharf" <ch*********@na vigant.com> wrote in message
news:00******** *************** *****@phx.gbl.. .
I am having difficulty taking an xml string passed as a
XmlDocument.Loa dXml(string)

HTH,
Greetings
string from a web service. I am not using SOAP, but rather
calling the web service within an ASP.NET web form.
Reviewing the XML object model I am only finding file
parsing and I/O stream handling. Can anyone help out with
how this would be done?

This is just a simple test to get the returned method
values which are returned from the web service as a string.

private void cmdAirport_Clic k(object sender,
System.EventArg s e)
{
localhost.Airpo rtInfo Fetch = new localhost.Airpo rtInfo();
string Results;
if (txtCode.Text != "")
{
Results = Fetch.GetInfo(t xtCode.Text);

txtResult.Text = Results;
}
}

Nov 15 '05 #2
That's great but I'm still having difficulty getting that
into a dataset.
-----Original Message-----
Hi,

"Chad Scharf" <ch*********@na vigant.com> wrote in message
news:00******* *************** ******@phx.gbl. ..
I am having difficulty taking an xml string passed as a


XmlDocument.Lo adXml(string)

HTH,
Greetings
string from a web service. I am not using SOAP, but rather calling the web service within an ASP.NET web form.
Reviewing the XML object model I am only finding file
parsing and I/O stream handling. Can anyone help out with how this would be done?

This is just a simple test to get the returned method
values which are returned from the web service as a string.
private void cmdAirport_Clic k(object sender,
System.EventArg s e)
{
localhost.Airpo rtInfo Fetch = new localhost.Airpo rtInfo (); string Results;
if (txtCode.Text != "")
{
Results = Fetch.GetInfo(t xtCode.Text);

txtResult.Text = Results;
}
}

.

Nov 15 '05 #3
hi,

<an*******@disc ussions.microso ft.com> wrote in message
news:01******** *************** *****@phx.gbl.. .
That's great but I'm still having difficulty getting that
into a dataset.


string xmlData = "...";
System.IO.Strin gReader xmlSR = new System.IO.Strin gReader(xmlData );
myDS.ReadXml(xm lSR, XmlReadMode.Aut o);
xmlSR.Close();

HTH,
greetings
-----Original Message-----
Hi,

"Chad Scharf" <ch*********@na vigant.com> wrote in message
news:00******* *************** ******@phx.gbl. ..
I am having difficulty taking an xml string passed as a


XmlDocument.Lo adXml(string)

HTH,
Greetings
string from a web service. I am not using SOAP, but rather calling the web service within an ASP.NET web form.
Reviewing the XML object model I am only finding file
parsing and I/O stream handling. Can anyone help out with how this would be done?

This is just a simple test to get the returned method
values which are returned from the web service as a string.
private void cmdAirport_Clic k(object sender,
System.EventArg s e)
{
localhost.Airpo rtInfo Fetch = new localhost.Airpo rtInfo (); string Results;
if (txtCode.Text != "")
{
Results = Fetch.GetInfo(t xtCode.Text);

txtResult.Text = Results;
}
}

.

Nov 15 '05 #4
Thank you, this works beautifully!
-----Original Message-----
hi,

<an*******@dis cussions.micros oft.com> wrote in message
news:01******* *************** ******@phx.gbl. ..
That's great but I'm still having difficulty getting that
into a dataset.
string xmlData = "...";
System.IO.Stri ngReader xmlSR = new System.IO.Strin gReader

(xmlData);myDS.ReadXml(x mlSR, XmlReadMode.Aut o);
xmlSR.Close( );

HTH,
greetings
>-----Original Message-----
>Hi,
>
>"Chad Scharf" <ch*********@na vigant.com> wrote in message >news:00******* *************** ******@phx.gbl. ..
>> I am having difficulty taking an xml string passed as a >
>XmlDocument.Lo adXml(string)
>
>HTH,
>Greetings
>
>> string from a web service. I am not using SOAP, but

rather
>> calling the web service within an ASP.NET web form.
>> Reviewing the XML object model I am only finding file
>> parsing and I/O stream handling. Can anyone help out

with
>> how this would be done?
>>
>> This is just a simple test to get the returned method
>> values which are returned from the web service as a

string.
>>
>> private void cmdAirport_Clic k(object sender,
>> System.EventArg s e)
>> {
>> localhost.Airpo rtInfo Fetch = new
localhost.Airpo rtInfo ();
>> string Results;
>> if (txtCode.Text != "")
>> {
>> Results = Fetch.GetInfo(t xtCode.Text);
>>
>> txtResult.Text = Results;
>> }
>> }
>
>
>.
>

.

Nov 15 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
9448
by: Gerrit Holl | last post by:
Posted with permission from the author. I have some comments on this PEP, see the (coming) followup to this message. PEP: 321 Title: Date/Time Parsing and Formatting Version: $Revision: 1.3 $ Last-Modified: $Date: 2003/10/28 19:48:44 $ Author: A.M. Kuchling <amk@amk.ca> Status: Draft Type: Standards Track
2
3959
by: Cigdem | last post by:
Hello, I am trying to parse the XML files that the user selects(XML files are on anoher OS400 system called "wkdis3"). But i am permenantly getting that error: Directory0: \\wkdis3\ROOT\home Canonicalpath-Directory4: \\wkdis3\ROOT\home\bwe\ You selected the file named AAA.XML getXmlAlgorithmDocument(): IOException Not logged in
6
7658
by: BerkshireGuy | last post by:
Does anyone know of a good function that will parse out parts of an SQL statement that is passed to it in seperate variables? It should be able to parse statements that contain ORDERBY, WHERE, GROUP, etc. Thank you, Brian
9
1991
by: Paulers | last post by:
Hello, I have a log file that contains many multi-line messages. What is the best approach to take for extracting data out of each message and populating object properties to be stored in an ArrayList? I have tried looping through the logfile using regex, if statements and flags to find the start and end of each message but I do not see a good time in this process to create a new instance of my Message object. While messing around with...
3
3320
by: Anup Daware | last post by:
Hi Group, I am facing a strange problem here: I am trying to read xml response from a servlet using XmlTextWriter. I am able to read the read half of the xml and suddenly an exception: “Unexpected end of file while parsing Name has occurred” isbeing thrown. Following is the part o xml I am trying to read: <CHECK_ITEM_OUT>
3
2703
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def RN(name, regex): """protect using () and give an optional name to a regex""" if name:
2
4887
by: RG | last post by:
I am having trouble parsing the data I need from a Serial Port Buffer. I am sending info to a microcontroller that is being echoed back that I need to remove before I start the actual important data reading. For instance this is my buffer string: 012301234FFFFFFxFFFFFFxFFFFFFx Where the FFFFFF is my Hex data I need to read. I am using the "x" as a separater as I was having problems using the VbCrLf. But I think
6
1927
by: gw7rib | last post by:
I have a program that needs to do a small amount of relatively simple parsing. The routines I've written work fine, but the code using them is a bit long-winded. I therefore had the idea of creating a class to do parsing. It could be used as follows: int a, n, x, y; Parser par; par << string;
1
2966
by: hd95 | last post by:
In a perfect world my xml feed source would produce perfect xml ..that is not the case I am parsing an XML feed that sometimes has ampersands and dashes in the content that messes up my parsing. I've tried doing pre processing with find/replace to get rid of these characters but then I get another type of error "An unexpected end of file parsing CDATA has occurred" So to get around that error I've added in unicoding and removing...
1
4409
by: eyeore | last post by:
Hello everyone my String reverse code works but my professor wants me to use pop top push or Stack code and parsing code could you please teach me how to make this code work with pop top push or Stack code and parsing code my professor i does not like me using buffer reader on my code and my professor did even give me an example code for parsing as well as pop push top or Stack code and i don't know how to do this code into parsing and pop push...
0
9528
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10228
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10173
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10006
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9052
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6788
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5441
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5573
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4116
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.