<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: Problem with Rest Interface in JBPM 5.2
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/chandrasachin16">Sachin Chandra</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/739546#739546">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi Dirk ,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I tried with the solution given in the link as suggested by you. I tried with Http Client 4.2. I created a web service in which I wrote two methods (authenticate and requestPostService).The code is written as follows</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>public class RestInt {</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; public static String KEY_USERNAME="j_username";</p><p>&#160;&#160;&#160; public static String KEY_PASSWORD="j_password";</p><p>&#160;&#160;&#160; private static HttpClient httpclient = new DefaultHttpClient();</p><p><span>&#160;&#160;&#160; private static final String PROCESS_INSTANCE="</span><a class="jive-link-external-small" href="http://localhost:8080/gwt-console-server/rs/process/definition/" target="_blank">http://localhost:8080/gwt-console-server/rs/process/definition/</a><span>{com.sample.evaluation}/new_instance";</span></p><p>&#160;&#160;&#160; public String MyService(String name) throws ClientProtocolException, IOException{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; String response=authenticate("krisv","krisv");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println("Authentication------------------------"+response);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; response=requestPostService(PROCESS_INSTANCE,null,false);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println("Process Instance------------------------"+response);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; return&#160; response;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; public static String authenticate(String username,String password){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; String responseString="";</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; List&lt;NameValuePair&gt; formsParam=new ArrayList&lt;NameValuePair&gt;();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; formsParam.add(new BasicNameValuePair(KEY_USERNAME, username));</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; formsParam.add(new BasicNameValuePair(KEY_PASSWORD, password));</p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160; HttpPost httpPost=new HttpPost("</span><a class="jive-link-external-small" href="http://localhost:8080/gwt-console-server/rs/process/j_security_check" target="_blank">http://localhost:8080/gwt-console-server/rs/process/j_security_check</a><span>");</span></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; InputStreamReader inputStreamReader=null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; BufferedReader bufferedReader=null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; UrlEncodedFormEntity entity=new UrlEncodedFormEntity(formsParam, "UTF-8");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; httpPost.setEntity(entity);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; HttpResponse response=httpclient.execute(httpPost);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; InputStream inputStream=response.getEntity().getContent();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; inputStreamReader=new InputStreamReader(inputStream);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bufferedReader=new BufferedReader(inputStreamReader);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; StringBuilder builder =new StringBuilder();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; String line=bufferedReader.readLine();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; while(line!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; builder.append(line);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println("line--------------------------------"+line);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; line=bufferedReader.readLine();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; responseString=builder.toString();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }finally{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(inputStreamReader!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; inputStreamReader.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }if(bufferedReader!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bufferedReader.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; return responseString;</p><p>&#160;&#160;&#160; }</p><p>&#160;&#160;&#160; public static String requestPostService(String url,Map&lt;String,Object&gt; parameters,boolean multipart) throws ClientProtocolException, IOException{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; String responseString="";</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; MultipartEntity multiPartEntity=new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; List&lt;NameValuePair&gt; formsParam=new ArrayList&lt;NameValuePair&gt;();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(parameters==null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; parameters=new HashMap&lt;String, Object&gt;();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set&lt;String&gt; keys =parameters.keySet();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; for(Iterator&lt;String&gt; keysIterator=keys.iterator();keysIterator.hasNext();){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; String keyString=keysIterator.next();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; String value=parameters.get(keyString).toString();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; formsParam.add(new BasicNameValuePair(keyString, value));</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(multipart){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; StringBody body=new StringBody(value,"text/plain",Charset.forName("UTF-8"));</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; multiPartEntity.addPart(keyString, (ContentBody)body);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; HttpPost httpPost=new HttpPost(url);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; InputStreamReader inputStreamReader=null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; BufferedReader bufferedReader=null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(multipart){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; httpPost.setEntity(multiPartEntity);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }else{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; UrlEncodedFormEntity entity=new UrlEncodedFormEntity(formsParam, "UTF-8");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; httpPost.setEntity(entity);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; HttpResponse response=httpclient.execute(httpPost);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; InputStream inputStream=response.getEntity().getContent();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; inputStreamReader=new InputStreamReader(inputStream);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; bufferedReader=new BufferedReader(inputStreamReader);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; StringBuilder builder =new StringBuilder();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; String line=bufferedReader.readLine();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; while(line!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; builder.append(line);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println("line--------------------------------"+line);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; line=bufferedReader.readLine();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; responseString=builder.toString();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }finally{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(inputStreamReader!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; inputStreamReader.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }if(bufferedReader!=null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; try{</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bufferedReader.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }catch(Exception ex){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new RuntimeException(ex);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; return responseString;</p><p>&#160;&#160;&#160; }</p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>However when I tried to run this I got an error "The client did not produce a request within the time that the server was prepared to wait".It looks like this is a problem with timeout.Also another error occurs while accessing invoking the web service.In the code I am trying to invoke the web service using a JSP ,but I get exception: java.lang.IllegalArgumentException which occurs at line </p><p>response=requestPostService(PROCESS_INSTANCE,null,false); // since we are passing null for the second argument.My queries why we are passing&#160; a null value or has it got some purpose to serve ?</p><p>The errror log in Jboss's server log is as given below.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>22:43:30,172 INFO&#160; [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) Initializing Mojarra 2.1.3 (SNAPSHOT 20110825) for context '/drools-guvnor'</p><p>22:43:33,610 INFO&#160; [org.hibernate.validator.util.Version] (MSC service thread 1-1) Hibernate Validator 4.2.0.Final</p><p>22:43:33,794 INFO&#160; [org.jboss.web] (MSC service thread 1-1) registering web context: /drools-guvnor</p><p>22:43:33,796 INFO&#160; [org.jboss.as] (MSC service thread 1-2) JBoss AS 7.0.2.Final "Arc" started in 208029ms - Started 430 of 497 services (67 services are passive or on-demand)</p><p>22:43:33,860 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "JBPMRestClient.war"</p><p>22:43:33,861 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "JBPMRest.war"</p><p>22:43:33,861 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "jbpm-gwt-console.war"</p><p>22:43:33,861 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "jbpm-gwt-console-server.war"</p><p>22:43:33,861 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "drools-guvnor.war"</p><p>22:43:33,861 INFO&#160; [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "designer.war"</p><p>23:22:48,542 INFO&#160; [stdout] (http-localhost-127.0.0.1-8080-4) line--------------------------------&lt;html&gt;&lt;head&gt;&lt;title&gt;JBoss Web/7.0.1.Final - Error report&lt;/title&gt;&lt;style&gt;&lt;!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--&gt;&lt;/style&gt; &lt;/head&gt;&lt;body&gt;&lt;h1&gt;HTTP Status 408 - The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser&lt;/h1&gt;&lt;HR size="1" noshade="noshade"&gt;&lt;p&gt;&lt;b&gt;type&lt;/b&gt; Status report&lt;/p&gt;&lt;p&gt;&lt;b&gt;message&lt;/b&gt; &lt;u&gt;The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;description&lt;/b&gt; &lt;u&gt;The client did not produce a request within the time that the server was prepared to wait (The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser).&lt;/u&gt;&lt;/p&gt;&lt;HR size="1" noshade="noshade"&gt;&lt;h3&gt;JBoss Web/7.0.1.Final&lt;/h3&gt;&lt;/body&gt;&lt;/html&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>23:22:48,543 INFO&#160; [stdout] (http-localhost-127.0.0.1-8080-4) Authentication------------------------&lt;html&gt;&lt;head&gt;&lt;title&gt;JBoss Web/7.0.1.Final - Error report&lt;/title&gt;&lt;style&gt;&lt;!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--&gt;&lt;/style&gt; &lt;/head&gt;&lt;body&gt;&lt;h1&gt;HTTP Status 408 - The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser&lt;/h1&gt;&lt;HR size="1" noshade="noshade"&gt;&lt;p&gt;&lt;b&gt;type&lt;/b&gt; Status report&lt;/p&gt;&lt;p&gt;&lt;b&gt;message&lt;/b&gt; &lt;u&gt;The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;description&lt;/b&gt; &lt;u&gt;The client did not produce a request within the time that the server was prepared to wait (The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser).&lt;/u&gt;&lt;/p&gt;&lt;HR size="1" noshade="noshade"&gt;&lt;h3&gt;JBoss Web/7.0.1.Final&lt;/h3&gt;&lt;/body&gt;&lt;/html&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Can you please throw some light on this .</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Regards</p><p>Sachin</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/739546#739546">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>