Show
Ignore:
Timestamp:
08/18/07 07:05:58 (1 year ago)
Author:
merlimat
Message:

EclipseTracPlugin:

Resolved build-path problems

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/models/TracServer.java

    r2275 r2579  
    6060            problems = false; 
    6161             
    62         } catch ( Throwable t
     62        } catch ( Exception e
    6363        { 
    64             Log.warning( "Error connecting to server '" + url.toString() + "': " + t.getMessage(), new Exception( t.getCause() ) ); 
     64            Log.warning( "Error connecting to server '" + url.toString() + "': " + e.getMessage(), e ); 
    6565            connected = false; 
    6666            problems = true; 
  • eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java

    r2279 r2579  
    5656        } 
    5757         
    58         config.setGzipCompressing( true ); 
     58        // config.setGzipCompressing( true ); 
    5959         
    6060        XmlRpcClient client = new XmlRpcClient(); 
     
    6363         
    6464        proxy = new DynamicProxy( client ); 
     65        Log.info( "Created dynamic proxy" ); 
    6566         
    6667        // Call a method to make sure we can communicate with server 
     68        client.execute( "wiki.getRPCVersionSupported", new Object[0] ); 
     69        getWiki(); 
     70        Log.info( "Wiki instantiation ok." ); 
    6771        getWiki().getRPCVersionSupported(); 
     72        Log.info( "Method call ok" ); 
    6873    } 
    6974     
  • eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/build.properties

    r2276 r2579  
    22bin.includes = plugin.xml,\ 
    33               META-INF/,\ 
    4                lib/,\ 
    5                lib/xmlrpc-client-3.0.jar,\ 
    64               lib/xmlrpc-common-3.0.jar,\ 
    7                lib/ws-commons-util-1.0.1.jar 
     5               lib/ws-commons-util-1.0.1.jar,\ 
     6               lib/commons-httpclient-3.1-rc1.jar,\ 
     7               lib/commons-logging-1.1.jar,\ 
     8               lib/commons-codec-1.3.jar 
     9bin.excludes = lib/xmlrpc-client-3.0-sources.jar,\ 
     10               lib/xmlrpc-common-3.0-sources.jar 
  • eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/.classpath

    r2276 r2579  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<classpath> 
     3        <classpathentry exported="true" kind="lib" path="lib/commons-codec-1.3.jar"/> 
    34        <classpathentry exported="true" kind="lib" path="lib/ws-commons-util-1.0.1.jar"/> 
    45        <classpathentry exported="true" kind="lib" path="lib/xmlrpc-client-3.0.jar" sourcepath="lib/xmlrpc-client-3.0-sources.jar"/> 
     
    67        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 
    78        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> 
     9        <classpathentry kind="lib" path="lib/commons-httpclient-3.1-rc1.jar"/> 
     10        <classpathentry kind="lib" path="lib/commons-logging-1.1.jar"/> 
    811        <classpathentry kind="output" path="bin"/> 
    912</classpath> 
  • eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF

    r2279 r2579  
    88Bundle-ClassPath: lib/xmlrpc-client-3.0.jar, 
    99 lib/xmlrpc-common-3.0.jar, 
    10  lib/ws-commons-util-1.0.1.jar 
    11 Require-Bundle: org.apache.commons.httpclient 
     10 lib/ws-commons-util-1.0.1.jar, 
     11 lib/commons-httpclient-3.1-rc1.jar, 
     12 lib/commons-logging-1.1.jar, 
     13 lib/commons-codec-1.3.jar