繁体   English   中英

SOAP Web服务上传文件

[英]SOAP webservice upload a file

我已经生成了一个存根文件,并尝试为该请求准备客户端... Web服务实际上将文件作为附件。 将文件附加到请求。

package services.attachment.v1;

import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.9-b130926.1035
 * Generated source version: 2.2
 * 
 */
@WebServiceClient(name = "FileAttachmentService_vs0_ext", targetNamespace = "http://t.com/services/Attachment/v1.0", wsdlLocation = "https://sso-test.t.com/soatest/FileAttachmentService?wsdl")
public class FileAttachmentServiceVs0Ext
    extends Service
{

    private final static URL FILEATTACHMENTSERVICEVS0EXT_WSDL_LOCATION;
    private final static WebServiceException FILEATTACHMENTSERVICEVS0EXT_EXCEPTION;
    private final static QName FILEATTACHMENTSERVICEVS0EXT_QNAME = new QName("http://t.com/services/Attachment/v1.0", "FileAttachmentService_vs0_ext");

    static {
        URL url = null;
        WebServiceException e = null;
        try {
            url = new URL("https://sso-test.t.com/soatest/FileAttachmentService?wsdl");
        } catch (MalformedURLException ex) {
            e = new WebServiceException(ex);
        }
        FILEATTACHMENTSERVICEVS0EXT_WSDL_LOCATION = url;
        FILEATTACHMENTSERVICEVS0EXT_EXCEPTION = e;
    }

    public FileAttachmentServiceVs0Ext() {
        super(__getWsdlLocation(), FILEATTACHMENTSERVICEVS0EXT_QNAME);
    }

    public FileAttachmentServiceVs0Ext(WebServiceFeature... features) {
        super(__getWsdlLocation(), FILEATTACHMENTSERVICEVS0EXT_QNAME, features);
    }

    public FileAttachmentServiceVs0Ext(URL wsdlLocation) {
        super(wsdlLocation, FILEATTACHMENTSERVICEVS0EXT_QNAME);
    }

    public FileAttachmentServiceVs0Ext(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, FILEATTACHMENTSERVICEVS0EXT_QNAME, features);
    }

    public FileAttachmentServiceVs0Ext(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public FileAttachmentServiceVs0Ext(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
        super(wsdlLocation, serviceName, features);
    }

    /**
     * 
     * @return
     *     returns AttachmentWS
     */
    @WebEndpoint(name = "FileAttachmentService_vs0_ext_port")
    public AttachmentWS getFileAttachmentServiceVs0ExtPort() {
        return super.getPort(new QName("http://t.com/services/Attachment/v1.0", "FileAttachmentService_vs0_ext_port"), AttachmentWS.class);
    }

    /**
     * 
     * @param features
     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
     * @return
     *     returns AttachmentWS
     */
    @WebEndpoint(name = "FileAttachmentService_vs0_ext_port")
    public AttachmentWS getFileAttachmentServiceVs0ExtPort(WebServiceFeature... features) {
        return super.getPort(new QName("http://t.com/services/Attachment/v1.0", "FileAttachmentService_vs0_ext_port"), AttachmentWS.class, features);
    }

    private static URL __getWsdlLocation() {
        if (FILEATTACHMENTSERVICEVS0EXT_EXCEPTION!= null) {
            throw FILEATTACHMENTSERVICEVS0EXT_EXCEPTION;
        }
        return FILEATTACHMENTSERVICEVS0EXT_WSDL_LOCATION;
    }

}

不建议使用Web服务上载文件。 Web服务的基本目的是将小型数据传递给远程计算机进行处理。 因此,在大数据的情况下,您的Web服务可能会惨败并导致客户端异常。

感谢您,

Bhavin Shah

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM