WSH TCP 服务器可以吗?
我想在Windows上使用WSH jscript编写一个脚本,由jsc编译。
我希望该脚本充当一个非常简单的 TCP 服务器,侦听指定的任何端口,并在收到任何请求时发送文本字符串。
我发现一些实现依赖于一个库,该库似乎只能在安装了开发人员软件的 Windows 计算机上使用。我需要一个可以在任何 Windows 计算机(安装了 .NET)上运行的实现。如果有一个 dll 可以帮助侦听 tcp 套接字,我很高兴包含一个 dll。
有没有合适的dll来充当tcp服务器?
jscript中是否有可以用jsc编译的tcp服务器实现?
I want to write a script on windows using WSH jscript to be compiled by jsc.
I want the script to act as a very simple tcp server, listening to any port specified, and sending a text string upon receiving any request.
I have found some implementations which depend on a library that seems to only be available on windows machines with developer software installed. I need an implementation that can work on any windows machine (with .NET installed). I am happy to include a dll if there is one that can help to listen on tcp sockets.
Is there a suitable dll to act as a tcp server?
Is there a tcp server implementation in jscript that can be compiled with jsc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您正在谈论 JScript.NET,它与 WSH 是分开的。由于 JScript.NET 是一种 CLR 语言,因此您可以使用任何可用的 .NET Framework 类。最好的选择可能是找到一个用 C# 或 VB.Net 编写的 TCP 服务器示例,然后将代码转换为 JScript.NET。
It sounds like you're talking about JScript.NET, which is separate from WSH. Since JScript.NET is a CLR language, you can use any of the available .NET Framework classes. Your best bet may be to find an example of a TCP server written in C# or VB.Net and then convert the code to JScript.NET.