SORU
20 Mart 2010, CUMARTESİ


Set XML için kod doğru İncludeExceptionDetailİnFaults

Nasıl App kullanmadan kod İncludeExceptionDetailİnFaults ayarlarım.Config?

CEVAP
20 Mart 2010, CUMARTESİ


Evet, hizmet ana bilgisayarı açmadan önce sunucu tarafında tabii. Bu ancak kendini ev sahibi bisiklet Federasyonu servisi-IIS barındırma senaryoları işe yaramaz gerektirir:

ServiceHost host = new ServiceHost(typeof(MyWCFService));

ServiceDebugBehavior debug = host.Description.Behaviors.Find<ServiceDebugBehavior>();

// if not found - add behavior with setting turned on 
if (debug == null)
{
    host.Description.Behaviors.Add(
         new ServiceDebugBehavior() { IncludeExceptionDetailInFaults = true });
}
else
{  
    // make sure setting is turned ON
    if (!debug.IncludeExceptionDetailInFaults)
    {
        debug.IncludeExceptionDetailInFaults = true;
    }
}

host.Open();

Gerekirse aynı şeyi IIS barındırma, kendi oluşturmak için özel MyServiceHost alt ve uygun MyServiceHostFactory Bunun örneğini bu özel hizmeti barındıran, başvuru bu özel hizmet ana fabrika *.dosya svc.

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • foreignimage

    foreignimage

    13 HAZİRAN 2006
  • Blu animations and other videos

    Blu animatio

    15 HAZİRAN 2007
  • RiceBunny

    RiceBunny

    16 ŞUBAT 2006