Return-Path: Mailing-List: contact axis-user-help@xml.apache.org; run by ezmlm Delivered-To: mailing list axis-user@xml.apache.org Received: (qmail 61971 invoked from network); 19 Jun 2002 10:13:43 -0000 Received: from mail.i-documentsystems.com (HELO web1.i-documentsystems.com) (213.105.192.33) by daedalus.apache.org with SMTP; 19 Jun 2002 10:13:43 -0000 Message-ID: <3D1058FA.9010104@btinternet.com> Date: Wed, 19 Jun 2002 11:12:10 +0100 From: Brian Ewins MIME-Version: 1.0 To: axis-user@xml.apache.org Subject: Re: InClass-Server References: <20B20848358CDA44AB6A2E277D2E1C5E12044B@postoffice.scr.siemens.com> <200206190241.40018.hasait@gmx.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sebastian Hasait wrote: > The Problem of a Webapplication is, that it cannot have a Swing-GUI. > In my case i need this. [...] > I solved this Problem using XSoap: http://www.extreme.indiana.edu/xgws/xsoap/ You have another couple of options. Axis does actually include a standalone server ( org.apache.axis.transport.http.SimpleAxisServer ). Just do: SimpleAxisServer sas=new SimpleAxisServer(); sas.setServerSocket(new ServerSocket(port)); sas.run(); and you're off. This is a single threaded server intended for testing, it may do what you need. A second way of doing this is to embed the webserver (yes you can give webapps a Swing GUI - this is what IDEs do). Tomcat is designed to allow this kind of thing. You can find an article describing the technique here: http://www.onjava.com/pub/a/onjava/2002/04/03/tomcat.html Hope this helps -Baz