Changeset 2279

Show
Ignore:
Timestamp:
06/04/07 12:44:15 (1 year ago)
Author:
merlimat
Message:

EclipseTracPlugin:

Using the Commons HttpClient? classes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/META-INF/MANIFEST.MF

    r2275 r2279  
    1414 org.eclipse.ui.navigator, 
    1515 org.eclipse.ui.views, 
    16  org.apache.xmlrpc 
     16 org.apache.xmlrpc;bundle-version="3.0.0" 
    1717Eclipse-LazyStart: true 
    1818Bundle-Vendor: Matteo Merli 
  • eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java

    r2275 r2279  
    1515import org.apache.xmlrpc.client.XmlRpcClient; 
    1616import org.apache.xmlrpc.client.XmlRpcClientConfigImpl; 
     17import org.apache.xmlrpc.client.XmlRpcCommonsTransportFactory; 
    1718import org.apache.xmlrpc.client.XmlRpcSunHttpTransportFactory; 
    1819 
     
    4243        if ( !anonymous ) 
    4344        { 
    44             // If the user chose not to autheticate anonymously 
     45            // If the user chose not to authenticate anonymously 
    4546            // but not provided any password, make sure the authentication 
    4647            // will fail, without the system asking credentials with an 
     
    5960        XmlRpcClient client = new XmlRpcClient(); 
    6061        client.setConfig( config ); 
    61         client.setTransportFactory( new XmlRpcSunHttpTransportFactory( client ) ); 
     62        client.setTransportFactory( new XmlRpcCommonsTransportFactory( client ) ); 
    6263         
    6364        proxy = new DynamicProxy( client ); 
  • eclipsetracplugin/eclipse/trunk/org.apache.commons.httpclient/build.properties

    r2278 r2279  
    1 source.. = src/ 
    2 output.. = bin/ 
    31bin.includes = META-INF/,\ 
    42               .,\ 
  • eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF

    r2276 r2279  
    99 lib/xmlrpc-common-3.0.jar, 
    1010 lib/ws-commons-util-1.0.1.jar 
     11Require-Bundle: org.apache.commons.httpclient