내용 보기

작성자

관리자 (IP : 172.17.0.1)

날짜

2020-07-09 08:12

제목

[WCF] WCF에서 결과 데이터를 html타입으로 반환하기


I have the operation contract:

[System.ServiceModel.Web.WebGet( UriTemplate = "c" , BodyStyle = WebMessageBodyStyle.Bare )]
[OperationContract]
string Connect ( );


and I have it implemented as:

    public string Connect ( )
{
return "<a href='someLingk' >Some link</a>";
}


when I go to that link I get: enter image description here


how can I format the response as html? or even plain text. I don't want to
get back html nor json...


I know I can create a website that queries the service but I just want to
create a simple "Console like" application that works on any browser...

 

 

 

답변






down vote accepted


Returning a stream allows you to return a raw string:

[System.ServiceModel.Web.WebGet( UriTemplate = "c" , BodyStyle = WebMessageBodyStyle.Bare )]
[OperationContract]
public System.IO.Stream Connect()
{
string result = "<a href='someLingk' >Some link</a>";
byte[] resultBytes = Encoding.UTF8.GetBytes(result);
WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
return new MemoryStream(resultBytes);
}

출처1

http://stackoverflow.com/questions/13753815/return-html-format-on-wcf-service-instead-of-json-or-xml

출처2