org.apache.axis.transport.mail

Class MailServer

public class MailServer extends Object implements Runnable

This is a simple implementation of an SMTP/POP3 server for processing SOAP requests via Apache's xml-axis. This is not intended for production use. Its intended uses are for demos, debugging, and performance profiling.

Author: Davanum Srinivas Rob Jellinghaus (robj@unrealities.com)

Field Summary
protected static Loglog
Constructor Summary
MailServer(String host, int port, String userid, String password)
Method Summary
protected static AxisServergetAxisServer()
booleangetDoThreads()
StringgetHost()
POP3ClientgetPOP3()
Obtain the serverSocket that that MailServer is listening on.
static voidmain(String[] args)
Server process.
voidrun()
Accept requests from a given TCP port and send them through the Axis engine for processing.
voidsetDoThreads(boolean value)
voidsetPOP3(POP3Client pop3)
Set the serverSocket this server should listen on. (note : changing this will not affect a running server, but if you stop() and then start() the server, the new socket will be used).
voidstart(boolean daemon)
Start this server.
voidstart()
Start this server as a NON-daemon.
voidstop()
Stop this server.

Field Detail

log

protected static Log log

Constructor Detail

MailServer

public MailServer(String host, int port, String userid, String password)

Method Detail

getAxisServer

protected static AxisServer getAxisServer()

getDoThreads

public boolean getDoThreads()

getHost

public String getHost()

getPOP3

public POP3Client getPOP3()
Obtain the serverSocket that that MailServer is listening on.

main

public static void main(String[] args)
Server process.

run

public void run()
Accept requests from a given TCP port and send them through the Axis engine for processing.

setDoThreads

public void setDoThreads(boolean value)

setPOP3

public void setPOP3(POP3Client pop3)
Set the serverSocket this server should listen on. (note : changing this will not affect a running server, but if you stop() and then start() the server, the new socket will be used).

start

public void start(boolean daemon)
Start this server. Spawns a worker thread to listen for HTTP requests.

Parameters: daemon a boolean indicating if the thread should be a daemon.

start

public void start()
Start this server as a NON-daemon.

stop

public void stop()
Stop this server. This will interrupt any pending accept().
Copyright B) 2005 Apache Web Services Project. All Rights Reserved.