vote up 0 vote down star

I have been writing some Web services to be used by a few different client apps and i was trying to write a web service method that simply outputs an RSS XML Feed.

I can create the XML using an XmlTextWriter Object

Then i have tryed outputing to the Response (like i have done in the past when its an aspx page) but this only works it the return type is void (and still doesnt seem to output properly)

Then i tryed making the return type a string and using a StringWriter to output the xml from the XmlTextWriter but the output is then wrapped in a tag.

How can i do this?

flag

3 Answers

vote up 1 vote down

Obviously create the interfaces and rest of the WCF service as normal.

Mark the class with the following attribute

[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]

And then this function

public Stream GetRSS()
{
 string output;
 //output = some_text;
 MemoryStream ms = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(output));
 WebOperationContext.Current.OutgoingResponse.ContentType = "text/xml";
 return ms;
}
link|flag
im getting an Object reference error doing with the WebOperationContext.Current.OutgoingResponse.ContentType = "text/html"; any ideas? – d1k_is Apr 14 at 3:28
Try adding the attribute on the class that I marked above. – Jason Coyne Apr 14 at 3:31
If you still get the error, im not sure. Maybe its the way you are starting the service. This is from a working project of mine. – Jason Coyne Apr 14 at 3:32
ok, i dont think im using a WCF web service... how do i create 1 of them? – d1k_is Apr 14 at 3:35
ah. u misread the question. my answer is for a wcf service not an asmx – Jason Coyne Apr 14 at 3:35
show 3 more comments
vote up 0 vote down

I have some code for this, but it's more than will fit well in an SO post (about 1000 lines). It's really not that hard; the schema is simple enough you can do it yourself, but you don't have to: there are several components you can just plug in to create the xml for you.

You should see this question:
http://stackoverflow.com/questions/57287/asp-net-rss-feed

link|flag
I already have created the RSS XML now im looking to get the webservice call to output it directly... – d1k_is Apr 14 at 4:29
vote up 0 vote down

If you must use ASMX, then you can return an XmlDocument. Build the feed XML however you like, but then return the XmlDocument from your web method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.