Web Forms :: Ping All The Network Machines And Get Status?

May 7, 2010

i have a forms application which pings all the network machines. this works fine and also returns the status of each machine i.e. sucess, timeout etc. however i also want to get the name of the remote machines so i use this code:

[Code]....

the above code works fine however any exception is given when the remote machine is a mac. the exception is:

[Code]....

how can i counter the exception so that it simply ignores the exception and carries on the for loop for the other machines.

View 3 Replies


Similar Messages:

Databases :: Database Running Status Using Ping?

Feb 12, 2011

I want to test the Oracle and SQL servers running are Up or Down. Currently, I am using the following way to check the connection.. for example Oracle connection as ..

Dim cn As OracleConnection
cn = New OracleConnection(ConnStr)
cn.Open()

This is working fine. But, is there any other way to check the DB up status like Ping.

View 1 Replies

How To Get IP List Of A Client Machines In A Network

Nov 25, 2010

How to get IP list of a client machines in a network

View 1 Replies

IIS Configuration :: Website Is Accessible On Local But Not On Other Machines On LAN Network

Mar 9, 2013

I have hosted my website in iis in windows xp.

When i entered the ip address in my system, it works fine but when i tried it in other machine, it is not working. It leaves me Connection Time Out Error.

View 1 Replies

Web Forms :: Ping An Ip Address Entered In A Textbox?

Sep 1, 2010

i want to ping an ip address that the user (of my web site) enters in a text box.i have placed a link button , next to that textbox ,on whose click event i want to start the ping command...does ne1 has ne idea how this can be done??

View 3 Replies

Security - Accessing Network Folder With Network Service Account

Aug 17, 2010

My ASP.NET MVC 2 application runs under built-in local NETWORK SERVICE account. I want to set up access permissions for the folder which resides in another computer, but in the same domain. I located that folder right-clicked to open its properties form, clicked to Security tab and pressed Add button which displayed Add user form with correct domain name in the location field. I referred to the account with following syntax:

<domain name><server name>$

because I learned that NETWORK SERVICE account uses machine account when connected to other computers in the domain. However, the system couldn't find the account, so refuses to add the account. Without the domain name it adds a user, but that user seems to be local user, not web server's NETWORK SERVICE account. What am I doing wrong?

By the way, the above syntax worked when I created login for the sql server which is different computer from the web server.

View 2 Replies

WCF / ASMX :: Error While Trying To Ping The Webservice?

Feb 21, 2011

<error>There was a problem retrieving the data. Please Press F5 or hit the browser refresh button to reattempt1.System.Web.Services.Protocols.SoapException:
Server was unable to process request. ---> MS.IT.OperationsServices.ROQ.Out.Utils.CustomException: An Internal Error has Occured. Please Contact ROQOut Support with Context Id Context Id: 82faeaff-7269-4d51-805e-b854491a68a9
at ReleaseService.GetMyReleaseStatus(String impersonatedUserAlias, DateTime startDate, DateTime endDate)
--- End of inner exception stack trace

----Source--System.Web.Services--Trace-- at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage
message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at ROQOutWebService.ReleaseService.GetMyReleaseStatus(String impersonatedUserAlias, DateTime startDate, DateTime endDate)
at MyReleaseDashboard.GetMyReleaseStatus(Int32 days)</error>

View 5 Replies

C# - Ping A URL Every 15 Minutes And Get A Response Back From The Server?

Nov 19, 2010

is there a way in c# to be able to ping a url every 15 minutes and get a response back from the server?

i want to try to see if .net can be used to build a simple tool to have asp.net websites invoke a re-build so that the first user doesn't incur the load penalty when the application is started.

View 7 Replies

WCF / ASMX :: Can't Read Ping Response From Webservice

Nov 19, 2010

[Code]....

IN:

<soap:Envelope>
<soap:Body>
<testPing>
<apiKey>XDYYBE6Y336S3F</apiKey>
</testPing>
</soap:Body>
</soap:Envelope>

OUT:

<soap:Envelope>
<soap:Body>
<testPingResponse>
<pong>
<message>It works!</message>
</pong>
</testPingResponse>
</soap:Body>
</soap:Envelope>

View 3 Replies

C# - Ping To Stored Procedure To Know Execution Completed In .net?

Jul 27, 2010

I have to execute a stored procedure. When I execute that, I have to keep on check (ping) whether that execution is completed or not. The I will update a label.

Do we have any way in c# to do that?

View 2 Replies

Web Forms :: Webform Page Does'nt Get Refreshed On Some Machines?

Jul 23, 2010

I have tweaked some button colors on a webform after updating those pages on server where iis is.From my local machine i can see the updated colors of button.But in some of the other users machines they still see the old webform.even though they refresh there IE.but when they use firefox they can see the new changes.What is wrong with IE, even after deleting cache still it is showing old webform.

View 3 Replies

Web Forms :: Get Client Machines Installed Printers Name?

Jun 6, 2013

I am developing a web application in vs.net 2010 using asp.net 4.0 in c# and using IIS. Application is running success fully in local host and server. when run application without IIS in local host then I get all printer name ( installed and also not installed).

but the problem is that when I run application with IIS in server then application running successfully but I am not able to add printer name in drop down list of client computer.

View 1 Replies

Web Forms :: Website With Custom Font Not Looking Good On Other Machines?

Jun 21, 2013

i made website on c# and font used is "Myriad Web Pro", On my system it looks fine. but when i browse my website on another machine its font changed and looks different, how to sort this problem.

View 1 Replies

Web Forms :: Allow Only Specific IP Address Client Machines To Access Web Application On LAN

Jul 19, 2012

 How can I access the web application from paticular client machine based on ip address of client Machilne.

View 1 Replies

Setting Response / Status Generates "HTTP Status String Is Not Valid" Exception?

Jan 9, 2011

I'm writing an HTTP handler in ASP.NET 4.0 and IIS7 and I need to generate a file-not-found condition.

I copied the following code from Mathew McDonald's new book, Pro ASP.Net 4 in C# 2010. (The response variable is an instance of the current HttpResponse.)

response.Status = "File not found";
response.StatusCode = 404;

However, I found that the first line generates the run-time error HTTP status string is not valid.

If, instead of the lines above, I use the following:

response.Status = "404 Not found";

Then everything seems to work fine. In fact, I even see that response.StatusCode is set to 404 automatically.

My problem is that I don't want this to fail on the production server. So I'd feel much better if I could understand the "correct" way to accomplish this. Why did the first approach work for Mathew McDonald but not for me? And is the second approach always going to be reliable?

View 1 Replies

Application Accessible To Other Machines?

Mar 30, 2011

I have application..its runnning on my localhost.. i need one more machine to access that application.. but when in tht link i type my IP address instead of localhost.. it showing cannot find server.. in orderr to access appplication to other machine.. as such there is no UAT server as of now...

View 2 Replies

Different DateTimeFormat For The Same Culture In Different Machines?

Mar 31, 2011

I'm having a problem when I deploy my web application in different servers. There seems to be an inconsistency in some DateTimeFormat patterns, like ShortDatePattern, using the same culture (pt-BR).

In my development machine (Windows 7, .NET 4 installed, application targeting .NET 3.5) and a Windows Server 2008 R2 (with the application targeting .NET 4) server the ShortDatePattern is "dd/MM/yyyy" - which is the correct, I guess.

In the production server (Windows Server 2003, using .NET 3.5) it is "d/M/yyyy". It is causing me tons of trouble.

I could solve the issue by setting the patterns by hand, but I'd really like to avoid doing this every time I need to output a date. Specially since this will be non-trivial in many places (like where I use MVC's Html.TextBoxFor) and will require a good amount of rewriting.

If there's a way of changing the patterns for the entire web application in one place it would be great. I've tried the following approach in the Global.asax.cs file, with no success:

CultureInfo info = new CultureInfo(System.Threading.Thread.CurrentThread.CurrentCulture.ToString());
info.DateTimeFormat.ShortDatePattern = "dd/MM/yyyy";
System.Threading.Thread.CurrentThread.CurrentCulture = info;

View 2 Replies

Controls Are Not Displayed On Certain Client Machines

Dec 9, 2010

I have a website that uses the ajax control toolkit targeting 3.5. We use tabs control on a few pages. On some client computers the tab control is not displayed. It doesn't collapse the are like it has a placeholder for the control but nothing shows up. No error message is given. Has anyone experienced similar problems.

View 2 Replies

Establish Trust Between IIS And SQL Server On Different Machines?

Nov 12, 2010

I have a .net web app hosting in IIS6 with Windows Authentication and anonymous access disabled. The web app is making connection to a SQL Server that is in the same domain, but on a different machine.

I want to have the IIS Worker process acount I_USR_... to be granted access to the SQL Server.

Will this work ?

(Is there a one to one trust ? Or should I make some extra effort to make the trust work ?)

(edit) On this page I read:

IUSR_ must be in the domain, and given proper access to the SQL Server; or, you must disable anonymous access on the site / application - which will allow IIS to pass the users' credentials to SQL Server. Not doing either of these things will result in an error.

View 5 Replies

Events Only Firing On Specific Machines But Not On Others?

Nov 10, 2010

I have been trying to solve this problem for several weeks now and it is getting really frustrating. Basically i have a simple project which includes one master page and one content page. the following code is what is found in the content page

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">

[code]...

View 1 Replies

Editing Visual Studio MVC Project Across Different Machines?

May 28, 2010

I have Visual Studio 2008 SP1 and ASP.NET MVC 2 (not the RC) installed on 2 computers, one at home and one at work which allows me to work on the same projects (via a synced dropbox account) in both locations.I've recently started with ASP.NET MVC and I've noticed that the projects I create at work won't compile at home (haven't tried it in reverse yet), citing the UrlParameter on line 22 and AreaRegistration on line 29 of the default Global.asax file as having a missing reference.I've checked the using System.Web.Mvc statement is in place and that the reference exists in the project references folder in solution explorer. I've looked in the object browser as well and I can see that my work machine shows the System.Web.Mvc.UrlParameter but my home machine doesn't.I've created a brand new Web MVC project on my home computer and the object in object browser is there, everything compiles and runs fine.

View 3 Replies

Display Images In Local Machines From A Web Server

Oct 11, 2010

My question is about accessing local machines' files from a webserver.. I have an intranet project that works on my network.. My project is about accessing the other local machines,then displaying images from that machines.. For example my project is working on 192.168.9.170...when enter the site..it can be displayed lots of images from local machines..for example an image of them src path is:192.168.9.180, one of them is 192.168.9.181.. So,i want to publish this project on web.Can i access local machines from webserver..how can i map that machines

View 1 Replies

SQL Reporting :: SSRS Print On Client Machines?

Oct 15, 2010

Initially after deploying SSRS 2005 report on server, the client machine could not avail print functionality because of the error "Unable to load client print control". Inspite of allowing ActiveX installation, the print functionality was not working. Googling on this issue I found that rsclientprint.dll needs to be registered in C:Windowssystem32.successfully registering this dll, print functionality started working on some machines. However on some machines it started giving the error 'Error loading resource library.(0x8007007E)'.

View 1 Replies

Configuration :: Best Way To Deploy Our Web Software Onto Client Machines?

Sep 8, 2010

We have a peice of software

2 websites
1 service
1 scheduled task

And we deploy it onto customer machines. The application calls various .exe files on the the machine. We sometimes get permissions issues and we were wondering what the reccomendations are for deploying web apps in this way. Should we be telling our customers to leave the app out of the domain until we install our software and have it all up and running?Are there any articles that would go over permissions and how c# and asp.net interract with the machine?

View 2 Replies

Security :: Restricting User Login On Multiple Machines?

May 12, 2010

I am working on asp.net , I want to restrict a user to login in his acount from multiple locations or machines.

If one user is already login , I want to restrict it and display message that you are already login somewhere.

View 3 Replies







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