0

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

asked 2010-05-17 02:21:43 +0800

jeets gravatar image jeets
18 2 3

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

delete flag offensive retag edit

13 Replies

Sort by » oldest newest

answered 2010-05-23 20:26:59 +0800

henrichen gravatar image henrichen
3869 2
ZK Team

Did you properly set your session timeout time?

link publish delete flag offensive edit

answered 2011-07-31 04:30:39 +0800

diogoduarte gravatar image diogoduarte
24

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.

link publish delete flag offensive edit

answered 2011-07-31 06:18:07 +0800

diogoduarte gravatar image diogoduarte
24

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

link publish delete flag offensive edit

answered 2011-12-21 09:08:51 +0800

drichm gravatar image drichm
15

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

link publish delete flag offensive edit

answered 2012-03-14 09:55:46 +0800

atul2012 gravatar image atul2012
6

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

link publish delete flag offensive edit

answered 2012-05-08 14:53:52 +0800

hare gravatar image hare
6

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

link publish delete flag offensive edit

answered 2012-05-09 02:10:11 +0800

jumperchen gravatar image jumperchen
3909 2 8
http://jumperchen.blogspo... ZK Team

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

link publish delete flag offensive edit

answered 2012-06-11 14:38:31 +0800

Neus gravatar image Neus
1415 14

The same is happening to me.
It only happens with IE8 and IE9. And I don't know why.

link publish delete flag offensive edit

answered 2012-06-12 00:53:27 +0800

henrichen gravatar image henrichen
3869 2
ZK Team

@Neus,

Can you help setup a runnable example that will replicate this issue and post it to the bug tracker? We are not able to replicate it.

http://tracker.zkoss.org/secure/Dashboard.jspa

Login with your ZK forum username and password if requested.

link publish delete flag offensive edit

answered 2012-06-12 10:23:48 +0800

Neus gravatar image Neus
1415 14

Unfortunately I can't reproduce it. I don't know why or when it happens...

link publish delete flag offensive edit
Your reply
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Question tools

Follow
2 followers

RSS

Stats

Asked: 2010-05-17 02:21:43 +0800

Seen: 1,817 times

Last updated: Jan 16 '14

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More