如何从 Silverlight 4 浏览器应用程序获取客户端 IP 地址?
我想知道 Silverlight 4 浏览器应用程序的 IP 地址是什么。这将是互联网上的 IP 地址,而不是 LAN IP。我正在与 WCF 服务通信,该服务不是由 IIS 托管,而是由我自己的 Windows 服务托管。
I would like to know what the ip address of a Silverlight 4 out of browser application. This would be the ip address that is on the internet, not the LAN ip. I am communicating with a WCF service that is NOT hosted by IIS but by my own Windows service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说最好的方法是将请求发送到一个非常愚蠢的 Web 服务,其唯一的工作就是返回请求者的 IP 地址。
不过,它是异步的,因此根据您的场景,这可能不太好。当然,如果 IP 地址发生变化(例如 DHCP 更新),那么您将不知道是否需要再次询问。
为什么要知道客户端IP地址?也许有一种方法可以解决您的问题,而无需知道它。
I'd say the best way is to send a request off to a really dumb web service whose sole job is to return the IP address of the requester back.
It'd be async, though, so that may not be great depending on your scenario. And of course if the IP address changed (DHCP renewed, say) then you wouldn't know to go ask again.
Why do you want to know the client IP address? Maybe there's a way to solve your problem without needing to know it.