关于SOAP调用返回对象的写法 wsdl webservice

关于SOAP调用返回对象的写法 wsdl webservice

//调用部分

import java.net.URL;

 

import javax.xml.namespace.QName;

import javax.xml.rpc.ParameterMode;

import javax.xml.rpc.encoding.SerializerFactory;

import javax.xml.rpc.encoding.TypeMapping;

import javax.xml.rpc.encoding.TypeMappingRegistry;

 

import org.apache.axis.client.Call;

import org.apache.axis.client.Service;

import org.apache.axis.encoding.XMLType;

import org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory;

import org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory;

 

import org.apache.axis.message.SOAPHeaderElement;

import javax.xml.soap.SOAPElement;

 

public class SendSMSObjectHB implements Runnable {

    public String phones = null;//13345678901

    public String msg = null;// “object测试”;

 

    public int T_count = 0;

    public int tname = 0;

 

    public void run() {

        // System.out.println(“[TN:”+tname+”] “+T_count);

        long s = System.currentTimeMillis();

        String r = send2Imp(“abc”, “123456”, “1216”, 110, phones, msg);

        long e = System.currentTimeMillis();

        String time = (e – s) / 1000 == 0 ? (e – s) + “毫秒” : (e – s) / 1000

                + “秒” + (e – s) % 1000 + “毫秒”;

        System.out.println(“[TN:” + tname + “] P:” + phones + ” ST->” + time

                + “,R->” + r);

        // System.out.println(“ST->”+time+”,R->”+r );

    }

 

    public static String send2Imp(String sname, String spwd, String scorpid,

            int sprdid, String sdst, String smsg) {

        String ret = null;

        try {

           

            String nameSpace = “http://tempuri.org/”;

            String endPoint = “http://218.56.178.100/sms/service.asmx”;

            Service service = new Service();

            Call call = null;

            call = (Call) service.createCall();

            call.setTargetEndpointAddress(new URL(endPoint));

 

            call.setOperationName(new QName(nameSpace, “g_Submit”));

            call.addParameter(new QName(nameSpace, “sname”),

                    XMLType.XSD_STRING, ParameterMode.IN);

            call.addParameter(new QName(nameSpace, “spwd”), XMLType.XSD_STRING,

                    ParameterMode.IN);

            call.addParameter(new QName(nameSpace, “scorpid”),

                    XMLType.XSD_STRING, ParameterMode.IN);

            call.addParameter(new QName(nameSpace, “sprdid”),

                    XMLType.XSD_STRING, ParameterMode.IN);

            call.addParameter(new QName(nameSpace, “sdst”), XMLType.XSD_STRING,

                    ParameterMode.IN);

            call.addParameter(new QName(nameSpace, “smsg”), XMLType.XSD_STRING,

                    ParameterMode.IN);

 

            call.setReturnType(new javax.xml.namespace.QName(nameSpace,

                    “CSubmitState”));

            call.setReturnClass(CSubmitState.class);

            call.setUseSOAPAction(true);

            call.setSOAPActionURI(nameSpace + “g_Submit”);

             

            call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,

                    Boolean.FALSE);

 

            Object css = call.invoke(new Object[] { sname, spwd, scorpid,

                    sprdid, sdst, smsg });

            System.out.println(“msgid:” + ((CSubmitState) css).getMsgID());

            System.out.println(“state:” + ((CSubmitState) css).getState());

            System.out.println(“reserve:” + ((CSubmitState) css).getReserve());

            System.out

                    .println(“msgstate:” + ((CSubmitState) css).getMsgState());

        } catch (Exception e) {

            e.printStackTrace();

        }

        return ret;

 

    }

 

    public static void main(String[] args) {

        send2Imp(“ABC”, “123456”, “1216”, 110, “15921256333”, “object测试”);

    }

}

 

==========================================================

CSubmitState 返回的对象的写法

======================================================

package com.madhouse;

public class CSubmitState  implements java.io.Serializable {

    private int state;

    private java.lang.String msgID;

    private java.lang.String msgState;

    private int reserve;

    public CSubmitState() {

    }

    public CSubmitState(

           int state,

           java.lang.String msgID,

           java.lang.String msgState,

           int reserve) {

           this.state = state;

           this.msgID = msgID;

           this.msgState = msgState;

           this.reserve = reserve;

    }

    /**

     * Gets the state value for this CSubmitState.

     *

     * @return state

     */

    public int getState() {

        return state;

    }

    /**

     * Sets the state value for this CSubmitState.

     *

     * @param state

     */

    public void setState(int state) {

        this.state = state;

    }

    /**

     * Gets the msgID value for this CSubmitState.

     *

     * @return msgID

     */

    public java.lang.String getMsgID() {

        return msgID;

    }

    /**

     * Sets the msgID value for this CSubmitState.

     *

     * @param msgID

     */

    public void setMsgID(java.lang.String msgID) {

        this.msgID = msgID;

    }

    /**

     * Gets the msgState value for this CSubmitState.

     *

     * @return msgState

     */

    public java.lang.String getMsgState() {

        return msgState;

    }

    /**

     * Sets the msgState value for this CSubmitState.

     *

     * @param msgState

     */

    public void setMsgState(java.lang.String msgState) {

        this.msgState = msgState;

    }

    /**

     * Gets the reserve value for this CSubmitState.

     *

     * @return reserve

     */

    public int getReserve() {

        return reserve;

    }

    /**

     * Sets the reserve value for this CSubmitState.

     *

     * @param reserve

     */

    public void setReserve(int reserve) {

        this.reserve = reserve;

    }

//    private java.lang.Object __equalsCalc = null;

//    public synchronized boolean equals(java.lang.Object obj) {

//        if (!(obj instanceof CSubmitState)) return false;

//        CSubmitState other = (CSubmitState) obj;

//        if (obj == null) return false;

//        if (this == obj) return true;

//        if (__equalsCalc != null) {

//            return (__equalsCalc == obj);

//        }

//        __equalsCalc = obj;

//        boolean _equals;

//        _equals = true &&

//            this.state == other.getState() &&

//            ((this.msgID==null && other.getMsgID()==null) ||

//             (this.msgID!=null &&

//              this.msgID.equals(other.getMsgID()))) &&

//            ((this.msgState==null && other.getMsgState()==null) ||

//             (this.msgState!=null &&

//              this.msgState.equals(other.getMsgState()))) &&

//            this.reserve == other.getReserve();

//        __equalsCalc = null;

//        return _equals;

//    }

//

//    private boolean __hashCodeCalc = false;

//    public synchronized int hashCode() {

//        if (__hashCodeCalc) {

//            return 0;

//        }

//        __hashCodeCalc = true;

//        int _hashCode = 1;

//        _hashCode += getState();

//        if (getMsgID() != null) {

//            _hashCode += getMsgID().hashCode();

//        }

//        if (getMsgState() != null) {

//            _hashCode += getMsgState().hashCode();

//        }

//        _hashCode += getReserve();

//        __hashCodeCalc = false;

//        return _hashCode;

//    }

    // Type metadata

    private static org.apache.axis.description.TypeDesc typeDesc =

        new org.apache.axis.description.TypeDesc(CSubmitState.class, true);

    static {

        typeDesc.setXmlType(new javax.xml.namespace.QName(“http://tempuri.org/”, “CSubmitState”));

        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();

        elemField.setFieldName(“state”);

        elemField.setXmlName(new javax.xml.namespace.QName(“http://tempuri.org/”, “State”));

        elemField.setXmlType(new javax.xml.namespace.QName(“http://www.w3.org/2001/XMLSchema”, “int”));

        elemField.setNillable(false);

        typeDesc.addFieldDesc(elemField);

        elemField = new org.apache.axis.description.ElementDesc();

        elemField.setFieldName(“msgID”);

        elemField.setXmlName(new javax.xml.namespace.QName(“http://tempuri.org/”, “MsgID”));

        elemField.setXmlType(new javax.xml.namespace.QName(“http://www.w3.org/2001/XMLSchema”, “string”));

        elemField.setMinOccurs(0);

        elemField.setNillable(false);

        typeDesc.addFieldDesc(elemField);

        elemField = new org.apache.axis.description.ElementDesc();

        elemField.setFieldName(“msgState”);

        elemField.setXmlName(new javax.xml.namespace.QName(“http://tempuri.org/”, “MsgState”));

        elemField.setXmlType(new javax.xml.namespace.QName(“http://www.w3.org/2001/XMLSchema”, “string”));

        elemField.setMinOccurs(0);

        elemField.setNillable(false);

        typeDesc.addFieldDesc(elemField);

        elemField = new org.apache.axis.description.ElementDesc();

        elemField.setFieldName(“reserve”);

        elemField.setXmlName(new javax.xml.namespace.QName(“http://tempuri.org/”, “Reserve”));

        elemField.setXmlType(new javax.xml.namespace.QName(“http://www.w3.org/2001/XMLSchema”, “int”));

        elemField.setNillable(false);

        typeDesc.addFieldDesc(elemField);

    }

    /**

     * Return type metadata object

     */

    public static org.apache.axis.description.TypeDesc getTypeDesc() {

        return typeDesc;

    }

    /**

     * Get Custom Serializer

     */

    public static org.apache.axis.encoding.Serializer getSerializer(

           java.lang.String mechType,

           java.lang.Class _javaType, 

           javax.xml.namespace.QName _xmlType) {

        return

          new  org.apache.axis.encoding.ser.BeanSerializer(

            _javaType, _xmlType, typeDesc);

    }

    /**

     * Get Custom Deserializer

     */

    public static org.apache.axis.encoding.Deserializer getDeserializer(

           java.lang.String mechType,

           java.lang.Class _javaType, 

           javax.xml.namespace.QName _xmlType) {

        return

          new  org.apache.axis.encoding.ser.BeanDeserializer(

            _javaType, _xmlType, typeDesc);

    }

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/100560.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Linux 文件权限rwx

    Linux 文件权限rwxLinux/Unix的文件调用权限分为三级:文件所有者(Owner)、用户组(Group)、其它用户(OtherUsers)。只有文件所有者和超级用户可以修改文件或目录的权限。可以使用绝对模式(八进制数字模式),符号模式指定文件的权限。使用权限:所有使用者who的符号模式表who 用户类型 说明 u user 文件所有者 g group 文件所有者所在组 o others 所有其他用户 a all .

  • 虚拟机桥接模式连不上网

    虚拟机桥接模式连不上网虚拟机编辑->虚拟网络编辑器查看是否有**VMnet0:对应桥接模式VMnet1:对应NAT模式VMnet8:对应仅主机模式**若没有VMnet0,还原默认设置,之后设桥接模式就能连网了https://blog.csdn.net/Bob_666/article/details/81412242…

  • 操作系统栈溢出检測之ucosII篇

    操作系统栈溢出检測之ucosII篇

  • css 半透明滚动条「建议收藏」

    css 半透明滚动条「建议收藏」::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background:hsl(0,0%,51%);-webkit-box-shadow:none;border-radius:10px;-webkit-box-shadow:none;}::-webki…

  • isNotEmpty 与 isNotBlank的区别「建议收藏」

    isNotEmpty 与 isNotBlank的区别「建议收藏」转自:http://www.zhenhua.org/article.asp?id=625 isNotEmpty将空格也作为参数,isNotBlank则排除空格参数参考QuoteStringUtils方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则

  • gulp pipe缓存_gulp使用教程

    gulp pipe缓存_gulp使用教程首先,gulp的源码里没有任何一部分是定义pipe的。gulp的pipe方法是来自nodejsstreamAPI的。gulp本身是由一系列vinyl模块组织起来的。pipe方法到底是什么呢?pipe跟他字面意思一样只是一个管道例如我有一堆文件var s=gulp.src(["fileA","fileB","fileC"])src方法实际上是’vinyl-fs’模…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号