XML Processing with Scala:
http://www.ibm.com/developerworks/library/x-scalaxml/?ca=dgr-jw64scalaxml&S_TACT=105AGX59&S_CMP=GR
Tagged: xml RSS
-
tjweir
-
tjweir
object FriendFeed {
import java.net.{URLConnection, URL}
import scala.xml._
def friendFeed():Elem = {
val url = new URL(“http://friendfeed.com/api/feed/public?format=xml&num=100″)
val conn = url.openConnection
XML.load(conn.getInputStream)
}
} -
tjweir
http://www.ibm.com/developerworks/java/library/x-scalaxml/index.html?ca=drs-
Scala + XML from ibm/developer






rbarooah 18:21 on 2008/12/6 Permalink | Log in to Reply
Blatantly advertising my own work, you may be interested in this friendfeed binding I am working on. It started off pretty much the way you did:
http://github.com/rbarooah/friendfeed-scala-binding/tree/master
What’s there works, and that covers most of the API except media posting and Real-Time. I’ve learned a few things about making these bindings in the meantime and will be revising and completing it over the next month or so.