HI,
I am getting the following exception is my log file, can any one help me in indentifying the issue?? Is it network issue? or any suggestion , how to proceed
My C# code is trying to ping different severs for information. But getting the following exception.
Server Pingable ==> XYZ
Exception in getting printer details Object reference not set to an instance of an object.
Exception in connectToServer System.Net.NetworkInformation.PingException: An exception occurred during a Ping request. ---> System.Net.Sockets.SocketException: No such host is known
at System.Net.Dns.GetAddrInfo(String name)
at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
at System.Net.Dns.GetHostAddresses(String hostNameOrAddress)
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options)
--- End of inner exception stack trace ---
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options)
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress)
at Connect.connectToServer(String ServerName)
Exception in connectToServer System.Net.NetworkInformation.PingException: An exception occurred during a Ping request. ---> System.Net.Sockets.SocketException: No such host is known
at System.Net.Dns.GetAddrInfo(String name)
at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
at System.Net.Dns.GetHostAddresses(String hostNameOrAddress)
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options)
--- End of inner exception stack trace ---
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options)
at System.Net.NetworkInformation.Ping.Send(String hostNameOrAddress)
at Connect.connectToServer(String ServerName)
Exception in connectToServer System.Net.NetworkInformation.PingException: An except
ravi birlangiPosted Mar 2, 2009, 6:07 AM
Vimal KandasamyPosted Mar 2, 2009, 5:51 AM
ravi birlangiPosted Mar 2, 2009, 5:47 AM
Vimal KandasamyPosted Mar 2, 2009, 5:44 AM
ravi birlangiPosted Mar 2, 2009, 5:40 AM
ravi birlangiPosted Mar 2, 2009, 5:39 AM
Vimal KandasamyPosted Mar 2, 2009, 5:11 AM
Hi,
from ur details it seems the host name given to connect is wrong...make sure hostname you have passed to connect is right.