You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Users
Hi,
I've the jenkins-client code downloaded from GIT and when I try to establish connection to Jenkins server suing the below URL,it's failing with exception and not able to connect to jenkins.Does any body have any suggestions.
System.out.println("Connected to Jenkins server::::"+jenkinsClient.getVersion());
Thanks,
Anil
Victor Martinez
unread,
Nov 2, 2016, 5:16:38 PM11/2/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Users
I dont know what api you use but that url doesn't look good to me.
Have you tried with the below snippet new URI("http://10.8.2.174:8082"), "admin", "admin");
Cheers
Karl Heinz Marbaise
unread,
Nov 2, 2016, 6:17:57 PM11/2/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jenkins...@googlegroups.com
Hi,
First why not using the offical release from Maven Central rep (release
0.3.6) furthermore you shouldn't use the url with the login part...only
simply:
JenkinsServer jenkinsClient = new JenkinsServer ( new
URI("http://10.8.2.174:8082/"), "admin", "admin");
...