Hi, I am wondering if anyone has any trouble using one http server ( whether it be tomcat or the tools.jar one ) for many services on one PC using Win2000? I made the the http server point to a directory ( say \uploadablecode ) at a specific port and thus this is the java codebase also as passed in on the cmd line. Each service belongs to a package and thus if a service is declared as: package service1, then the resultant directory for its class's code is: \uploadablecode\service1 For package service2, the code lives in \uploadablecode\service2
Problem is, that when class information is needed (like stubs), it the requestor doesn't get it. I know requestor is looking for something along the lines of packagename.classname and the http server translates this to packagename\classname to find it in the directory structure starting at the codebase directory. I can only think that I am doing something syntactically wrong.