如何使用 Flex 检索客户端的主机名?
我正在构建一个 Flex 应用程序,它使用 BlazeDS 与 Java 服务器进行通信。
让服务器知道客户端主机名的最佳方法是什么?
谢谢。
I am building a Flex application which communicates with a Java server using BlazeDS.
What would be the best way to go about making the server aware of the client's hostname?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法从 Flex 中确定客户端的主机名,对于 JavaScript 也是不可能的。但是,您可以尝试使用反向 DNS 查找在服务器端查找主机名。
首先,您需要确定客户端的 IP 地址。看看“我可以得到LCDS 服务调用中客户端的 IP 地址?”,了解如何在 BlazeDS 中执行此操作的示例。
为了获取主机名,您需要执行反向 DNS 查找 为 IP 地址。请记住,并非每个 IP 地址都有可以通过反向 DNS 查找确定的主机名。
You can't determine the client's hostname from within Flex and it's not possible with JavaScript either. However, you can try to lookup the hostname on the server side using a reverse DNS lookup.
First, you'll need to determine the client's IP address. Take a look at "Can I get the client's IP address in an LCDS service call?" for an example on how to do it in BlazeDS.
In order to get the hostname you need to execute a reverse DNS lookup for the IP address. Please keep in mind that not every IP address has a hostname that can be determined throug reverse DNS lookups.