vote up 2 vote down star

is there a way to get ip address of client in silverlight if my silverlight control is hosted in html.?

flag

2 Answers

vote up 2 vote down check

As far as I know there are no direct ways to do this. May be you can create a WebMethod to achieve this. Or some other tricks.

Check this thread, there are some suggestions: http://silverlight.net/forums/t/34744.aspx

link|flag
yep! i knew about webservice method idea.... but i thought may be there is any other workaround.... – Usman Masood May 13 at 14:50
No direct work around in my knowledge. – NinethSense May 13 at 15:16
But what is your opnion why this is a limitation in silverlight? – Usman Masood May 14 at 5:45
vote up 0 vote down

Try the methods listed below (first one should usually do the trick), or see here for more info.

Request.ServerVariables(”REMOTE_HOST”)
HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]
HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
Request.UserHostAddress()
Request.UserHostName()
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress = System.Net.Dns.GetHostAddresses(strHostName).GetValue(0).ToString();
link|flag
this is not for html.. its parameter passing in case of Asp.net.. this is not possible from HTML to my knowledge – Usman Masood May 14 at 5:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.