2012-01-04 15 views
0

私はAzureでWCF WebRoleサービスを開発しています。従業員データをJSON形式で提供するメソッドを呼び出す必要があります。通常のWCF Webサービスとは異なり、WCF Webroleの "Web.config"の設定方法はわかりません。通常のWCFサービスのための私のコード "のWeb.config" は、以下である:今、私がする必要があるAzureでWCFサービスを作成する際にwebHttpバインディングを設定するにはどうすればよいですか?

<system.serviceModel> 
<behaviors> 
    <serviceBehaviors> 
    <behavior> 
     <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment --> 
     <serviceMetadata httpGetEnabled="true"/> 
     <!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information --> 
     <serviceDebug includeExceptionDetailInFaults="false"/> 
    </behavior> 
    </serviceBehaviors> 
</behaviors> 
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" /></system.serviceModel> 

に従うよう

<system.serviceModel> 
<services> 
    <service name="empl.Service1" behaviorConfiguration="empl.Service1Behavior"> 
    <!-- Service Endpoints --> 
    <endpoint address="" binding="webHttpBinding" contract="empl.IService1" behaviorConfiguration="web"> 
     <!-- 
      Upon deployment, the following identity element should be removed or replaced to reflect the 
      identity under which the deployed service runs. If removed, WCF will infer an appropriate identity 
      automatically. 
     --> 
     <identity> 
     <dns value="localhost"/> 
     </identity> 
    </endpoint> 
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> 
    </service> 
</services> 
<behaviors> 
    <endpointBehaviors> 
    <behavior name="web"> 
     <webHttp/> 
    </behavior> 
    </endpointBehaviors> 
    <serviceBehaviors> 
    <behavior name="empl.Service1Behavior"> 
     <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment --> 
     <serviceMetadata httpGetEnabled="true"/> 
     <!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information --> 
     <serviceDebug includeExceptionDetailInFaults="false"/> 
    </behavior> 
    </serviceBehaviors> 
</behaviors> 

とWCF WebRole(アズール)のための私のコード "のWeb.config" であり、 URIアクセス "http://localhost/Service1.svc/GetId"を取得し、JSONデータで応答する必要があります。しかし、私にとってそれは "HTTP400 Bad Request"を示しています。私を助けてください。

+0

どこから呼びますか? "localhost"はローカル、エル、ホストを指します。 Azureサービスを呼びたい場合は、割り当てたホスト名を代用する必要があります。 –

+0

こんにちは、私はローカルホストでのみこのサービスを呼び出しています。そして、私はCompute Emulatorのみを使用しており、Azure Subscriptionは持っていません。 –

答えて

0

送信された要求が無効である可能性があります。あなたのサービスにアクセスできない、または見つけられなかった場合は、別のHttpエラーコードでした。サービスのトレースを有効にして、不正なリクエストの原因を確認してください。トレースを有効にするにはこれに従いますlink

関連する問題