|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectdsnserver.XmlRpcServer
public class XmlRpcServer
This is the XmlRpc server which starts a
webserver that is listenig on a port which
we can define.
All function we will use with the XmlRpc
have to be added to the server with
server.addHandler().
The XmlRpcServer has to be started in a
main function. it has to look lake that:
XmlRpcServer server =
new XmlRpcServer(Integer.parseInt(GetProperty.get("xmlRpcPort")));
server.run();
Field Summary | |
---|---|
(package private) Communication |
myComm
|
(package private) static int |
port
|
(package private) static org.apache.xmlrpc.WebServer |
server
|
Constructor Summary | |
---|---|
XmlRpcServer(int port,
Communication comm)
|
Method Summary | |
---|---|
void |
run()
main method |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
static org.apache.xmlrpc.WebServer server
static int port
Communication myComm
Constructor Detail |
---|
public XmlRpcServer(int port, Communication comm)
Method Detail |
---|
public void run() throws java.lang.Exception
java.lang.Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |