I should add that the same tests succeed on macos X, Linux and windows
machines.
"Roger Day"
<[EMAIL PROTECTED] To: [EMAIL PROTECTED]
aphics.com> cc:
Subject: Apache SOAP 2.3.1 on
solaris 2.8
18/05/2004 17:25
Please respond to
soap-user
Hi,
I'm currently running a series of Ant-driven junit tests which forks of a
perl (SOAP) server and then I invoke the apache SOAP client. However, the
first test *stops running* once it gets to SOAPMappingRegistry as in the
code fragment below. Of course, the second test refuses to run as the tests
tearDown from the previous test hasn't been invoked.
//
// The standard port will normally be 9000
public SOAPTransmitter(int port)
{
logger =
Logger.getLogger(
);
logger.info("BuildClient");
// this handles the registry of types
smr = new SOAPMappingRegistry();
// first, set up the structures for use in the mapping calls
Vector v = new Vector();
Hashtable h = new Hashtable();
String s = new String();
Integer i = new Integer(0);
Fault f = new Fault();
My next step is try and cause the same problem outside of the test
frameworks. Has anyone seen anything similar?
Roger