You are viewing a plain text version of this content. The canonical link for it is here.
Posted to lokahi-commits@incubator.apache.org by to...@apache.org on 2006/06/19 20:46:19 UTC

svn commit: r415412 - in /incubator/lokahi/lokahi/trunk: ./ build.xml src/java/org/apache/lokahi/core/agent/TMCAgent.java

Author: toback
Date: Mon Jun 19 13:46:18 2006
New Revision: 415412

URL: http://svn.apache.org/viewvc?rev=415412&view=rev
Log:
Changes to the agent, and build process to include all the proper jobs.

Modified:
    incubator/lokahi/lokahi/trunk/   (props changed)
    incubator/lokahi/lokahi/trunk/build.xml
    incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/agent/TMCAgent.java

Propchange: incubator/lokahi/lokahi/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jun 19 13:46:18 2006
@@ -0,0 +1 @@
+build

Modified: incubator/lokahi/lokahi/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/build.xml?rev=415412&r1=415411&r2=415412&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/build.xml (original)
+++ incubator/lokahi/lokahi/trunk/build.xml Mon Jun 19 13:46:18 2006
@@ -108,6 +108,9 @@
       <fileset dir="${app.lib}">
         <include name="log4j*.jar"/>
         <include name="axis.jar"/>
+        <include name="saaj.jar"/>
+        <include name="jaxrpc.jar"/>
+        <include name="wsdl4j-*.jar"/>
         <include name="commons-logging.jar"/>
         <include name="commons-dbcp-*.jar"/>
         <include name="commons-discovery-*.jar"/>
@@ -166,4 +169,4 @@
       <include name="**/*.jar"/>
     </fileset>
   </target>
-</project>
\ No newline at end of file
+</project>

Modified: incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/agent/TMCAgent.java
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/agent/TMCAgent.java?rev=415412&r1=415411&r2=415412&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/agent/TMCAgent.java (original)
+++ incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/agent/TMCAgent.java Mon Jun 19 13:46:18 2006
@@ -86,16 +86,19 @@
   public static void init() throws Exception {
     DOMConfigurator.configure("agent.log4j.xml");
     int port = 5665;
+    System.out.println("Log4j configured");
     SimpleAxisServer sas = new SimpleAxisServer();
-    ServerSocketFactory sf = SSLServerSocketFactory.getDefault();
+//    ServerSocketFactory sf = SSLServerSocketFactory.getDefault();
+    ServerSocketFactory sf = ServerSocketFactory.getDefault();
     ServerSocket ss = sf.createServerSocket(port);
     sas.setServerSocket(ss);
     sas.start(false);
-
-    DerbyBroker.initalize();
+    System.out.println("Server socket setup on port:" + port);
+//    DerbyBroker.initalize();
 
     //start the Job Scheduler
     new Thread(new JobScheduler(), "JobScheduler");
+    System.out.println("Job Scheduler started.");
   }
 
   /**