ZK - Open Source Ajax Java FrameworkZK - Open Source Ajax Java Framework

The server is temporarily out of service. Would you like to try again? (467: Incomplete Request)

jeets
17 May 2010 02:21:43 GMT
17 May 2010 02:21:43 GMT

Hi All,

we are getting
"The server is temporarily out of service. Would you like to try again? (467: Incomplete Request)"
as soon as the sbumit button is clicked.

It does not happen in every case; but we have noticed that it happens if you take time on the form before submitting it (about 2-3 mins) which
is practically necessary.

Any ideas ?


Regards

henrichen
23 May 2010 20:26:59 GMT
23 May 2010 20:26:59 GMT

Did you properly set your session timeout time?

diogoduarte
31 Jul 2011 04:30:39 GMT
31 Jul 2011 04:30:39 GMT

Hi:

Sudently i'm getting these errors, specially with IE9 last updates. I've also changed the encoding of eclipse to UTF-8 becouse i was getting some errors with i18n.
I had an application working well for many months, than the last updates with these settings cause me the error 467 for each row of the table i'm populating using a rowrender:

public class RowRenderDossierItems implements RowRenderer {

@Override
public void render(Row row, Object data) throws Exception {
@SuppressWarnings("unused")
final String bostamp = ((DossierStatus) data).getBostamp();
String status = "";
final int statusid;
statusid = ((DossierStatus) data).getStatus();

switch (statusid) {
case -2:
status = "Invalidada RCA";
break;
case -1:
status = "Invalidada DO";
break;
case 0:
status = "Fechada";
break;
case 1:
status = "Validada DO";
break;
case 2:
status = "Validada RCA";
break;
}
final String str1 = ((DossierStatus) data).getNmdos() + " - "
+ ((DossierStatus) data).getObrano() + " - "
+ ((DossierStatus) data).getNome();

final Date d1 = ((DossierStatus) data).getDataobra();

row.setTooltiptext(((DossierStatus) data).getDescricao());
row.setStyle("white-space:nowrap");
// -----------------
// set columns
// ----------------
// --- col 1
new Label(str1).setParent(row);
// --- col 2
new Label(DateFormat.getDateInstance(DateFormat.SHORT).format((d1)))
.setParent(row);
// --- col 3
final Label lb;
lb = new Label(status);
if (statusid == 2)
lb.setClass("concluded");
lb.setParent(row);
// --- col 4
new Label(((DossierStatus) data).getUser_send()).setParent(row);
// --- col 5
Button bt = new Button("Abrir");
//EventHandler evthd;
final String st=((DossierStatus) data).getBostamp();
bt.addEventListener("onClick", new EventListener() {

@Override
public void onEvent(Event event) throws Exception {
doAbrirOrdemDeCompra(st,lb);
}

});

bt.setParent(row);
// --- col 6
bt = new Button("Fechar");
bt.addEventListener("onClick", new EventListener() {

@Override
public void onEvent(Event event) throws Exception {
doFecharOrdemDeCompra(st,lb);
}

});
bt.setParent(row);


}

}

I´m using myBatis and SqlServer2005. so its a bit dificult to post the entire code.

diogoduarte
31 Jul 2011 06:18:07 GMT
31 Jul 2011 06:18:07 GMT

another thing: this behaviour doesnt apeers when running in localhost eclipse tomcat (tomcat 7- development and production)

drichm
21 Dec 2011 09:08:51 GMT
21 Dec 2011 09:08:51 GMT

I also have this problem, with IE only (ZK 5.0.9).

ZK's org.zkoss.zk.au.http.DHtmlUpdateServlet.process() sends back a 467 when there is no DesktopId parameter (dtid) in the request. This code refers to 'Bug 1929139: incomplete request (IE only)' but I cannot find that bug anywhere.

In my case this error only occurs on a page in a NEW session and only for IE8 (do not have IE6 or IE9). Chrome & Firefox work fine. If you manually refresh the page (F5) the problem goes away.

So my solution was to add a simple bit of Javascript which forces a page reload when

request.getSession().isNew() && Executions.getCurrent().isExplorer()
.

Dave

atul2012
14 Mar 2012 09:55:46 GMT
14 Mar 2012 09:55:46 GMT

Hi,
We are getting same error in firefox and ie also.
Please suggest a solution.
Atul

hare
8 May 2012 14:53:52 GMT
8 May 2012 14:53:52 GMT

Is there a solution yet? I have the same issue with IE8 and IE9!

jumperchen
9 May 2012 02:10:11 GMT
9 May 2012 02:10:11 GMT

Please provide a runnable example and post it to the bug tracker - http://tracker.zkoss.org/secure/Dashboard.jspa