3

開発中の内部アプリケーションで使用する eBay SDK をダウンロードしました。問題は、Mono で開発していることです。.NET で eBay Hello World サンプルを実行すると、次の出力が表示されます。

+++++++++++++++++++++++++++++++++++++++
+ Welcome to eBay SDK for .Net Sample +
+ - HelloWorld                        +
+++++++++++++++++++++++++++++++++++++++
Begin to call eBay API, please wait ...
End to call eBay API, show call result:
eBay official Time: 11/27/2013 3:02:19 PM

Mono で実行すると、次のようになります。

Unhandled Exception: eBay.Service.Core.Sdk.ApiException: Exception has been thrown by the target of an invocation. 
---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
---> System.InvalidOperationException: WebServiceBindingAttribute is required on proxy class 'eBay.Service.Core.Sdk.eBayAPIInterfaceService2'.
at System.Web.Services.Protocols.SoapTypeStubInfo..ctor (System.Web.Services.Protocols.LogicalTypeInfo logicalTypeInfo) [0x00000]
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (object,object[],System.Exception&)
etc...etc...etc...

回避策を見つけたので、以下の回答に投稿します。

4

1 に答える 1

5

Xamarin の Bugzilla を検索しても何も見つかりませんでしたが、関連するバグが Novell の古い Mono Bugzilla に投稿されていることがわかりました: https://bugzilla.novell.com/show_bug.cgi?id=693367

そこで、eBay SDK ソースを調べたところ、これが実際に問題であることがわかりました。で装飾されたeBay.Service.Core.Sdk.eBayAPIInterfaceService2から継承します。eBay.Service.Core.Sdk.eBayAPIInterfaceServiceSystem.Web.Services.WebServiceBindingAttribute

だから私は変更し、次のようになるようeBay.Service.Core.Sdk.eBayAPIInterfaceService2に追加しました。[System.Web.Services.WebServiceBindingAttribute(Name = "eBayAPISoapBinding", Namespace = "urn:ebay:apis:eBLBaseComponents")]

using System;
using System.Net;
using eBay.Service.Core.Soap;

namespace eBay.Service.Core.Sdk {
    /// <summary>
    /// Enhanced eBayAPIInterfaceService with GZIP compression support.
    /// </summary>
    [System.Web.Services.WebServiceBindingAttribute(Name = "eBayAPISoapBinding", Namespace = "urn:ebay:apis:eBLBaseComponents")]
    internal class eBayAPIInterfaceService2 : eBayAPIInterfaceService {
        ...
    }
}

ソースからビルドするための eBay SDK の指示に従いましたが、問題は解決しました。


脚注: ちなみに、Mono を使用して HTTPS Web サービスに接続するのが初めての場合は、すぐに別の例外が発生する可能性があります。それは次のようになります。

Unhandled Exception: System.Net.WebException: Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ---> System.IO.IOException: The authentication or decryption has failed. ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server. Error code: 0xffffffff800b010a
at Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate.validateCertificates (Mono.Security.X509.X509CertificateCollection certificates) [0x00000] in <filename unknown>:0 
at Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate.ProcessAsTls1 () [0x00000] in <filename unknown>:0 
at Mono.Security.Protocol.Tls.Handshake.HandshakeMessage.Process () [0x00000] in <filename unknown>:0 
at (wrapper remoting-invoke-with-check) Mono.Security.Protocol.Tls.Handshake.HandshakeMessage:Process ()
at Mono.Security.Protocol.Tls.ClientRecordProtocol.ProcessHandshakeMessage (Mono.Security.Protocol.Tls.TlsStream handMsg) [0x00000] in <filename unknown>:0 
at Mono.Security.Protocol.Tls.RecordProtocol.InternalReceiveRecordCallback (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0 
--- End of inner exception stack trace ---
at Mono.Security.Protocol.Tls.SslStreamBase.AsyncHandshakeCallback (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0 
--- End of inner exception stack trace ---
at System.Net.HttpWebRequest.EndGetResponse (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0 
at System.Net.HttpWebRequest.GetResponse () [0x00000] in <filename unknown>:0 

その解決策については、ここにアクセスしてください: http://www.mono-project.com/FAQ:_Security

于 2013-11-27T15:23:50.467 に答える