msnrobotweb(http://code.google.com/p/msnrobotweb/)
================================================
Introduce:
msnrobotweb is a msn robot with a small http server embeded.
message clients could send messages to buddy with a simple
http://localhost:9008/post?msg=[some messages] http request.
Requirements:
-a msn account signin as the robot ,if not please go to http://get.live.com/ and signup one.
-jre/jdk1.5 or high.
Install: (the following Linux-based step, Windows is not difficult ):
1 svn checkout http://msnrobotweb.googlecode.com/svn/trunk/msnrobotweb msnrobotweb
2 cd msnrobotweb
3 open start.sh to
3.1 edit username/password , replace with your own.
3.2 change JAVA_HOME path to your own .
4 run ./start.sh to start , your may see something
"http server started with port:xxx" then service is done.
5 add buddy which you changed in 3.1 step as your msn friend, and signin your msn.
6 sending a message. open browser with url : http://localhost:9008/post?msg=hello, your msn would receive a message "hello" . every thing is completed.
in linux or console,try:
curl http://localhost:9008/post?msg=hello
Depends:
must have jre/jdk1.5 or high version installed.
-JML (http://sourceforge.net/projects/java-jml/) , jars are in lib dir.
-Simple , an embeddable Java based HTTP engine (http://www.simpleframework.org/) jars are in lib dir.
-Common-logging, jars are in dir.
you may want to check sources ,please go to see src. code is everything.