私はapns-sharpを使用することに頼りましたが、コンソール アプリとして、またマシン上の基本的な httpbinding WCF サービス (wcftestclient でテスト済み) として完全に動作しますが、IIS で WCF サービスをホストすると、エラーは発生しません (SSL が有効) )。
私は開発に monotouch を使用しているので、slsvcutil を使用して必要なクラスを作成しました。いくつかの非同期呼び出しをテストしたところ、正常に動作し、正しい値が返されました。問題は、プッシュ通知を送信するために呼び出しを行うと、アプリケーションがクラッシュすることです。
以下のように、他のメソッド呼び出しと同じように呼び出します。
client.PushCompleted += HandlePushCompleted;
client.PushAsync();
void HandlePushCompleted (object sender, PushCompletedEventArgs e)
{
InvokeOnMainThread( delegate{
try
{
string value = e.Result.ToString();
}
catch(Exception ex)
{
Console.WriteLine("ERROR IS " + ex.InnerException);
Console.WriteLine("STACKTRACE IS " + ex.StackTrace);
}
} );
}
エラーとスタック トレースは次のとおりです。
ERROR IS System.MissingMethodException: No constructor found for
System.ServiceModel.FaultException`1[[System.ServiceModel.Except ionDetail
, System.ServiceModel, Version=2.0.5.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35]]::.ctor(System.ServiceModel.ExceptionDetail,
System.ServiceModel.FaultReason, System.ServiceModel.FaultCode, (unknown))
at System.Activator.CreateInstance (System.Type type, BindingFlags bindingAttr,
System.Reflection.Binder binder, System.Object[] args,
System.Globalization.CultureInfo culture, System.Object[]
activationAttributes) [0x00174]
in /Developer/ MonoTouch/Source/mono/mcs/class/corlib/System/Activator.cs:299
at System.Activator.CreateInstance (System.Type type,
System.Object[] args, System.Object[] activationAttributes) [0x00000]
in /Developer/MonoTouch/Source/mono/mcs/class/corlib/ System/Activator.cs:234
at System.Activator.CreateInstance (System.Type type, System.Object[] args)
[0x00000] in
/Developer/MonoTouch/Source/ mono/mcs/class/corlib/System/Activator.cs:229
at System.ServiceModel.MonoInternal.ClientRuntimeChannel.Request
(System.ServiceModel.Description.OperationDescription od,
System.Object[] parameters) [0x001a6] in
/Developer/MonoTouch/Source/mono/mcs/class/System.ServiceModel
/System.ServiceModel/ClientRuntimeChannel.cs:557 at
System.ServiceModel.MonoInternal.ClientRuntimeChannel.DoProcess
(System.Reflection.MethodBase method, System.String operationName,
System.Object[] parameters) [0x00038] in
/Developer/MonoTouch/Source/mono/mcs/class/System.ServiceModel
/System.ServiceModel/ClientRuntimeChannel.cs:502 at
System.ServiceModel.MonoInternal.ClientRuntimeChannel.Process
(System.Reflection.MethodBase method, System.String operationName,
System.Object[] parameters) [0x0001c] in
/Developer/MonoTouch/Source/mono/mcs/class/System.ServiceModel
/System.ServiceModel/ClientRuntimeChannel.cs:479
STACKTRACE IS at
System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary ()
[0x0002d] in /Developer/MonoTouch/Source/mono/mcs/class/System
/System.ComponentModel/AsyncCompletedEventArgs.cs:54 at
PushCompletedEventArgs.get_Result () [0x00000] in
/Users/*/Desktop/App/Apps/proxy/Service.cs:273 at
ElectricityIOSApp.FirstViewController+c_AnonStorey1.<>m_2 ()
[0x00000] in /Users/*/Desktop/App/Apps/AppController.cs:519
あなたの助けに感謝します。