Network path
Messages   Related Types
This message was discovered on ASPFriends.com 'aspngwebservices' list.


Guruprasad TG
Hello,
    What my web service does: Reads in a file and extarcts some info from
it...so basically its a parsing method.
    What it takes as a parameter : Takes in a string which is the path to
a file.
When I try and pass to the method from my local machine, its working
fine.....But when I try to access from another machine its throwing up =
an
error saying no permissions granted....Where do I specify the grant
permissions for this?
Any help?

Thanks in advance,
Guru

Attched is the code snipped that I am using..........
=09
[WebMethod]
        public string[] performExtraction(String fileName)
        {
        =09
            ReInitializeAllVariables();=20

            //Instantiate and open the file
        =09
            try=20
            {
Line number:150 --->                fileStream =3D new
FileStream(fileName,FileMode.Open, FileAccess.Read);
            =09
            }=20

            catch (FileNotFoundException)=20
            {
                return null;
            }
        =09
            //Get the length of the file and read it into the
byte array
            fileLength =3D fileStream.Length;
            buffer =3D new byte[(int)fileLength + 1];

            fileStream.Read(buffer,0,(int)fileLength);
            fileStream.Flush();
            fileStream.Close();
        ...........
        ...........

The error thats throwing up is as
follows.............................................................

System.IO.IOException: Logon failure: unknown user name or bad password.

at System.IO.__Error.WinIOError(Int32 errorCode, String str)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access, FileShare share, Int32 bufferSize, Boolean useAsync, String =
msgPath,
Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access)
at JpegExtract.JpegExtract.performExtraction(String fileName) in
c:\inetpub\wwwroot\jpegextract\jpegextract.asmx.cs:line 150

Reply to this message...
 
    
Sreedhar Koganti
<html><div style='background-color:'><DIV>
<P>Even I got same kind of problem long back.<BR>I set the following in web.config and it solved my problem<BR><FONT color=#009900><STRONG><identity impersonate = "true" <FONT color=#000000>userName<I>=</I></FONT></STRONG><FONT color=#000000><I>"username<STRONG>"</STRONG></I><STRONG>        password</STRONG><I>="password"</I></FONT><STRONG> /><BR><BR>Or <BR></STRONG></FONT><FONT color=#000000>If USer name and password you are using for IIS is there in both machines, then it should work.</FONT></P>
<P><STRONG>If </STRONG>you are more querious to know why we have to do, Please read below links:<BR><A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetdataflow.asp">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetdataflow.asp</A></P>
<P><A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfidentitysection.asp"" target="_blank">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfidentitysection.asp";>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfidentitysection.asp</A></P>
<P><BR>GoodLuck<BR>Sreedhar<BR><A href="http://www.w3coder.com"" target="_blank">http://www.w3coder.com";>http://www.w3coder.com</A></P>
<P> </P>
<P><BR> </P></DIV>
<DIV></DIV>
<DIV></DIV>>From: "Guruprasad TG" <Click here to reveal e-mail address>
<DIV></DIV>>Reply-To: "aspngwebservices" <Click here to reveal e-mail address>
<DIV></DIV>>To: "aspngwebservices" <Click here to reveal e-mail address>
<DIV></DIV>>Subject: [aspngwebservices] Network path
<DIV></DIV>>Date: Wed, 5 Jun 2002 14:46:15 +0530
<DIV></DIV>>
<DIV></DIV>>Hello,
<DIV></DIV>> What my web service does: Reads in a file and extarcts some info from
<DIV></DIV>>it...so basically its a parsing method.
<DIV></DIV>> What it takes as a parameter : Takes in a string which is the path to
<DIV></DIV>>a file.
<DIV></DIV>> When I try and pass to the method from my local machine, its working
<DIV></DIV>>fine.....But when I try to access from another machine its throwing up an
<DIV></DIV>>error saying no permissions granted....Where do I specify the grant
<DIV></DIV>>permissions for this?
<DIV></DIV>>Any help?
<DIV></DIV>>
<DIV></DIV>>Thanks in advance,
<DIV></DIV>>Guru
<DIV></DIV>>
<DIV></DIV>>Attched is the code snipped that I am using..........
<DIV></DIV>>
<DIV></DIV>>[WebMethod]
<DIV></DIV>> public string[] performExtraction(String fileName)
<DIV></DIV>> {
<DIV></DIV>>
<DIV></DIV>> ReInitializeAllVariables();
<DIV></DIV>>
<DIV></DIV>> //Instantiate and open the file
<DIV></DIV>>
<DIV></DIV>> try
<DIV></DIV>> {
<DIV></DIV>>Line number:150 ---> fileStream = new
<DIV></DIV>>FileStream(fileName,FileMode.Open, FileAccess.Read);
<DIV></DIV>>
<DIV></DIV>> }
<DIV></DIV>>
<DIV></DIV>> catch (FileNotFoundException)
<DIV></DIV>> {
<DIV></DIV>> return null;
<DIV></DIV>> }
<DIV></DIV>>
<DIV></DIV>> //Get the length of the file and read it into the
<DIV></DIV>>byte array
<DIV></DIV>> fileLength = fileStream.Length;
<DIV></DIV>> buffer = new byte[(int)fileLength + 1];
<DIV></DIV>>
<DIV></DIV>> fileStream.Read(buffer,0,(int)fileLength);
<DIV></DIV>> fileStream.Flush();
<DIV></DIV>> fileStream.Close();
<DIV></DIV>> ...........
<DIV></DIV>> ...........
<DIV></DIV>>
<DIV></DIV>>The error thats throwing up is as
<DIV></DIV>>follows.............................................................
<DIV></DIV>>
<DIV></DIV>>System.IO.IOException: Logon failure: unknown user name or bad password.
<DIV></DIV>>
<DIV></DIV>> at System.IO.__Error.WinIOError(Int32 errorCode, String str)
<DIV></DIV>> at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
<DIV></DIV>>access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath,
<DIV></DIV>>Boolean bFromProxy)
<DIV></DIV>> at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
<DIV></DIV>>access)
<DIV></DIV>> at JpegExtract.JpegExtract.performExtraction(String fileName) in
<DIV></DIV>>c:\inetpub\wwwroot\jpegextract\jpegextract.asmx.cs:line 150
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
<DIV></DIV>>| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
<DIV></DIV>>| http://www.asplists.com/search = SEARCH Archives
<DIV></DIV>>
<DIV></DIV></div><br clear=all><hr>Chat with friends online, try MSN Messenger: <a href='http://g.msn.com/1HM503401/36'>Click Here</a><br></html>

Reply to this message...
 
    
Majed Sahli
Hi..
i faced the same problem when i was running my service from one of my PC'z, the other however, gave me the bloody error...
obviousely, it is something to do with privilages.. probably u should be sure that the file u r using and its path is accessible for "public" or anonymous users..
another thing is that webservices use an account created by .NET on the server, it limits what these services can do to protect the server.. so may be u can make the file and its path accessible for that account..
best of luck..
Guruprasad TG <Click here to reveal e-mail address> wrote:
Hello,
What my web service does: Reads in a file and extarcts some info from
it...so basically its a parsing method.
What it takes as a parameter : Takes in a string which is the path to
a file.
When I try and pass to the method from my local machine, its working
fine.....But when I try to access from another machine its throwing up an
error saying no permissions granted....Where do I specify the grant
permissions for this?
Any help?

Thanks in advance,
Guru

Attched is the code snipped that I am using..........

[WebMethod]
public string[] performExtraction(String fileName)
{

ReInitializeAllVariables();

//Instantiate and open the file

try
{
Line number:150 ---> fileStream = new
FileStream(fileName,FileMode.Open, FileAccess.Read);

}

catch (FileNotFoundException)
{
return null;
}

//Get the length of the file and read it into the
byte array
fileLength = fileStream.Length;
buffer = new byte[(int)fileLength + 1];

fileStream.Read(buffer,0,(int)fileLength);
fileStream.Flush();
fileStream.Close();
...........
...........

The error thats throwing up is as
follows.............................................................

System.IO.IOException: Logon failure: unknown user name or bad password.

at System.IO.__Error.WinIOError(Int32 errorCode, String str)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath,
Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access)
at JpegExtract.JpegExtract.performExtraction(String fileName) in
c:\inetpub\wwwroot\jpegextract\jpegextract.asmx.cs:line 150

| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

Majed A. Sahlihttp://majed.has.itP.O. Box 7967http://writersgarden.shows.itDhahran 31261, SAMobile : +966 5 383 7356

---------------------------------
Do You Yahoo!?
Sign-up for Video Highlights of 2002 FIFA World Cup
Reply to this message...
 
    
Guruprasad TG
Parser Error Message: Could not create Windows user token from the
credentials specified in the config file. Error from the operating system 'A
required privilege is not held by the client. '

Hi Sridhar,
When i did what u said in teh config file it sjows me the following
error........i also tried it specifying the username with the domain name as
well

Source Error:

Line 72: responseEncoding="utf-8"

Line 73: />

Line 74: <identity impersonate = "true" userName = "guruprasadt" password
= "welcome"

Line 75: />

Line 76:

-----Original Message-----
From: Sreedhar Koganti [mailto:Click here to reveal e-mail address]
Sent: Wednesday, June 05, 2002 4:47 PM
To: aspngwebservices
Subject: [aspngwebservices] Re: Network path

Even I got same kind of problem long back.
I set the following in web.config and it solved my problem
<identity impersonate = "true" userName="username" password="password"
/>

Or
If USer name and password you are using for IIS is there in both machines,
then it should work.

If you are more querious to know why we have to do, Please read below links:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html
/cpconaspnetdataflow.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/htm
l/gngrfidentitysection.asp

GoodLuck
Sreedhar
http://www.w3coder.com

[Original message clipped]

_____

Chat with friends online, try MSN Messenger: Click Here
<http://g.msn.com/1HM503401/36>
| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives
Reply to this message...
 
    
Sreedhar Koganti
<html><div style='background-color:'><DIV>
<P>Message makes sense..., I think it need some kind of privilages. <BR>It's time for you to talk to your networking guys. To give provilages to the user you are using in client machine and also make sure your application and that are in same domain and have enfough rights for that user.<BR><BR>Good luck<BR>Sreedhar<BR><A href="http://www.w3coder.com"" target="_blank">http://www.w3coder.com";>http://www.w3coder.com</A></P>
<P> </P>
<P><BR><BR> </P></DIV>
<DIV></DIV>
<DIV></DIV>>From: "Guruprasad TG" <Click here to reveal e-mail address>
<DIV></DIV>>Reply-To: "aspngwebservices" <Click here to reveal e-mail address>
<DIV></DIV>>To: "aspngwebservices" <Click here to reveal e-mail address>
<DIV></DIV>>Subject: [aspngwebservices] Re: Network path
<DIV></DIV>>Date: Wed, 5 Jun 2002 19:32:57 +0530
<DIV></DIV>>
<DIV></DIV>>Parser Error Message: Could not create Windows user token from the
<DIV></DIV>>credentials specified in the config file. Error from the operating system 'A
<DIV></DIV>>required privilege is not held by the client. '
<DIV></DIV>>
<DIV></DIV>>Hi Sridhar,
<DIV></DIV>> When i did what u said in teh config file it sjows me the following
<DIV></DIV>>error........i also tried it specifying the username with the domain name as
<DIV></DIV>>well
<DIV></DIV>>
<DIV></DIV>>Source Error:
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>Line 72: responseEncoding="utf-8"
<DIV></DIV>>
<DIV></DIV>>Line 73: />
<DIV></DIV>>
<DIV></DIV>>Line 74: <IDENTITY DIV < password userName="guruprasadt" impersonate="true">>= "welcome"
<DIV></DIV>>
<DIV></DIV>>Line 75: />
<DIV></DIV>>
<DIV></DIV>>Line 76:
<DIV></DIV>>
<DIV></DIV>>-----Original Message-----
<DIV></DIV>>From: Sreedhar Koganti [mailto:Click here to reveal e-mail address]
<DIV></DIV>>Sent: Wednesday, June 05, 2002 4:47 PM
<DIV></DIV>>To: aspngwebservices
<DIV></DIV>>Subject: [aspngwebservices] Re: Network path
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>Even I got same kind of problem long back.
<DIV></DIV>>I set the following in web.config and it solved my problem
<DIV></DIV>><IDENTITY DIV < password="password" userName="username" impersonate="true">>/>
<DIV></DIV>>
<DIV></DIV>>Or
<DIV></DIV>>If USer name and password you are using for IIS is there in both machines,
<DIV></DIV>>then it should work.
<DIV></DIV>>
<DIV></DIV>>If you are more querious to know why we have to do, Please read below links:
<DIV></DIV>>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html
<DIV></DIV>>/cpconaspnetdataflow.asp
<DIV></DIV>>
<DIV></DIV>>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/htm
<DIV></DIV>>l/gngrfidentitysection.asp
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>GoodLuck
<DIV></DIV>>Sreedhar
<DIV></DIV>>http://www.w3coder.com
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>> >From: "Guruprasad TG"
<DIV></DIV>> >Reply-To: "aspngwebservices"
<DIV></DIV>> >To: "aspngwebservices"
<DIV></DIV>> >Subject: [aspngwebservices] Network path
<DIV></DIV>> >Date: Wed, 5 Jun 2002 14:46:15 +0530
<DIV></DIV>> >
<DIV></DIV>> >Hello,
<DIV></DIV>> > What my web service does: Reads in a file and extarcts some info from
<DIV></DIV>> >it...so basically its a parsing method.
<DIV></DIV>> > What it takes as a parameter : Takes in a string which is the path to
<DIV></DIV>> >a file.
<DIV></DIV>> > When I try and pass to the method from my local machine, its working
<DIV></DIV>> >fine.....But when I try to access from another machine its throwing up an
<DIV></DIV>> >error saying no permissions granted....Where do I specify the grant
<DIV></DIV>> >permissions for this?
<DIV></DIV>> >Any help?
<DIV></DIV>> >
<DIV></DIV>> >Thanks in advance,
<DIV></DIV>> >Guru
<DIV></DIV>> >
<DIV></DIV>> >Attched is the code snipped that I am using..........
<DIV></DIV>> >
<DIV></DIV>> >[WebMethod]
<DIV></DIV>> > public string[] performExtraction(String fileName)
<DIV></DIV>> > {
<DIV></DIV>> >
<DIV></DIV>> > ReInitializeAllVariables();
<DIV></DIV>> >
<DIV></DIV>> > //Instantiate and open the file
<DIV></DIV>> >
<DIV></DIV>> > try
<DIV></DIV>> > {
<DIV></DIV>> >Line number:150 ---> fileStream = new
<DIV></DIV>> >FileStream(fileName,FileMode.Open, FileAccess.Read);
<DIV></DIV>> >
<DIV></DIV>> > }
<DIV></DIV>> >
<DIV></DIV>> > catch (FileNotFoundException)
<DIV></DIV>> > {
<DIV></DIV>> > return null;
<DIV></DIV>> > }
<DIV></DIV>> >
<DIV></DIV>> > //Get the length of the file and read it into the
<DIV></DIV>> >byte array
<DIV></DIV>> > fileLength = fileStream.Length;
<DIV></DIV>> > buffer = new byte[(int)fileLength + 1];
<DIV></DIV>> >
<DIV></DIV>> > fileStream.Read(buffer,0,(int)fileLength);
<DIV></DIV>> > fileStream.Flush();
<DIV></DIV>> > fileStream.Close();
<DIV></DIV>> > ...........
<DIV></DIV>> > ...........
<DIV></DIV>> >
<DIV></DIV>> >The error thats throwing up is as
<DIV></DIV>> >follows.............................................................
<DIV></DIV>> >
<DIV></DIV>> >System.IO.IOException: Logon failure: unknown user name or bad password.
<DIV></DIV>> >
<DIV></DIV>> > at System.IO.__Error.WinIOError(Int32 errorCode, String str)
<DIV></DIV>> > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
<DIV></DIV>> >access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath,
<DIV></DIV>>
<DIV></DIV>> >Boolean bFromProxy)
<DIV></DIV>> > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
<DIV></DIV>> >access)
<DIV></DIV>> > at JpegExtract.JpegExtract.performExtraction(String fileName) in
<DIV></DIV>> >c:\inetpub\wwwroot\jpegextract\jpegextract.asmx.cs:line 150
<DIV></DIV>> >
<DIV></DIV>> >
<DIV></DIV>> >
<DIV></DIV>> >
<DIV></DIV>> >| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
<DIV></DIV>> >| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
<DIV></DIV>> >| http://www.asplists.com/search = SEARCH Archives
<DIV></DIV>> >
<DIV></DIV>>
<DIV></DIV>> _____
<DIV></DIV>>
<DIV></DIV>>Chat with friends online, try MSN Messenger: Click Here
<DIV></DIV>><HTTP: 36 1HM503401 g.msn.com>
<DIV></DIV>>| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
<DIV></DIV>>| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
<DIV></DIV>>| http://www.asplists.com/search = SEARCH Archives
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
<DIV></DIV>>| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
<DIV></DIV>>| http://www.asplists.com/search = SEARCH Archives
<DIV></DIV>>
<DIV></DIV></div><br clear=all><hr>Join the world’s largest e-mail service with MSN Hotmail. <a href='http://g.msn.com/1HM503401/40'>Click Here</a><br></html>

Reply to this message...
 
    
Dunne, Joe
I had a similar problem with file access. If the file's security is domain
dependent then the you could disabled anonymous access and enable Windows
authentication within IIS MMC. Enable impersonation but leave the user and
password blank and IIS will pass the logon user's credentials for file
access.
Good luck.

joe

-----Original Message-----
From: Guruprasad TG [mailto:Click here to reveal e-mail address]
Sent: Wednesday, June 05, 2002 9:03 AM
To: aspngwebservices
Subject: [aspngwebservices] Re: Network path

Parser Error Message: Could not create Windows user token from the
credentials specified in the config file. Error from the operating system 'A
required privilege is not held by the client. '

Hi Sridhar,
When i did what u said in teh config file it sjows me the following
error........i also tried it specifying the username with the domain name as
well

Source Error:

Line 72: responseEncoding="utf-8"
Line 73: />
Line 74: <identity impersonate = "true" userName = "guruprasadt" password
= "welcome"
Line 75: />
Line 76:

-----Original Message-----
From: Sreedhar Koganti [mailto:Click here to reveal e-mail address]
Sent: Wednesday, June 05, 2002 4:47 PM
To: aspngwebservices
Subject: [aspngwebservices] Re: Network path

Even I got same kind of problem long back.
I set the following in web.config and it solved my problem
<identity impersonate = "true" userName="username"
password="password" />

Or
If USer name and password you are using for IIS is there in both machines,
then it should work.
If you are more querious to know why we have to do, Please read below links:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/htm
l/cpconaspnetdataflow.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/ht
ml/gngrfidentitysection.asp

GoodLuck
Sreedhar
http://www.w3coder.com

[Original message clipped]

Chat with friends online, try MSN Messenger: Click Here
| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives
Reply to this message...
 
    
aaniruddha@dsqsoft.com

Go to iis. Document security ----> Edit and check the an anonymous
access. Try it

"Guruprasad TG"
<guruprasadt@min To: "aspngwebservices"
dtree.com> <Click here to reveal e-mail address>
cc:
06/05/2002 02:46 Subject: [aspngwebservices] Network path
PM
Please respond
to
"aspngwebservice
s"

Hello,
What my web service does: Reads in a file and extarcts some info
from
it...so basically its a parsing method.
What it takes as a parameter : Takes in a string which is the
path to
a file.
When I try and pass to the method from my local machine, its working
fine.....But when I try to access from another machine its throwing up an
error saying no permissions granted....Where do I specify the grant
permissions for this?
Any help?

Thanks in advance,
Guru

Attched is the code snipped that I am using..........

[WebMethod]
public string[] performExtraction(String fileName)
{

ReInitializeAllVariables();

//Instantiate and open the file

try
{
Line number:150 ---> fileStream =
new
FileStream(fileName,FileMode.Open, FileAccess.Read);

}

catch (FileNotFoundException)
{
return null;
}

//Get the length of the file and read it
into the
byte array
fileLength = fileStream.Length;
buffer = new byte[(int)fileLength + 1];

fileStream.Read(buffer,0,(int)fileLength);
fileStream.Flush();
fileStream.Close();
...........
...........

The error thats throwing up is as
follows.............................................................

System.IO.IOException: Logon failure: unknown user name or bad password.

at System.IO.__Error.WinIOError(Int32 errorCode, String str)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access, FileShare share, Int32 bufferSize, Boolean useAsync, String
msgPath,
Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
access)
at JpegExtract.JpegExtract.performExtraction(String fileName) in
c:\inetpub\wwwroot\jpegextract\jpegextract.asmx.cs:line 150

| [aspngwebservices] member Click here to reveal e-mail address = YOUR ID
| http://www.asplists.com/asplists/aspngwebservices.asp = JOIN/QUIT
| http://www.asplists.com/search = SEARCH Archives

***************************** DISCLAIMER ***************************

This message is confidential to the company, and is intended only
for the named recipient. It may also be privileged or otherwise
protected by work product immunity or other legal rules. If you are
not the intended recipient, you are requested to delete this mail and
also be notified that disclosing, copying, distributing or taking any
action in reliance on the contents of this mail is strictly prohibited.
The company accepts no liability for any damage caused by any virus
transmitted by this email.

**********************************************************************

Reply to this message...
 
 
System.IO.FileAccess
System.IO.FileMode
System.IO.FileNotFoundException
System.IO.FileShare
System.IO.FileStream
System.IO.IOException




Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com