⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fundpricesessionfacadesoapbindingstub.java

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JAVA
字号:
/**
 * FundPriceSessionFacadeSoapBindingStub.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.2beta3 Aug 01, 2004 (05:59:22 PDT) WSDL2Java emitter.
 */

package com.fund.fund;

/**
 *
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class FundPriceSessionFacadeSoapBindingStub
        extends org.apache.axis.client.Stub
        implements com.fund.fund.FundPriceSessionFacade_Port {
    /**
     * cachedSerClasses
     */
    private java.util.Vector cachedSerClasses = new java.util.Vector();
    /**
     * cachedSerClasses
     */
    private java.util.Vector cachedSerQNames = new java.util.Vector();
    /**
     * cachedSerFactories
     */
    private java.util.Vector cachedSerFactories = new java.util.Vector();
    /**
     * cachedDeserFactories
     */
    private java.util.Vector cachedDeserFactories = new java.util.Vector();

    /**
     * _operations
     */
    static org.apache.axis.description.OperationDesc[] _operations;

    /**
     * init
     */
    static {
        _operations = new org.apache.axis.description.OperationDesc[1];
        _initOperationDesc1();
    }

    /**
     * _initOperationDesc1
     */
    private static void _initOperationDesc1() {
        org.apache.axis.description.OperationDesc oper;
        oper = new org.apache.axis.description.OperationDesc();
        oper.setName("getCurrentPrice");
        oper.addParameter(new javax.xml.namespace.QName("", "fundNo"),
                          new
                          javax.xml.namespace.QName(
                              "http://www.w3.org/2001/XMLSchema",
                "int"), int.class,
            org.apache.axis.description.ParameterDesc.IN, false, false);
        oper.setReturnType(new javax.xml.namespace.QName(
                "http://www.w3.org/2001/XMLSchema", "double"));
        oper.setReturnClass(double.class);
        oper.setReturnQName(new javax.xml.namespace.QName("",
                "getCurrentPriceReturn"));
        oper.setStyle(org.apache.axis.enum.Style.RPC);
        oper.setUse(org.apache.axis.enum.Use.ENCODED);
        _operations[0] = oper;

    }

    /**
     *
     * @throws org.apache.axis.AxisFault e
     */
    public FundPriceSessionFacadeSoapBindingStub()
            throws org.apache.axis.
            AxisFault {
        this(null);
    }

    /**
     *
     * @param endpointURL URL
     * @param service Service
     * @throws org.apache.axis.AxisFault e
     */
    public FundPriceSessionFacadeSoapBindingStub(java.net.URL endpointURL,
                                                 javax.xml.rpc.Service service)
            throws
            org.apache.axis.AxisFault {
        this(service);
        super.cachedEndpoint = endpointURL;
    }

    /**
     *
     * @param service Service
     * @throws org.apache.axis.AxisFault e
     */
    public FundPriceSessionFacadeSoapBindingStub(javax.xml.rpc.Service service)
            throws
            org.apache.axis.AxisFault {
        if (service == null) {
            super.service = new org.apache.axis.client.Service();
        } else {
            super.service = service;
        }
    }

    /**
     *
     * @return Call
     * @throws java.rmi.RemoteException e
     */
    private org.apache.axis.client.Call createCall() throws java.rmi.
            RemoteException {
        try {
            org.apache.axis.client.Call _call =
                    (org.apache.axis.client.Call) super.service.createCall();
            if (super.maintainSessionSet) {
                _call.setMaintainSession(super.maintainSession);
            }
            if (super.cachedUsername != null) {
                _call.setUsername(super.cachedUsername);
            }
            if (super.cachedPassword != null) {
                _call.setPassword(super.cachedPassword);
            }
            if (super.cachedEndpoint != null) {
                _call.setTargetEndpointAddress(super.cachedEndpoint);
            }
            if (super.cachedTimeout != null) {
                _call.setTimeout(super.cachedTimeout);
            }
            if (super.cachedPortName != null) {
                _call.setPortName(super.cachedPortName);
            }
            java.util.Enumeration keys = super.cachedProperties.keys();
            while (keys.hasMoreElements()) {
                java.lang.String key = (java.lang.String) keys.nextElement();
                _call.setProperty(key, super.cachedProperties.get(key));
            }
            return _call;
        } catch (java.lang.Throwable _t) {
            throw new org.apache.axis.AxisFault(
                    "Failure trying to get the Call object", _t);
        }
    }

    /**
     *
     * @param fundNo int
     * @return double
     * @throws java.rmi.RemoteException e
     */
    public double getCurrentPrice(int fundNo)
            throws java.rmi.RemoteException {
        if (super.cachedEndpoint == null) {
            throw new org.apache.axis.NoEndPointException();
        }
        org.apache.axis.client.Call _call = createCall();
        _call.setOperation(_operations[0]);
        _call.setUseSOAPAction(true);
        _call.setSOAPActionURI("");
        _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.
                             SOAP11_CONSTANTS);
        _call.setOperationName(new javax.xml.namespace.QName(
                "http://fund.fund.com", "getCurrentPrice"));

        setRequestHeaders(_call);
        setAttachments(_call);
        java.lang.Object _resp = _call.invoke(new java.lang.Object[] {new java.
                                              lang.Integer(fundNo)});

        if (_resp instanceof java.rmi.RemoteException) {
            throw (java.rmi.RemoteException) _resp;
        } else {
            extractAttachments(_call);
            try {
                return ((java.lang.Double) _resp).doubleValue();
            } catch (java.lang.Exception _exception) {
                return ((java.lang.Double) org.apache.axis.utils.JavaUtils.
                        convert(_resp, double.class)).doubleValue();
            }
        }
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -