关于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)


相关推荐

  • python 时间格式(时间戳–格式化时间)的互相转换

    python 时间格式(时间戳–格式化时间)的互相转换

    2021年11月10日
  • python入门教程(非常详细)下载_古典吉他入门零基础

    python入门教程(非常详细)下载_古典吉他入门零基础世界上没有绝对的公平,如果我们起点就比别人第一步,那就更需要比别人努力了。每天比别人努力多一点点,就会有很大的突破。你必须特别努力,才能显得毫不费力。期待你成为理想中的自己那一天,加油!

  • Oracle number类型的语法和用法

    Oracle number类型的语法和用法Oraclenumber类型的语法和用法2012-10-2910:37:08    我来说两句     作者:liwenshui322收藏  我要投稿Oraclenumber类型的语法和用法    number类型的语法很简单,就是:   number(p,s)   p,s都是可选的,假如都不填,p默认为38,s默认为-48~127。

  • 量化投资学习——多因子权重组合优化问题

    量化投资学习——多因子权重组合优化问题关于多因子权重组合优化问题,这里首先整理若干链接供大家参考:pythonoptimize_Python与量化多因子——因子权重优化文章中从常见的因子合成方法,如静态权重,动态权重出发,拓展到了动态权重,介绍了最大化ICIR的缺点,介绍了cvxpy等工具包,包括常见的一些约束问题,文章还举了若干例子,比较好…

  • 解决VMware 15虚拟机桥接模式无法上网 问题

    解决VMware 15虚拟机桥接模式无法上网 问题详细描述解决VMware15虚拟机桥接模式无法上网问题步骤1:查看本地以太网属性是否安装VMwareBridgeProtocol控制面板>>网络和Internet>>网络连接>>以太网右键属性>>查看是否有安装VMwareBridgeProtocol共享网络给虚拟机(有些电脑不用)步骤2:查看VMware虚拟网络编辑器的VMne…

  • html img 能显示psd吗_psd变成html

    html img 能显示psd吗_psd变成html今日小结psd是指经过Photoshop处理过保存后的图片,其格式为psd。这是清除浮动的最常用,最普遍的方法拿到图片将psd变成html代码的步骤如下:1.样式文件和初始化①可以新建三个文件夹。(css,images,js)然后在css下需要建立三个样式,”index,common(公共),reset(重置)”新手比如我,需要这样写,但是熟练以后就不用了js下需要建立(index)这一个样式。(…

发表回复

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

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