Changeset 2579 for eclipsetracplugin
- Timestamp:
- 08/18/07 07:05:58 (1 year ago)
- Files:
-
- eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/models/TracServer.java (modified) (1 diff)
- eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java (modified) (2 diffs)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/build.properties (modified) (1 diff)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/.classpath (modified) (2 diffs)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/lib/commons-codec-1.3.jar (added)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/lib/commons-httpclient-3.1-rc1.jar (added)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/lib/commons-logging-1.1.jar (added)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/models/TracServer.java
r2275 r2579 60 60 problems = false; 61 61 62 } catch ( Throwable t)62 } catch ( Exception e ) 63 63 { 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 ); 65 65 connected = false; 66 66 problems = true; eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java
r2279 r2579 56 56 } 57 57 58 config.setGzipCompressing( true );58 // config.setGzipCompressing( true ); 59 59 60 60 XmlRpcClient client = new XmlRpcClient(); … … 63 63 64 64 proxy = new DynamicProxy( client ); 65 Log.info( "Created dynamic proxy" ); 65 66 66 67 // 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." ); 67 71 getWiki().getRPCVersionSupported(); 72 Log.info( "Method call ok" ); 68 73 } 69 74 eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/build.properties
r2276 r2579 2 2 bin.includes = plugin.xml,\ 3 3 META-INF/,\ 4 lib/,\5 lib/xmlrpc-client-3.0.jar,\6 4 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 9 bin.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 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 <classpathentry exported="true" kind="lib" path="lib/commons-codec-1.3.jar"/> 3 4 <classpathentry exported="true" kind="lib" path="lib/ws-commons-util-1.0.1.jar"/> 4 5 <classpathentry exported="true" kind="lib" path="lib/xmlrpc-client-3.0.jar" sourcepath="lib/xmlrpc-client-3.0-sources.jar"/> … … 6 7 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 7 8 <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"/> 8 11 <classpathentry kind="output" path="bin"/> 9 12 </classpath> eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF
r2279 r2579 8 8 Bundle-ClassPath: lib/xmlrpc-client-3.0.jar, 9 9 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
