Accessing Remote Machine In C#?

Nov 15, 2010

I want to access some places on a remote machine.The folder i want to access have full control to EVERYONE. The code given below is used to access network path.

[code]...

The application run fine if both the host computer and the remote computer to be accessed having os windows xp .The application also run fine if the application is running inside visual studio .

Then my problems is ,any one of the machine( server and remote machine)having an os newer then windows xp( like windows 7, server 2008) locationInfo.Exists always false.

View 2 Replies


Similar Messages:

Accessing A Notepad File From A Remote Machine In A Webpage?

Jan 6, 2011

I have log files in different machines. Now i am developing a web page in my development machine (Windows XP, IIS 5.1 installed). In the web page i want to give a link(may be hyperlink or linkbutton). On clicking the link it should access the log file in the particular machine and it should give a popup with open and save option as given in the normal web applications. I am using the following code snippet but its throwing error "Cannnot resolve the URL"

Response.ContentType = "text/txt";
Response.AppendHeader("Content-Disposition", "attachment; filename=log.txt");
string str = ResolveClientUrl("\ip address\FolderName\logs\log.txt");
Response.TransmitFile(str);
Response.End();

Here FolderName is a shared folder in the machine(which ip address is mentioned).

View 3 Replies

C# - How To Get Remote Ip Address Or Machine Name

Nov 23, 2010

I have my GUI files published on a server... this server is where the IIS is running..

Now i access my GUI from a remote machine. how can i get this machines IP address or username.

I get the server name of the machine using this code:

string svrName = System.Net.Dns.GetHostName();

there are 2 machines A and B.. A is where i have my published files for the GUI and also the IIS... the above code gives me the name of machine A

now i call the GUI from machine B. and i want the name of machine B

View 2 Replies

Getting Files From Remote Machine?

Jan 14, 2011

I am working with SFTP applications also i am having one scenario. I have to search particular format files from remote machine and also need to store or copy the corresponding files into local system.

We are using user credentiaal to connect with remote machine

How could we achieve the scnenario.

View 3 Replies

How To Access Production Server IIS From The Remote Machine

Dec 27, 2010

We have staging server and production server for website. We will move the changes from the staging server to the Production server through the FTP.

Since we have the product release for every 3 months. So, we need to redirect to the latest version in the Production server IIS. Is it possible to access the Production server IIS and redirect the web site link from staging server ?

View 2 Replies

Security :: How To Get Access To Aspnet_regiis.exe On Remote Machine

Jun 9, 2010

i have created a bat file to run the aspnet_regiis exe to encrypt the connectionStrings of web.config file on the remote machine. the same is working when i ran the file on remote machine itself. but is it not working when i call it from another bat file from my local machine which is shared with remote machine. my code loos like:

<remote_server><frmaework_path>aspnet_regiis.exe -pef "connetionStrings" <remote_server><physical_path_application>

<remote_server><frmaework_path>aspnet_regiis.exe -pa "netfrmaeworkconfigurationkey" "ASPNET"

View 2 Replies

Configuration :: Load Assemblies From Remote Machine?

Jun 1, 2010

I'm trying to deploy a website stored on a network shared storage. My problem is that I am unable to load assemblies that reside on the remote machine.I load some assemblies by using

assembly = Assembly.LoadFrom(Uri.UnescapeDataString(new UriBuilder(satelliteExpectedLocation).Path))
where the satelliteExpectedLocation is in the form "file:\10.0.0.85 mpappinMessages.resources.dll".
I got a FormatException on this one, so I modified the path to read "file:////\10.0.0.85\tmp\app\bin\Messages.resources.dll"

Now I get a "System.IO.FileNotFoundException".I read on MSDN that the "File" scheme is to be used for resources on the local machine. But how should I get the resources on the network share?

View 2 Replies

Security :: Folder Is Not Creating On Remote Machine?

Mar 26, 2010

I am creating a folder on remote machine,for that folder i gave acces permissions. even though when i submit my form it is giving below error.

No accessible overloaded 'SqlCommand.Transaction' is most specific for these arguments: Public Sub set_Transaction(value As System.Data.SqlClient.SqlTransaction) Public Sub set_Transaction(value As System.Data.Common.DbTransaction)

View 2 Replies

Create Virtual Directory On Remote Machine?

Jan 10, 2011

I am able to create Virtual Directory on local machine, but I want to create it on a remote machine.

View 2 Replies

C# - How To Set Up A Windows Service To Listen To Events On A Remote Machine

Aug 29, 2010

I have a asp.net web app and a windows service running on separate machines. How can i enable the windows service subscribe/listen to events raised by the asp.net app on the remote machine? What methods can i use?n example of events that can be raised on the asp.net app is a user uploading a file. Once the upload has completed the windows service should be notified so it can do some work. It seems that there needs to be a layer in between asp.net and windows service, possibly another windows service or WCF app? Or plain old polling through a shared database containing the state?

View 1 Replies

How Upload File In Remote Machine (LAN) Using Flajaxian FileUploader

Feb 7, 2011

really it's a crucial point for me, my quastion is :

How upload file in remote machine (LAN) using Flajaxian FileUploader.

Env : C# , ASP.NET , VS .NET 2005

View 1 Replies

Web Forms :: How To Set The Path To Read Txt File In Remote Machine

Jul 26, 2010

How to set the path to read the file which is in remote machine and display it in TEXTBOX in web browser.

View 2 Replies

Security :: Read Remote Machine Event Logs?

Nov 23, 2010

I am working on an application to read event logs on a remote machine. I tried adding this to the web.config

<identity impersonate="true" user="domainuser" password="password" />

However, when I ran this, I got the following error:

Could not create Windows user token from the credentials specified in the config file. Error from the operating system 'Logon failure: unknown user name or bad password.

I looked at this post

[URL]

It seemed to suggest I would need to create a new account on the remote server. Is there a way I can just use an existing domain account?

View 2 Replies

Security :: Retrieve The Remote Logged In User On A Xp Machine?

Mar 25, 2010

I want to make a overview on a asp site where it tells me who is logged in on a specific xp machine.

In other words, how can I retreive the logged in username on a remote xp machine by asp .net code?

View 4 Replies

Web Forms :: Upload File Into Remote Machine With FileUpload Control?

Dec 7, 2010

My project is running with VSS..I have it's IP Address to connect it. There is a folder "DataShare" in VSS for my project. My task is, i need to upload a document(*.doc) from my Local drive to VSS Folder "DataShare" with FileUpload Control How should i do this?

View 2 Replies

Running Shell Scripts On A Remote Machine From Winforms Application?

Sep 30, 2010

I have some shell scripts on a Windows 2003 server. These scripts process some flat files and upload data to Oracle using sqlldr. Currently I'm using telnet to go into the box and run each of these scripts manually. Is there a way that these scripts can be run from a ASP.Net/Winforms application?

View 1 Replies

SQL Server :: Connecting To A Remote Database Located On A Virtual Machine On The Same PC?

Dec 22, 2010

I have a project that must illustrate that connection to the database is not locally, so I have install VirtualBox and I intend to install SQL Server on it. So any one have the idea of how can I connect from the Host Machine to the SQL Server located on the Virtual Machine

View 3 Replies

Accessing Remote Servers Details?

Sep 6, 2010

How can I access remote server's details like RAM details, CPU details etc with a ASP.NET application. I used System.Management class and wmi but the application runs too slow. Is there any another way to do this which is fast and efficient.

View 4 Replies

Accessing Remote Files From Web Service?

Jul 15, 2010

My web service needs to open some files located on a remote computer.

From Windows I can do the authentication so I can see those files using the File Explorer.

If I try to open the files from my Web Service while it's running using Visual Studio (ASP.NET Development Server) it also works.

However, if I do everything from IIS it doesn't.In order to find out where is the problem what I did was to run a network sniffer and I found out that when using IIS, the system will try to use the account 'ASPNET' to login into those remote computers which will obviously fail.

However this doesn't happen if I run from the IDE (Using the ASP.NET Development Server)I found out that if I use Impersonation for accessing this it will work, the problem is I need to have the same account names on the computer running IIS so I would rather not to do that.

Why is it working from the ASP.NET Development Server and not from IIS? Is there a way to give full access to the ASPNET account?

View 1 Replies

Web Forms :: Get Machine Name Of User Accessing Website

Dec 16, 2012

Dim sWindowUser As String = ""sWindowUser = ExtractPureUsername(WindowsIdentity.GetCurrent().Name)
and
sWindowUser = ExtractPureUsername(HttpContext.Current.Request.ServerVariables("AUTH_USER"))

It ran properly in my development environment and I deployed it onto my 2008 server.  The web site keep promoting me for user windows username and password.  I entered my username & password but the site keep prompting me over and over again.

In server side I didn't the Local Machine name.

View 1 Replies

SQL Reporting :: Accessing Report Server From Client Machine?

Nov 11, 2010

We've deployed some reports from a server machine which can be accessed without any problems if you are logged onto the server itself by going to the URL of http://servername/ReportServer. However if we try and access the reports from a client machine (even if we use the same administrator Windows account) we get the Windows security window appear asking for a Username and Password to be entered in order to connect to the server. We've tried entering this but we then just get a blank screen after being re prompted a few times to enter the details.

Now I'm not sure whether this will be a Reporting Services or a Windows issue. Could it be a setting within IIS? It can't really be a user thing as the same user works on the server but not on the Client machine so it's more of a machine problem. It's as if there are some authentication settings somewhere that need to be set.

We are using SQL Server 2008 on Windows 7.

View 1 Replies

Configuration :: How To A Give Remote Server Account Read / Write Permissions On Local Machine

Oct 25, 2010

I'm using VS2010 and need to give my remote server asp .net account (IUSR_istereos) access to my local intpub folder

how do I do that?

View 5 Replies

Authentication Failed When Accessing Remote Drive From Web Service?

Sep 30, 2010

I have installed a web service in a client machine, its accessing a mapped network drive from a remote machine. But when its trying to read files from that file I'm getting this error

Code:

Message:
Authentication failed
Description:
QBWC1012: Authentication failed due to following error message.
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.IO.IOException: Logon failure: unknown user name or bad password.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path, String searchPattern, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path, String searchPattern)
at WCWebService.WCWebService.authenticate(String strUserName, String strPassword) in C:inetpubwwwrootinvoicecreatews codeinvoicecreatewsWCWebService.asmx.cs:line 463
--- End of inner exception stack trace --- See QWCLog for more details. Remember to turn logging on.

I have supplied user crendentials also, the same web service working in another machine with the same mapped drive with the same user credentials. Manually I can map the drive using the credentials which I'm passing thru the application.

View 3 Replies

Web Forms :: Accessing Image File In Local Machine From Server?

Sep 14, 2010

i have a .JPG file in my local machine which has to be sent as body of SMTP mail.Path of image D://foldername//imagename.jpg The code I run is in the server mc. I want it to access my local machine's d: folder to get the image file. But it is accessing the server mc's d: folder. How can this be done?

View 3 Replies

Security :: Authentication Fails While Accessing The Application From Remote Server?

Mar 21, 2011

While running an app from the server where it is deployed the website works fine, however when trying to access it from a different machine(placed in same network), using the same credentials, it shows that I am not an authenticated user.

[code]....

View 13 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved