기본적으로 일부 모바일 응용 프로그램에서 소비 될 WCF resful 서비스를 개발 중입니다. POST를 통해 DataContract 개체 [실제로 개체 목록을 보내야] 개체와 다른 단일 ID를 문자열로 보내려고합니다. 내 질문은 아마도 DataContract 개체 및 단일 문자열을 받아들이 기 위해 내 함수를 정의하는 경우입니까? 인터페이스 선언 : 함수의WCF RESTFUL 웹 서비스의 매개 변수로 DataContract 개체를 보내려면 어떻게해야합니까?
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetDataUsingDataContract/{id}")]
CompositeType GetDataUsingDataContract(string id, CompositeType composite);
}
[DataContract]
public class CompositeType
{
bool boolValue = true;
string stringValue = "Hello ";
[DataMember]
public bool BoolValue
{
get { return boolValue; }
set { boolValue = value; }
}
[DataMember]
public string StringValue
{
get { return stringValue; }
set { stringValue = value; }
}
}
실제 정의 :
다음
내 코드입니다public CompositeType GetDataUsingDataContract(string id, CompositeType composite)
{
if (composite == null)
{
throw new ArgumentNullException("composite");
}
if (composite .BoolValue)
{
composite .StringValue += "- Suffix and the id is"+id;
}
return report;
}
내가 피들러에서 보내려고하고있는 JSON 개체입니다
{"BoolValue":true,"StringValue":"sdfsdfsf"}
위의 내용은 서비스를 테스트하는 피들러의 스냅입니다. 인터넷 검색이 끝나면 클라이언트가 실제로 웹 서비스 참조를 사용하여 DataContract 유형을 가져오고 json으로 요청 본문으로 보내기 전에 다음 링크를 얻었습니다. 그렇다면 필라델피아 필자의 시험은 왜 성공하지 못합니까? http://dotnetmentors.com/wcf/wcf-rest-service-to-get-or-post-json-data-and-retrieve-json-data-with-datacontract.aspx
아무도 제안 할 수 없습니까?
의 Web.config은 울부 짖는 소리입니다 :
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="JSONWebService.Service1" behaviorConfiguration="JSONWebService.Service1Behavior">
<endpoint address="../Service1.svc"
binding="webHttpBinding"
contract="JSONWebService.IService1"
behaviorConfiguration="webBehaviour" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="JSONWebService.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="true"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="webBehaviour">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
안녕 @Dominic 보내는 여러 PARAM 내 차 관심사입니다 - 내 첫 번째 문제는 POST를 통해 DataContract를 json으로 보내고 자동으로 DataContract에 직렬화 해제하는 것입니다. 여전히 운이 없다! – marifrahman
DataContract를 웹 메서드의 인수에 대한 스트림으로 바꿀 때 작동합니다! web.config 파일을 추가 했으므로 여기서 아무것도 놓치지 않았습니다. – marifrahman
안녕하세요 @marifrahman. ServiceContract에 RequestFormat 및 ResponseFormat 매개 변수가 모두 있습니까? 나는 당신이 게시 한 코드에서 "RequestFormat = WebMessageFormat.Json"을 볼 수 없다 ... –