473,397 Members | 2,033 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Write error on Read() ??

I'm writing a console app in c# and am encountering a strange problem. I'm
trying to use redirection of the standard input stream to read input from a
(xml) file. The following code snippet is from this app:
===============================
static void Main(string[] args)
{
if (args.Length > 0) Console.SetIn(new StreamReader(args[0]));
//executes if I don't use the "<", ">" redirection syntax when invoking

XmlTextReader xmlin = new XmlTextReader(Console.In);
xmlin.WhitespaceHandling = WhitespaceHandling.None;

if (args.Length > 1) Console.SetOut(new
StreamWriter(args[1]));//executes if I don't use the "<", ">" redirection
syntax when invoking

XmlTextWriter xmlw = new XmlTextWriter(Console.Out);
string SchemaResource = "DBDumper.DumpSpec0.xsd";
XmlValidatingReader xmlvr = new XmlValidatingReader(xmlin);
Assembly a = Assembly.GetExecutingAssembly();
Debug.Assert (a.GetManifestResourceInfo(SchemaResource) != null);
XmlTextReader xsdreader = new XmlTextReader(new
StreamReader(a.GetManifestResourceStream(SchemaRes ource)));
xmlvr.Schemas.Add(null, xsdreader);
try
{
xmlvr.Read();
....
=============================
So, assuming my app's executable is foo.exe, things work fine if I type in

foo input.xml output.xml

Also,
foo input.xml > output.xml

works fine. But, if I type in:

foo < input.xml > output.xml

I get an error on the xmlvr.Read() in the last line above, complaining that
the stream does not support a Write!!

Can anyone give me help on this? I've stared at it now for a while and don't
see the problem.

Thanks in advance,
Bill
Nov 15 '05 #1
3 2729

Hi Bill,

If you want to get " foo < input.xml > output.xml" work, you should
parse the command line parameter for multi-parameters.

I think you can use string.split() method to parse the command string into
an array of string, then you can apply your command line program logic.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Bill Cohagan" <bi**@teraXNOSPAMXquest.com>
| Subject: Write error on Read() ??
| Date: Sat, 27 Sep 2003 16:24:02 -0500
| Lines: 50
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#x**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups:
microsoft.public.dotnet.general,microsoft.public.d otnet.languages.csharp
| NNTP-Posting-Host: cs24313-53.austin.rr.com 24.243.13.53
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.languages.csharp:187725
microsoft.public.dotnet.general:110132
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| I'm writing a console app in c# and am encountering a strange problem. I'm
| trying to use redirection of the standard input stream to read input from
a
| (xml) file. The following code snippet is from this app:
| ===============================
| static void Main(string[] args)
| {
| if (args.Length > 0) Console.SetIn(new StreamReader(args[0]));
| //executes if I don't use the "<", ">" redirection syntax when invoking
|
| XmlTextReader xmlin = new XmlTextReader(Console.In);
| xmlin.WhitespaceHandling = WhitespaceHandling.None;
|
| if (args.Length > 1) Console.SetOut(new
| StreamWriter(args[1]));//executes if I don't use the "<", ">" redirection
| syntax when invoking
|
| XmlTextWriter xmlw = new XmlTextWriter(Console.Out);
| string SchemaResource = "DBDumper.DumpSpec0.xsd";
| XmlValidatingReader xmlvr = new XmlValidatingReader(xmlin);
| Assembly a = Assembly.GetExecutingAssembly();
| Debug.Assert (a.GetManifestResourceInfo(SchemaResource) != null);
| XmlTextReader xsdreader = new XmlTextReader(new
| StreamReader(a.GetManifestResourceStream(SchemaRes ource)));
| xmlvr.Schemas.Add(null, xsdreader);
| try
| {
| xmlvr.Read();
| ....
| =============================
| So, assuming my app's executable is foo.exe, things work fine if I type in
|
| foo input.xml output.xml
|
| Also,
| foo input.xml > output.xml
|
| works fine. But, if I type in:
|
| foo < input.xml > output.xml
|
| I get an error on the xmlvr.Read() in the last line above, complaining
that
| the stream does not support a Write!!
|
| Can anyone give me help on this? I've stared at it now for a while and
don't
| see the problem.
|
| Thanks in advance,
| Bill
|
|
|

Nov 15 '05 #2
Jeffrey-
Well, that's a shock! I would have thought that the framework would
provide a "transparent" way of implementing redirection of standard in,
standard out, and standard error. In particular, if I hardwire the logic
myself by parsing the command line, then my application will not work if
invoked by another application that binds these standard input/output
streams. To use a built in command as an example, I can (at a command
prompt) do:

dir foo.* > dirlist.txt

and get the result of the directory listing written to the dirlist.txt file.
I can also invoke the "dir" command from another app by using the
"startinfo" property of a process object. (See MSDN article [305994 - HOWTO:
Write a Wrapper for a Command-Line Tool with Visual C# .NET]. This is
precisely the functionality I want to have for my own application.

The approach you suggest would not support this since the code would expect
a command line containing the file names and wouldn't react as expected to
having a calling process rebind these streams. Surely MS didn't intend that
this functionality not be possible in user written console apps!!

I would also point out that my code appears to work fine for the output
stream; i.e., the STDOUT stream is "automatically" rebound to the designated
file. It is just the input stream that is a problem -- and my guess is that
the problem is somehow associated with trying to use it as an xmltextreader
(rather than just a textreader).

I'd appreciate it if you'd research this a bit further and let me know if
there's a (framework?) bug here or point me to some docs that explain why
this code doesn't work. In any case I do appreciate your quick response.

If you'd like I can simplify the code snippet a bit by eliminating the
validation portion; i.e., just use the constructed xmltextreader rather than
the validating reader when inovking the Read() method. You should still see
the error. To test this of course you'd need to create a (trivial) XML input
file to use.

Regards,
Bill

"Jeffrey Tan[MSFT]" <v-*****@online.microsoft.com> wrote in message
news:YU**************@cpmsftngxa06.phx.gbl...

Hi Bill,

If you want to get " foo < input.xml > output.xml" work, you should
parse the command line parameter for multi-parameters.

I think you can use string.split() method to parse the command string into
an array of string, then you can apply your command line program logic.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Bill Cohagan" <bi**@teraXNOSPAMXquest.com>
| Subject: Write error on Read() ??
| Date: Sat, 27 Sep 2003 16:24:02 -0500
| Lines: 50
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#x**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups:
microsoft.public.dotnet.general,microsoft.public.d otnet.languages.csharp
| NNTP-Posting-Host: cs24313-53.austin.rr.com 24.243.13.53
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.languages.csharp:187725
microsoft.public.dotnet.general:110132
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| I'm writing a console app in c# and am encountering a strange problem. I'm | trying to use redirection of the standard input stream to read input from a
| (xml) file. The following code snippet is from this app:
| ===============================
| static void Main(string[] args)
| {
| if (args.Length > 0) Console.SetIn(new StreamReader(args[0]));
| //executes if I don't use the "<", ">" redirection syntax when invoking
|
| XmlTextReader xmlin = new XmlTextReader(Console.In);
| xmlin.WhitespaceHandling = WhitespaceHandling.None;
|
| if (args.Length > 1) Console.SetOut(new
| StreamWriter(args[1]));//executes if I don't use the "<", ">" redirection | syntax when invoking
|
| XmlTextWriter xmlw = new XmlTextWriter(Console.Out);
| string SchemaResource = "DBDumper.DumpSpec0.xsd";
| XmlValidatingReader xmlvr = new XmlValidatingReader(xmlin);
| Assembly a = Assembly.GetExecutingAssembly();
| Debug.Assert (a.GetManifestResourceInfo(SchemaResource) != null);
| XmlTextReader xsdreader = new XmlTextReader(new
| StreamReader(a.GetManifestResourceStream(SchemaRes ource)));
| xmlvr.Schemas.Add(null, xsdreader);
| try
| {
| xmlvr.Read();
| ....
| =============================
| So, assuming my app's executable is foo.exe, things work fine if I type in |
| foo input.xml output.xml
|
| Also,
| foo input.xml > output.xml
|
| works fine. But, if I type in:
|
| foo < input.xml > output.xml
|
| I get an error on the xmlvr.Read() in the last line above, complaining
that
| the stream does not support a Write!!
|
| Can anyone give me help on this? I've stared at it now for a while and
don't
| see the problem.
|
| Thanks in advance,
| Bill
|
|
|

Nov 15 '05 #3
Jeffrey-

I've figured out the problem. In my case the XML file in question was
written using UTF-8 encoding -- which apparently includes some binary
"chars" at the beginning of the file. If I remove those characters then my
use of Console.In to create an xmltextreader works as expected. So, the
problem was pilot error; although I think the "Write error on Read()" error
was certainly a misleading one!

Thanks again for the response -- though I believe the suggestion to parse
the command line was a red herring. :-)

Bill

"Jeffrey Tan[MSFT]" <v-*****@online.microsoft.com> wrote in message
news:YU**************@cpmsftngxa06.phx.gbl...

Hi Bill,

If you want to get " foo < input.xml > output.xml" work, you should
parse the command line parameter for multi-parameters.

I think you can use string.split() method to parse the command string into
an array of string, then you can apply your command line program logic.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Bill Cohagan" <bi**@teraXNOSPAMXquest.com>
| Subject: Write error on Read() ??
| Date: Sat, 27 Sep 2003 16:24:02 -0500
| Lines: 50
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#x**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups:
microsoft.public.dotnet.general,microsoft.public.d otnet.languages.csharp
| NNTP-Posting-Host: cs24313-53.austin.rr.com 24.243.13.53
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.languages.csharp:187725
microsoft.public.dotnet.general:110132
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| I'm writing a console app in c# and am encountering a strange problem. I'm | trying to use redirection of the standard input stream to read input from a
| (xml) file. The following code snippet is from this app:
| ===============================
| static void Main(string[] args)
| {
| if (args.Length > 0) Console.SetIn(new StreamReader(args[0]));
| //executes if I don't use the "<", ">" redirection syntax when invoking
|
| XmlTextReader xmlin = new XmlTextReader(Console.In);
| xmlin.WhitespaceHandling = WhitespaceHandling.None;
|
| if (args.Length > 1) Console.SetOut(new
| StreamWriter(args[1]));//executes if I don't use the "<", ">" redirection | syntax when invoking
|
| XmlTextWriter xmlw = new XmlTextWriter(Console.Out);
| string SchemaResource = "DBDumper.DumpSpec0.xsd";
| XmlValidatingReader xmlvr = new XmlValidatingReader(xmlin);
| Assembly a = Assembly.GetExecutingAssembly();
| Debug.Assert (a.GetManifestResourceInfo(SchemaResource) != null);
| XmlTextReader xsdreader = new XmlTextReader(new
| StreamReader(a.GetManifestResourceStream(SchemaRes ource)));
| xmlvr.Schemas.Add(null, xsdreader);
| try
| {
| xmlvr.Read();
| ....
| =============================
| So, assuming my app's executable is foo.exe, things work fine if I type in |
| foo input.xml output.xml
|
| Also,
| foo input.xml > output.xml
|
| works fine. But, if I type in:
|
| foo < input.xml > output.xml
|
| I get an error on the xmlvr.Read() in the last line above, complaining
that
| the stream does not support a Write!!
|
| Can anyone give me help on this? I've stared at it now for a while and
don't
| see the problem.
|
| Thanks in advance,
| Bill
|
|
|

Nov 15 '05 #4

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

Similar topics

4
by: Bill Cohagan | last post by:
I'm writing a console app in c# and am encountering a strange problem. I'm trying to use redirection of the standard input stream to read input from a (xml) file. The following code snippet is from...
0
by: Frederic Rentsch | last post by:
Hi all, Working with read and write operations on a file I stumbled on a complication when writes fail following a read to the end. 30L 'abcdefg' Traceback (most recent call last): File...
6
by: wiso | last post by:
My problem is this (from: http://www.cplusplus.com/ref/iostream/fstream/open.html) #include <fstream> using namespace std; int main() { fstream f;
0
by: Buddy Home | last post by:
Hello, I'm trying to upload a file programatically and occasionally I get the following error message. Unable to write data to the transport connection: An established connection was aborted...
3
by: Buddy Home | last post by:
Hello, I'm trying to upload a file programatically and occasionally I get the following error message. Unable to write data to the transport connection: An established connection was aborted...
3
by: eholz1 | last post by:
Hello PHP Group, I am having trouble setting permissions correctly so that the magickwand api (php 5.2) can read and write images. I usually read a file from one directory, create a magickwand...
2
by: adypoly | last post by:
Hi guys... I am having a typical problem in using one of the native dll in C# I'll explain what am trying to do, I've a dll written in C language which i am trying to include in my C# project,...
24
by: Bill | last post by:
Hello, I'm trying to output buffer content to a file. I either get an access violation error, or crazy looking output in the file depending on which method I use to write the file. Can anyone...
65
by: Hongyu | last post by:
Dear all: I am trying to write to a file with full directory name and file name specified (./outdir/mytestout.txt where . is the current directory) in C programming language and under Unix, but...
3
by: sriram347 | last post by:
Hi I am a newbie to ASP.NET. I developed a web page (project type is web application) and I keep getting this error. B]Error message : "System.AccessViolation Exception attempted to read or...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...
0
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...
0
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,...
0
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...

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.