1

そのため、Java MEクライアントからac#(vs2005)WebサービスへのNetBeans6.5で生成されたWebサービスコードでコンパイルエラーが発生します。私は自分の例を大幅にトリミングしましたが、それでも問題が示されています。コレクションを返すことができないことは、かなりの問題です。

c#Webサービス(SimpleWebService.asmx)

<%@ WebService Language="C#" Class="SimpleWebService" %>

using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;

[WebService(Namespace = "http://sphereinabox.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class SimpleWebService  : System.Web.Services.WebService {

    [WebMethod]
    public CustomType[] GetSomething() {
        return new CustomType[] {new CustomType("hi"), new CustomType("bye")};
    }
    public class CustomType {
        public string Name;
        public CustomType(string _name) {
            Name = _name;
        }
        public CustomType() {
        }
    }
}

WSDL(vs2005によって自動的に生成されます):

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://sphereinabox.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://sphereinabox.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://sphereinabox.com/">
      <s:element name="GetSomething">
        <s:complexType />
      </s:element>
      <s:element name="GetSomethingResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetSomethingResult" type="tns:ArrayOfCustomType" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="ArrayOfCustomType">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="unbounded" name="CustomType" nillable="true" type="tns:CustomType" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="CustomType">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
        </s:sequence>
      </s:complexType>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetSomethingSoapIn">
    <wsdl:part name="parameters" element="tns:GetSomething" />
  </wsdl:message>
  <wsdl:message name="GetSomethingSoapOut">
    <wsdl:part name="parameters" element="tns:GetSomethingResponse" />
  </wsdl:message>
  <wsdl:portType name="SimpleWebServiceSoap">
    <wsdl:operation name="GetSomething">
      <wsdl:input message="tns:GetSomethingSoapIn" />
      <wsdl:output message="tns:GetSomethingSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="SimpleWebServiceSoap" type="tns:SimpleWebServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetSomething">
      <soap:operation soapAction="http://sphereinabox.com/GetSomething" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="SimpleWebServiceSoap12" type="tns:SimpleWebServiceSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetSomething">
      <soap12:operation soapAction="http://sphereinabox.com/GetSomething" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="SimpleWebService">
    <wsdl:port name="SimpleWebServiceSoap" binding="tns:SimpleWebServiceSoap">
      <soap:address location="http://localhost/SimpleWebService/SimpleWebService.asmx" />
    </wsdl:port>
    <wsdl:port name="SimpleWebServiceSoap12" binding="tns:SimpleWebServiceSoap12">
      <soap12:address location="http://localhost/SimpleWebService/SimpleWebService.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

コンパイルに失敗する生成された(netbeans)コード。これは、「追加->Webサービスクライアントへの新しいJavaME」ウィザードを使用して作成されました。(SimpleWebService_Stub.java)

    public ArrayOfCustomType GetSomething() throws java.rmi.RemoteException {
        Object inputObject[] = new Object[] {
        };

        Operation op = Operation.newInstance( _qname_operation_GetSomething, _type_GetSomething, _type_GetSomethingResponse );
        _prepOperation( op );
        op.setProperty( Operation.SOAPACTION_URI_PROPERTY, "http://sphereinabox.com/GetSomething" );
        Object resultObj;
        try {
            resultObj = op.invoke( inputObject );
        } catch( JAXRPCException e ) {
            Throwable cause = e.getLinkedCause();
            if( cause instanceof java.rmi.RemoteException ) {
                throw (java.rmi.RemoteException) cause;
            }
            throw e;
        }

//////// Error on next line, symbol ArrayOfCustomType_fromObject not defined
        return ArrayOfCustomType_fromObject((Object[])((Object[]) resultObj)[0]);
    }

この不自然な例で判明しました(私の本番環境の「CustomType」には複数のフィールドがあります)同じ生成された(SimpleWebService_Stub.java)生成されたコードのこの楽しいコードからもエラーが発生します。エラーは、文字列が定義されていないことです(Javaでは文字列です。それに加えて、これはとにかくCustomTypeについて話しているはずです)。

private static string string_fromObject( Object obj[] ) {
    if(obj == null) return null;
    string result = new string();
    return result;
}
4

3 に答える 3

2

明らかに、netbeansのスタブジェネレータのような派手な組み込みのものを使用するべきではありません。いいえ、Sun(またはSprintブランド...)のスタブジェネレーターを使用する必要があります。

  1. プロジェクトを右クリック
  2. [プロパティ]を選択します
  3. 新しいダイアログの左側にある[プラットフォーム]を選択します
  4. リグ側の[エミュレータの管理]をクリックします
  5. この新しいダイアログの左側で、選択したエミュレーター(Sun Java(TM)Wirless Tookit 2.5 for CLDC )を選択します。
  6. [ツールと拡張機能]タブをクリックします。
  7. [ユーティリティを開く]ボタンをクリックします。
  8. この新しいダイアログでスタブジェネレータユーティリティを選択します
  9. 関係する多数のステップとダイアログについて泣きます。
  10. [起動]をクリックします
  11. WSDL URLを指定しますhttp://localhost/SimpleWebService/SimpleWebService.asmx?WSDL
  12. 出力パスを指定します**C:\ code \ SimpleMobile \ src \ **
  13. 出力パッケージsimplewebserviceまたはあなたが何でも指定します
  14. OKボタンを押します。
  15. netbeansを使用してコンパイルする場合は、コンパイルできないというエラーを無視してください。エラー:com.sun.tools.javac.Mainはクラスパスで使用できません。エラー:コンパイルに失敗しました。エラーが報告されているはずです。
  16. Webサービスが変更され、スタブを再生成する必要があるときはいつでも、上記のすべてを繰り返します。
  17. あなたの正気を保存するためにこれを行うためにバッチファイルを書いてください。

うーん。とにかく、上記はJonathanKnudsenの著書「KickingButtwith MIDP and MSA:CreatingGreatMobileApplications」で見つけました。

于 2009-01-16T19:12:40.313 に答える
1

前の回答は素晴らしいです。netbeans で生成されたスタブ クラスを使用したときに classcastexception が発生しました。java me platform SDK 3 で生成されたクラスは魅力的です。

Java ME プラットフォーム SDK 3 および netbeans 6.8 では [ユーティリティを開く] ボタンが表示されませんが (クリックできません)、Java ME プラットフォーム SDK 3 を開いてスタブ クラスを生成できます。

新しいプロジェクトを作成し、プロジェクト名を右クリックします。追加 - その他、その他、モバイル Web サービス クライアントを選択し、WSDL URL を指定すると、クラスが生成されます。

于 2010-03-21T21:07:21.630 に答える
0

Web サービスで、クラス CustomType の属性 [Serializable] を追加します。スタブ クラスで ArrayOfCustomType_fromObject() を取得します。

于 2010-03-31T11:51:30.307 に答える