gpt4 book ai didi

xml - 如何在 xml 中做一个枚举

转载 作者:数据小太阳 更新时间:2023-10-29 01:56:45 24 4
gpt4 key购买 nike

我有许多请求类型 - 实际上是枚举。

但在我的代码中,这些请求类型是一个枚举:

enum RequestType {
RequestRegister,
RequestUnregister,
etc
};

我目前对 wsdl 文件的尝试如下。但是它使用的是字符串类型。在我的服务器中,我需要从 xml 中提取一个枚举/整数。在字符串上进行查找似乎是糟糕的设计。

那么我如何形成我的 wsdl 文件,以便请求类型是枚举?

<?xml version="1.0" encoding="UTF-8"?>
<definitions name="CubaCTI"
targetNamespace="http://www.iteloffice.com/wsdl/cubacti.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.iteloffice.com/wsdl/cubacti.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<message name="MonitorStartRequest">
<part name="user_name" type="xsd:string" />
<part name="password" type="xsd:string" />
<part name="dn" type="xsd:string"/>
</message>
<message name="MonitorStartResponse">
<part name="errorcode" type="xsd:short"/>
<part name="errormessage" type="xsd:string"/>
</message>

<message name="MonitorStopRequest">
<part name="user_name" type="xsd:string" />
<part name="password" type="xsd:string" />
<part name="dn" type="xsd:string"/>
</message>
<message name="MonitorStopResponse">
<part name="errorcode" type="xsd:short"/>
<part name="errormessage" type="xsd:string"/>
</message>

<message name="MakeCallRequest">
<part name="user_name" type="xsd:string" />
<part name="password" type="xsd:string" />
<part name="dn" type="xsd:string"/>
<part name="destination" type="xsd:string"/>
<part name="userdata" type="xsd:string"/>
</message>
<message name="MakeCallResponse">
<part name="errorcode" type="xsd:short"/>
<part name="errormessage" type="xsd:string"/>
</message>

<message name="ClearConnectionRequest">
<part name="user_name" type="xsd:string" />
<part name="password" type="xsd:string" />
<part name="dn" type="xsd:string"/>
<part name="destinationconnectionid" type="xsd:string"/>
</message>
<message name="ClearConnectionResponse">
<part name="errorcode" type="xsd:short"/>
<part name="errormessage" type="xsd:string"/>
</message>

<portType name="CubaCTIRequests">
<operation name="MonitorStart">
<input message="tns:MonitorStartRequest"/>
<output message="tns:MonitorStartResponse"/>
</operation>
<operation name="MonitorStop">
<input message="tns:MonitorStopRequest"/>
<output message="tns:MonitorStopResponse"/>
</operation>
<operation name="MakeCall">
<input message="tns:MakeCallRequest"/>
<output message="tns:MakeCallResponse"/>
</operation>
<operation name="ClearConnection">
<input message="tns:ClearConnectionRequest"/>
<output message="tns:ClearConnectionResponse"/>
</operation>

</portType>

<binding type="tns:CubaCTIRequests" name="cubactibinding">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />

<operation name="MonitorStart">
<soap:operation soapAction="MonitorStart"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>

<operation name="MonitorStop">
<soap:operation soapAction="MonitorStop"/>
<input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://www.iteloffice.com/cubctirequests"
use="encoded"/>
</input>
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://www.iteloffice.com/cubctirequests"
use="literal"/>
</output>
</operation>

<operation name="MakeCall">
<soap:operation soapAction="MakeCall"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>

<operation name="ClearConnection">
<soap:operation soapAction="ClearConnection"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>


</binding>


<service name="CubaCTI_Service">
<documentation>WSDL File for Cuba CTI services</documentation>
<port binding="tns:cubactibinding" name="CubaCTIRequestsBinding">
<soap:address
location="http://angusnotebook:8080"/>
</port>
</service>
</definitions>

补充说明。

我“被迫”使用 xml,因为客户端只能发送 xml 消息(对此无法控制)。但是我组成了客户端使用的xml。我控制/写入的服务器是用 C++ 编写的,我正在使用 libxml 提取 xml 文件的“部分”。理想情况下,该项目将是一个 int 或枚举。因为我想这样做:

//从 xml 中提取项目 - 到枚举或 int RequestType rqtype = getRequestType();

switch(rqtype) {
case RequestMakeCall:
//do whatever

在上面的例子中,RequestType 是一个枚举。提取字符串值然后必须查找相关的枚举值效率不高。

我看到的所有枚举示例似乎都使用字符串,这看起来很奇怪。

最佳答案

您可以创建自己的类型:

<definitions targetNamespace="http://www.iteloffice.com/wsdl/cubacti.wsdl"
xmlns:tns="Mediaresearch.SimNet.Communication"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema elementFormDefault="qualified"
targetNamespace="http://www.iteloffice.com/wsdl/cubacti.wsdl">
<s:simpleType name="OperatingSystemVersion">
<s:restriction base="s:string">
<s:enumeration value="None" />
<s:enumeration value="WinXp" />
<s:enumeration value="WinVista" />
<s:enumeration value="Win7" />
</s:restriction>
</s:simpleType>
</s:schema>
</types>
<message name="OperatingSystemVersion">
<part name="user_name" type="tns:OperatingSystemVersion" />
</message>
</definitions>

关于xml - 如何在 xml 中做一个枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7365139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com