how hard is adding a basic web services interface to an existing java server application without having to turn it into a .war, or embedding a small web server like jetty?
say, ...
I have created a very simple webservice using C# in VS2008. I would like to publish this to a server using Jetty-6 as its web server. Is this possible, ...
How do I determine if my Jetty6-service run with administrative rights?
I need to setup Jetty on my XP dev box to run as a service.
http://docs.codehaus.org/display/JETTY/Win32Wrapper
It installs OK and ...
I want to build a RESTful Web Service in Java, deployed using Jetty and developed using Eclipse as IDE.
I was wondering if anyone could post or link me to a beginner ...
I am looking for this simplest, plainest way to get a Java web service up in the air. I used to use Axis-1-on-Tomcat, but with Axis 2 its getting too ...
Hi, I'm new to writing web services, so please bear that in mind. Requirements On the server machine I need to run a business simulation, which has dynamic state. Let's use a very simple example public class Simulator { private int state; public void Run() { while (true) { if (isTimeForNextUpdate()) { state += 1; } } } public getState() { ...