gpt4 book ai didi

java - Web 服务请求所需的 Java 类是什么数据类型?

转载 作者:行者123 更新时间:2023-12-01 13:38:51 25 4
gpt4 key购买 nike

我正在使用 Netbeans IDE,并且正在从 wsdl 文件创建 Webservivece 客户端。

Netbeans 已创建所有类,我已将 webservice 引用插入到 jsp 页面,并且 Netbeans 已生成以下代码:

<% 
try {
com.businessobjects.DataServicesServer service = new com.businessobjects.DataServicesServer();
com.businessobjects.RealTimeServices port = service.getRealTimeServices();
// TODO initialize WS operation arguments here
com.businessobjects.service.postcodelookup.input.PostcodeLookupRequest inputBody = null;
// TODO process result here
com.businessobjects.service.postcodelookup.output.PostcodeLookupReply result = port.postcodeLookup(inputBody);
out.println("Result = "+result);
} catch (Exception ex) {
// TODO handle custom exceptions here
}
%>

从这段代码中,我了解到我需要为“inputBody”设置一个值(当前默认设置为 null),但我不知道要使用什么数据类型。

这里是 PostcodeLookupReply.class 的代码

package com.businessobjects.service.postcodelookup.input;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="postcode">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;maxLength value="7"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"postcode"
})
@XmlRootElement(name = "postcodeLookupRequest")
public class PostcodeLookupRequest {

@XmlElement(required = true)
protected String postcode;

/**
* Gets the value of the postcode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostcode() {
return postcode;
}

/**
* Sets the value of the postcode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostcode(String value) {
this.postcode = value;
}

}

需要传递给“inputBody”的值将从 URL 字符串的参数值创建。我只需要知道什么以及如何转换它,以便它被类(class)接受。

任何帮助将不胜感激。

谢谢

最佳答案

这将是一个新的 PostcodeLookupRequest(),并在该实例上调用 setPostCode 方法。

关于java - Web 服务请求所需的 Java 类是什么数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21017782/

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