You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@continuum.apache.org by "Milos Kleint (JIRA)" <ji...@codehaus.org> on 2006/01/05 19:55:09 UTC

[jira] Created: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

there is no xmlrpc client code for contacting the server.
---------------------------------------------------------

         Key: CONTINUUM-544
         URL: http://jira.codehaus.org/browse/CONTINUUM-544
     Project: Continuum
        Type: New Feature

  Components: XMLRPC Interface  
    Reporter: Milos Kleint
 Attachments: continuum-rpc-client.zip

sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-544?page=all ]
     
Emmanuel Venisse closed CONTINUUM-544:
--------------------------------------

     Assign To: Emmanuel Venisse
    Resolution: Fixed

Applied. Thanks.

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>     Assignee: Emmanuel Venisse
>      Fix For: 1.0.3
>  Attachments: ProjectsReader.java, continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Henri Yandell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/CONTINUUM-544?page=comments#action_57144 ] 

Henri Yandell commented on CONTINUUM-544:
-----------------------------------------

updateProject refreshes the project from the server, rather than sending the client's changes to the server.

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.1
>  Attachments: continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Henri Yandell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/CONTINUUM-544?page=comments#action_57142 ] 

Henri Yandell commented on CONTINUUM-544:
-----------------------------------------

Here's some sample code for using Milos' client:

{{monospaced}}
import java.net.URL;
import org.codehaus.mevenide.continuum.rpc.ProjectsReader;
import org.apache.maven.continuum.model.project.Project;

public class Test {

    public static void main(String[] args) throws Exception {
        ProjectsReader rdr = new ProjectsReader(new URL(args[0]));
        Project[] projects = rdr.readProjects();
        for(int i=0; i<projects.length; i++) {
            if( projects[i].getId() == 10 ) {
                projects[i].setVersion("1.1");
                rdr.updateProject(projects[i]);
                rdr.buildProject(projects[i]);
            }
        }
    }

}       
{{monospaced}}

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.1
>  Attachments: continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-544?page=all ]

John Casey updated CONTINUUM-544:
---------------------------------

    Fix Version:     (was: 1.1)
                 1.0.3

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.0.3
>  Attachments: ProjectsReader.java, continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Henri Yandell (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-544?page=all ]

Henri Yandell updated CONTINUUM-544:
------------------------------------

    Attachment: ProjectsReader.java

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.1
>  Attachments: ProjectsReader.java, continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-544?page=all ]

Emmanuel Venisse updated CONTINUUM-544:
---------------------------------------

    Fix Version: 1.1

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.1
>  Attachments: continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (CONTINUUM-544) there is no xmlrpc client code for contacting the server.

Posted by "Henri Yandell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/CONTINUUM-544?page=comments#action_57141 ] 

Henri Yandell commented on CONTINUUM-544:
-----------------------------------------

I can confirm that it supports getting all projects and building them individually. Does not support updating, the update it does is only a local thing.

> there is no xmlrpc client code for contacting the server.
> ---------------------------------------------------------
>
>          Key: CONTINUUM-544
>          URL: http://jira.codehaus.org/browse/CONTINUUM-544
>      Project: Continuum
>         Type: New Feature

>   Components: XMLRPC Interface
>     Reporter: Milos Kleint
>      Fix For: 1.1
>  Attachments: continuum-rpc-client.zip
>
>
> sibmitting a simple library for client code interaction, currently used at mevenide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira