Error "User not authenticated yet, or session timed out."

anas bakhou March 30, 2015

Hello, 

I am trying to create a user using java JIRA RPC SOAP client but i got this error !! 

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode: 
 faultString: com.atlassian.jira.rpc.exception.RemoteAuthenticationException: User not authenticated yet, or session timed out.
 faultActor: 
 faultNode: 
 faultDetail: 
	{}com.atlassian.jira.rpc.exception.RemoteAuthenticationException:null
	{http://xml.apache.org/axis/}hostname:srv

My code : 

private static RemoteUser createUser(JiraSoapService jiraSoapService,
			String authToken) throws RemoteException, RemoteException,
			RemoteException, RemotePermissionException,
			RemoteAuthenticationException, RemoteValidationException,
			com.atlassian.jira.rpc.exception.RemoteException,
			MalformedURLException {
		RemoteUser remoteUser = jiraSoapService.createUser("token", "username",
				"password", "full name", "email");
		System.out.println("\tSuccessfully created user "
				+ remoteUser.getName());
		return remoteUser;
	}

Can anyone help me please !! 

1 answer

1 accepted

1 vote
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 30, 2015

"token" should be the token that you get after logging in to JIRA using the "login" method.

anas bakhou March 30, 2015

What should I do to get the value of the "token" to pass it as a parameter to the new uSer ?!

Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 30, 2015

Use the 'login' method to get the token.

anas bakhou March 30, 2015

thanks a lot !! :)

Suggest an answer

Log in or Sign up to answer