[Webfunds-commits] java/webfunds/ricardian SOXServer.java
Ian Grigg
iang@cypherpunks.ai
Sun, 8 Apr 2001 17:42:48 -0400 (AST)
iang 01/04/08 17:42:47
Modified: webfunds/sox SmartIssuer.java
webfunds/ricardian SOXServer.java
Log:
needs PritnWriter arg for new CM
Revision Changes Path
1.19 +2 -2 java/webfunds/sox/SmartIssuer.java
Index: SmartIssuer.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/SmartIssuer.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- SmartIssuer.java 2001/04/06 23:46:05 1.18
+++ SmartIssuer.java 2001/04/08 21:42:47 1.19
@@ -1,5 +1,5 @@
/*
- * $Id: SmartIssuer.java,v 1.18 2001/04/06 23:46:05 iang Exp $
+ * $Id: SmartIssuer.java,v 1.19 2001/04/08 21:42:47 iang Exp $
*
* Copyright (c) Systemics Ltd 1995-1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -60,7 +60,7 @@
// XXX: we should be given a CommsManager, but old code might not
// do that. Drop this when we can drop the extra constructor.
if (comms == null)
- comms = new BasicCommsManager();
+ comms = new BasicCommsManager(null);
startSimpleServers(this.urls);
}
1.20 +4 -4 java/webfunds/ricardian/SOXServer.java
Index: SOXServer.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/ricardian/SOXServer.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- SOXServer.java 2001/04/06 22:42:58 1.19
+++ SOXServer.java 2001/04/08 21:42:47 1.20
@@ -1,5 +1,5 @@
/*
- * $Id: SOXServer.java,v 1.19 2001/04/06 22:42:58 iang Exp $
+ * $Id: SOXServer.java,v 1.20 2001/04/08 21:42:47 iang Exp $
*
* Copyright (c) Systemics Ltd 1995-1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -212,7 +212,7 @@
public static SOXServer getInstance(URL url, PrintWriter bug)
throws SOXServerException, SOXLaterException
{
- CommsManager comms = new BasicCommsManager();
+ CommsManager comms = new BasicCommsManager(bug);
return getInstance(url, comms, bug);
}
@@ -292,7 +292,7 @@
{
logmsg("DEPRECATED getIssuer ( " + con + " ) == " + smart);
if (smart == null)
- smart = initSmartIssuer(con, new BasicCommsManager());
+ smart = initSmartIssuer(con, new BasicCommsManager(bug));
logmsg("smart.getReady()");
smart.getReady();
@@ -661,7 +661,7 @@
String name = arg[0];
SOXServer sox = null;
PrintWriter bug = new PrintWriter(System.err);
- CommsManager comms = new BasicCommsManager();
+ CommsManager comms = new BasicCommsManager(bug);
try
{