Hi everybody,
Actually I have some problems to understand the real requirements for the XML-RPC. What I later on want to do is to transport information in an XML format and transform them on my server into SQL data for further tasks.
The simple program I am looking for is the
Servlet Class - HelloServer. This contains the doPost/doGet functions. Accessing this should be performed by a commandline call "java HelloClient" .
The client should then trigger a "System.out.println" on the Server Side which will be displayed in the
Tomcat server window. I think this should only be a few lines. My actual code is the following:
HelloHandler.java:
HelloServer.java
HelloClient.java
My Error Message is on the HelloClient command line:
java.io.IOException: Werver returned HTTP response code: 500 for URL:
http://localhost:9090/HelloServerServlet/servlet/HelloServer On the tomcat side I get
- Ctx(/HelloServerServlet) : Exception in preInit HelloServer - java.lang.InstantiationException: HelloServer
at java.lang.Class.newInstance0(Class.java:293)..... There is none of my classes mentioned! Mentioned are Class, ServletHandler, ContextManager, Tomcat3Adapter, Http11Processor, Http11Protocol, PoolTcpEndpoint, ThreadPool,
Thread all have the .java ending
Thx for your help
Regards
Joe