如何使用 WSDL 实用程序生成的 JavaScript 类?

发布于 2025-01-03 23:00:20 字数 1162 浏览 0 评论 0 原文

我使用 Visual Studio 的 WSDL 实用程序从 WSDL 生成 JavaScript 中的类。

wsdl /o:SomeClasses.js /l:js https://SomeCompany.com/SomeService?WSDL

输出包含如下所示的类(在 JavaScript 中):

public System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.0.30319.1") System.SerializableAttribute() System.Diagnostics.DebuggerStepThroughAttribute() System.ComponentModel.DesignerCategoryAttribute("code") System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:some.company") 
class SomeUser {
    private var domainNameField : System.String;
    private var userNameField : System.String;

    ///<remarks/>
    public final function get domainName() : System.String {
        return this.domainNameField;
    }
    public final function set domainName(value : System.String) {
        this.domainNameField = value;
    }

    ///<remarks/>
    public final function get userName() : System.String {
        return this.userNameField;
    }
    public final function set userName(value : System.String) {
        this.userNameField = value;
    }
}

Is it possible to write OOP JavaScript 利用这些类?如果是的话,语法、示例等是什么?

I generated classes in JavaScript from a WSDL by using Visual Studio's WSDL utility.

wsdl /o:SomeClasses.js /l:js https://SomeCompany.com/SomeService?WSDL

The output contains classes (in JavaScript) that look like this:

public System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.0.30319.1") System.SerializableAttribute() System.Diagnostics.DebuggerStepThroughAttribute() System.ComponentModel.DesignerCategoryAttribute("code") System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:some.company") 
class SomeUser {
    private var domainNameField : System.String;
    private var userNameField : System.String;

    ///<remarks/>
    public final function get domainName() : System.String {
        return this.domainNameField;
    }
    public final function set domainName(value : System.String) {
        this.domainNameField = value;
    }

    ///<remarks/>
    public final function get userName() : System.String {
        return this.userNameField;
    }
    public final function set userName(value : System.String) {
        this.userNameField = value;
    }
}

Is it possible to write OOP JavaScript utilizing these classes? If so, what is the syntax, examples, etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始终不够 2025-01-10 23:00:20

当您为 Web 服务描述指定 JS 语言时语言工具您指定的不是 JavaScript,而是 JScript。 InternetExplorer 甚至不能完全理解 JScript,而是 JScript.NET

JScript.NET 是一种基于 JScript 的服务器端脚本语言,但具有附加功能 - 仅在服务器端可用 - 例如 class 您在发布的代码中获得了该类。

您应该寻找其他生成 JavaScript 代码的方法,也许可以使用 Wsdl2js< /a> 或 使用 JQuery 执行 WS 调用。您不能在 InternetExplorer 中使用 Wsdl.exe 生成的代码,因为 InternetExplorer 仅支持旧的 JScript 语言(非 IE 浏览器甚至不支持)。

When you specify the JS language for the Web Services Description Language Tool, you are NOT specifying JavaScript, but JScript. It's not even JScript that InternetExplorer can fully understand, it's JScript.NET.

JScript.NET is a server side scripting language based on JScript but with added features - available only on the server side - like the class you've got in the code you posted.

You should look for other ways of generating JavaScript code, maybe with a tool like Wsdl2js or performing your WS call with JQuery. You can't use the Wsdl.exe generated code inside InternetExplorer as InternetExplorer only supports the old JScript language (and non IE browsers don't even support that).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文