views:

37

answers:

2

Is there a library for sending trackbacks or pingbacks in .Net? I know the code is not that hard to write, but if someone wrote, debugged it and maintains it, I'd rather re-use.

A: 

Here is an article with full code, if that helps.

http://www.janoserdelyi.com/permalink/article/19.aspx

Rick Mogstad
That code is missing the important part of parsing the HTML to get out the RDF snippet with the URL to send the trackback, a non-trivial part of the problem and it also has some important problems like not using the proper urlencode and using regex to parse XML.
J. Pablo Fernández
A: 

My solution was to implement pingback instead of trackback. It took me a fraction of the time to do it (while I never finished trackback). And actually, not many blogs are accepting trackbacks anymore, but they are accepting pingbacks.

J. Pablo Fernández