473,670 Members | 2,331 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Read XML from a scoket

Hi,
I have a socket connection where messages are formatted as XML, i.e. each
message is in the form <msg>..</msg>.
Is there an easy way to get a XMLDocument for each message form the socket
stream?
I tried with XMLTextReader and the NetworkStream of the socket but the
reader blocks until the socket is closed.
Any help?
regards
Nov 12 '05 #1
4 4224
Lets see some code. It sounds like you're on the right path but you
might need to add a "flush()" call in order to avoid buffering in your
stream but gimme your code, me wants it.

Rgd,
Peter Theill

Nov 12 '05 #2
here it is
sock.Connect(ad dr);
NetworkStream strm = new NetworkStream(s ock,false);
XmlTextReader rdr = new XmlTextReader(s trm);
rdr.Read(); // the program blocks here until the sock is closed

or

sock.Connect(ad dr);
NetworkStream strm = new NetworkStream(s ock,false);
XmlDocument xdoc = new XMLDocument();
xdoc.Load(strm) ; // it blocks here

The server is working ok and sends the xml messages to the client.


"Peter Theill" <th****@gmail.c om> wrote in message
news:11******** *************@f 14g2000cwb.goog legroups.com...
Lets see some code. It sounds like you're on the right path but you
might need to add a "flush()" call in order to avoid buffering in your
stream but gimme your code, me wants it.

Rgd,
Peter Theill

Nov 12 '05 #3
If you are using an 1.1 Sp1, there is a bug in the code. If you are using
1.1 RTM, it should be fine. Instead of directly passing the Networkstream to
the xmltextreader, can you consume it completely and hold it in memory as a
workaround? And then send that to the xmltextreader?

"Drago Velchev" <dv******@refco .fr> wrote in message
news:Or******** ******@tk2msftn gp13.phx.gbl...
here it is
sock.Connect(ad dr);
NetworkStream strm = new NetworkStream(s ock,false);
XmlTextReader rdr = new XmlTextReader(s trm);
rdr.Read(); // the program blocks here until the sock is closed

or

sock.Connect(ad dr);
NetworkStream strm = new NetworkStream(s ock,false);
XmlDocument xdoc = new XMLDocument();
xdoc.Load(strm) ; // it blocks here

The server is working ok and sends the xml messages to the client.


"Peter Theill" <th****@gmail.c om> wrote in message
news:11******** *************@f 14g2000cwb.goog legroups.com...
Lets see some code. It sounds like you're on the right path but you
might need to add a "flush()" call in order to avoid buffering in your
stream but gimme your code, me wants it.

Rgd,
Peter Theill


Nov 12 '05 #4
There is a bug with .NET SP 1.1 using XmlTextReader with networkStream.

It works for me:

MemoryStream ms = new MemoryStream();

StreamReader sr = new StreamReader(ns );

if (ns.DataAvailab le)
{
char[] b = new char[512];
int nread = sr.Read(b, 0, 512);

ms.Write(System .Text.Encoding. ASCII.GetBytes( b, 0, nread), 0, nread);
ms.Seek(0, System.IO.SeekO rigin.Begin);

XmlTextReader reader = new XmlTextReader(m s);
if (reader.Read())
{
objXmlDocument. Load(reader);
}
}

Nov 12 '05 #5

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

Similar topics

2
8994
by: Gunnar | last post by:
Hello, I've just written a CPP program that reads integers from a binary file, and used this code while (my_ifstram.read( (char* ) &number, sizeof(int)) { // do something with number } My question is now, where can I find a manual that describes what the read method does with the ifstream object? I'm sitting here with my Linux/Debian machine, but I have not found any
11
12697
by: Markus Breuer | last post by:
I have a question about oracle commit and transactions. Following scenario: Process A performs a single sql-INSERT into a table and commits the transaction. Then he informs process B (ipc) to read the new date. So process B starts "select ..." but does not get the previously inserted row. The timespan between commit and select is very short. (NOTE: two different sessions are used) Questions: 1.) Does commit when returning from call...
12
11651
by: Steven T. Hatton | last post by:
I know of a least one person who believes std::ifstream::read() and std::ofstream::write() are "mistakes". They seem to do the job I want done. What's wrong with them. This is the code I currently have as a test for using std::ifstream::read(). Is there anything wrong with the way I'm getting the file? #include <vector> #include <iomanip> #include <fstream> #include <iostream>
2
3079
by: Sandman | last post by:
Just looking for suggestion on how to do this in my Web application. The goal is to keep track of what a user has and hasn't read and present him or her with new material I am currently doing this by aggregating new content from all databases into a single indexed database and then saving a timestamp in the account database (for the current user) that tells me when the user last read items in the aggregated database.
4
3843
by: Ollie Cook | last post by:
Hi, I am having some difficulty with read(2) and interrupting signals. I expect I am misunderstanding how the two work together, so would appreciate some guidance. I am trying to 'time out' a socket read after a certain delay. The logic is (I will provide a test program below): - create and connect socket
6
2663
by: BBM | last post by:
I have an object that has a fairly complex construction sequence, so I have written a dedicated "factory" class that invokes the constructor of my object class (which does nothing but instantiate the object and set default blank/null values), and then does all the Db access and number crunching to populate the new object. The factory returns the fully populated object to the caller. All the fields in the object are private, but have...
8
23902
by: a | last post by:
I have a struct to write to a file struct _structA{ long x; int y; float z; } struct _structA A; //file open write(fd,A,sizeof(_structA)); //file close
1
3993
by: Jose Reckoner | last post by:
I'm running python 2.3 on Windows XP. Anyone have a quick small script to convert .DT1 and .DEM data to ASCII or some other format? I don't need a viewer. Thanks!
0
4733
by: phplasma | last post by:
Hey, I am currently attempting to implement a multi-threaded C# socket, using SSL (.pem file/certification/private key combo) server using Visual Studio C# Express. I have successfully made the client application establish a connection, and send data, which appears in plain, de-crypted text on the server - this works.
0
8388
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
8907
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8593
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
8663
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
7423
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...
1
6218
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4215
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...
2
2046
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1799
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.