473,396 Members | 2,158 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Upload huge file size: "The page cannot be displayed" browser error

I have an upload file operation in the web application. UploadForm.jsp
is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.

//UploadForm.jsp
<FORM NAME="InputForm" ACTION="UploadAction.jsp" METHOD="POST"
enctype=multipart/form-data>
<input type="file" name="fileName">
//etc ...
</FORM>

After I deploy the application to the web server, if I upload a small
file size, it is fine.
But if I upload a huge file size more than 10MB, then it cannot even go
to UploadAction.jsp.
After 30 seconds, it has error "The page cannot be displayed" shown on
the web browser.
It cannot even go to UploadAction.jsp. But both UploadForm.jsp and
UnploadAction.jsp are
in the same machine.

Interestingly, if I test in local machine, I can upload any file size
without problem.
I don't have any hints now. any ideas?
please advise. thanks!!

Jul 23 '05 #1
24 2703
<jr********@hotmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
[...]
After 30 seconds, it has error "The page cannot be displayed" shown on
the web browser.

[...]
What browser says that? If you're using IE, then either get a real browser
or turn off the "friendly error messages", and come back with a real error
message. Otherwise, look at your logs and find the real error message.
Jul 23 '05 #2
Yes. This is a typical Microsoft Internet Explorer message when the page
"expires". It probably tries to redirect to somewhere. Perhaps back so you
can send anew?

Anyhow, this is an explorer issue. If you made the page that gives the
error, then you should change it so that you do not have to go back in
history but rather do a:

document.location = "new_url.html";

Hogne T.
Jul 23 '05 #3
<jr********@hotmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
I have an upload file operation in the web application. UploadForm.jsp
is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.

//UploadForm.jsp
<FORM NAME="InputForm" ACTION="UploadAction.jsp" METHOD="POST"
enctype=multipart/form-data>
<input type="file" name="fileName">
//etc ...
</FORM>

After I deploy the application to the web server, if I upload a small
file size, it is fine.
But if I upload a huge file size more than 10MB, then it cannot even go
to UploadAction.jsp.
After 30 seconds, it has error "The page cannot be displayed" shown on
the web browser.
It cannot even go to UploadAction.jsp. But both UploadForm.jsp and
UnploadAction.jsp are
in the same machine.

Interestingly, if I test in local machine, I can upload any file size
without problem.
I don't have any hints now. any ideas?
please advise. thanks!!


I was curious about this too (just wrote an upload multi-part handler/filter
for HttpRequest) - anyhow, sounds annoying. I found an article on how to
change it on the client, but getting your clients to do this doesn't sound
realistic:

---
When loading a page, IE starts a timer. If the page is not fully loaded at
the end of the timeout, you get an error message and the page stops loading.

The default timeout in IE 4.0 SP2, and IE 5.x is 5 minutes. To alter the
timeout, use Regedt32 to navigate to:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet
Settings

On the Edit menu, Add Value name ReceiveTimeout, as a type REG_DWORD. In the
DWORD Editor, set the Decimal Radix. Enter the timeout in milliseconds.

Example: To set a 6 minute timeout, enter 360000 (6 minutes * 60
Seconds/Minute * 1000 Milliseconds/Second).

You must shutdown and restart your computer for this change to take effect.

---

Direct Link: http://www.jsiinc.com/SUBD/tip1900/rh1937.htm

Jul 23 '05 #4
thanks for all your responses. couple comments and need further
advices...

1) This is IE 6.0. so we identify this error is client-side problem?

2) I turn off the "friendly error messages in browser setting, but
still display
"The page cannot be displayed" in the web browser. The problem is I
cannot see any log errors.

3) This is just a simple POST from UploadForm.jsp to UploadAction.jsp,
I don't know why
IE tries to redirect to somewhere. This problem occurs when try to
upload a huge file.
any workarounds to that?

4) I added ReceiveTimeout in regedit, but still the same result.
any ideas? thanks a lot!!

Jul 23 '05 #5
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:fB**************@merlyn.demon.co.uk...
JRS: In article <11**********************@f14g2000cwb.googlegroups .com>
, dated Tue, 4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :
I have an upload file operation in the web application. UploadForm.jsp
is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.


Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like the
difference between cat and cattle. See below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of
news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates,
sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items,
links.

I have an upload file operation in the web application. *UploadForm.jsp*


I believe .jsp is a Java Server Pages extension, while .js is a JavaScript
extension.

JS: http://filext.com/detaillist.php?extdetail=JS
JSP: http://filext.com/detaillist.php?extdetail=JSP

Dr John, unless you want to be considered adept at being a prick AND a dolt,
maybe you should discover the difference between a .js extension and a .jsp
extension before you shoot your condescending mouth off.
Jul 23 '05 #6
Tom Dyess wrote:
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:fB**************@merlyn.demon.co.uk...
JRS: In article
<11**********************@f14g2000cwb.googlegroups .com> , dated Tue,
4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :
I have an upload file operation in the web application.
UploadForm.jsp is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.


Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like
the difference between cat and cattle. See below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00
IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of
news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates,
sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items,
links.

I have an upload file operation in the web application.
*UploadForm.jsp*


I believe .jsp is a Java Server Pages extension, while .js is a
JavaScript extension.

JS: http://filext.com/detaillist.php?extdetail=JS
JSP: http://filext.com/detaillist.php?extdetail=JSP

Dr John, unless you want to be considered adept at being a prick AND
a dolt, maybe you should discover the difference between a .js
extension and a .jsp extension before you shoot your condescending
mouth off.


Tom.... you let him off the hook! I was dangling bait and you snatched the
line away!

- Virgil
Jul 23 '05 #7
"Virgil Green" <vj*@DESPAMobsydian.com> wrote in message
news:QK*****************@newssvr12.news.prodigy.co m...
Tom Dyess wrote:
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:fB**************@merlyn.demon.co.uk...
JRS: In article
<11**********************@f14g2000cwb.googlegroups .com> , dated Tue,
4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :

I have an upload file operation in the web application.
UploadForm.jsp is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.

Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like
the difference between cat and cattle. See below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00
IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of
news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates,
sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items,
links.

I have an upload file operation in the web application.
*UploadForm.jsp*


I believe .jsp is a Java Server Pages extension, while .js is a
JavaScript extension.

JS: http://filext.com/detaillist.php?extdetail=JS
JSP: http://filext.com/detaillist.php?extdetail=JSP

Dr John, unless you want to be considered adept at being a prick AND
a dolt, maybe you should discover the difference between a .js
extension and a .jsp extension before you shoot your condescending
mouth off.


Tom.... you let him off the hook! I was dangling bait and you snatched the
line away!

- Virgil


Lol. Sorry, people like that aggravate me. He deserved a thumping.
Jul 23 '05 #8
Tom Dyess wrote:
Dr John Stockton wrote: <snip>
Firstly, if you wish to be considered an adept programmer, you
should discover the difference between java and javascript; ...

<snip> Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should discover the difference
between a .js extension and a .jsp extension before you
shoot your condescending mouth off.


When a question that appears to have nothing to do with javascript what
so ever is cross-posted to comp.lang.javascript there is an implication
that whoever cross-posted it has a misconception about the relationship
between javascript and the other technologies involved (Java/JSP
probably being the object of that misconception). It does not seem
unreasonable to encourage people to acquire sufficient understanding to
avoid posting questions to groups where their subject is off topic.

Incidentally, .js extensions on javascript URLs, and .jsp extensions on
Java Server Page URLs are completely arbitrary (merely conventions
and/or defaults) so there isn't really any difference between them.

Richard.
Jul 23 '05 #9

"Richard Cornford" <Ri*****@litotes.demon.co.uk> wrote in message
news:cr*******************@news.demon.co.uk...
Tom Dyess wrote:
Dr John Stockton wrote:

<snip>
Firstly, if you wish to be considered an adept programmer, you
should discover the difference between java and javascript; ...

<snip>
Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should discover the difference
between a .js extension and a .jsp extension before you
shoot your condescending mouth off.


When a question that appears to have nothing to do with javascript what
so ever is cross-posted to comp.lang.javascript there is an implication
that whoever cross-posted it has a misconception about the relationship
between javascript and the other technologies involved (Java/JSP
probably being the object of that misconception). It does not seem
unreasonable to encourage people to acquire sufficient understanding to
avoid posting questions to groups where their subject is off topic.

Incidentally, .js extensions on javascript URLs, and .jsp extensions on
Java Server Page URLs are completely arbitrary (merely conventions
and/or defaults) so there isn't really any difference between them.

Richard.


Cmon Richard, you're trying to justify this guy being a prick.

1. Very well known and standard convention is .jsp being a Java Server Pages
extension and .js a JavaScript extension. If I asked you what a .jsp file
was, most likely you would say something to the effect of, "probably a JSP
file," especially if you were implying you were an adept programmer like Dr
John did.

2. I didn't notice the cross reference before. I agree that it does not seem
unreasonable to encourage people to acquire bla bla.

3. It does seem unreasonable that he has to be a condescending prick about
it. I mean, why attempt to embarass someone asking for help. He didn't have
to reply; he went out of his way to be a prick, so I called him on it. I'm
going to boast a bit, but I'll bet if I conjure up enough creative juices, I
could be much better of a prick than he! Lol.
Jul 23 '05 #10
Richard Cornford wrote:
Tom Dyess wrote:
Dr John Stockton wrote:

<snip>
Firstly, if you wish to be considered an adept programmer, you
should discover the difference between java and javascript; ...

<snip>
Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should discover the difference
between a .js extension and a .jsp extension before you
shoot your condescending mouth off.


When a question that appears to have nothing to do with javascript
what so ever is cross-posted to comp.lang.javascript there is an
implication that whoever cross-posted it has a misconception about
the relationship between javascript and the other technologies
involved (Java/JSP probably being the object of that misconception).
It does not seem unreasonable to encourage people to acquire
sufficient understanding to avoid posting questions to groups where
their subject is off topic.


Actually, it just looks like he hit all the newsgroups that were likely to
have experienced web developers in them. Given the nature of his question,
I'd say that has a higher correlation than does the "I don't know the
difference between java and javascript" theory.

- Virgil

- Virgil
Jul 23 '05 #11
Tom Dyess wrote:
[...]
Dr John, unless you want to be considered adept at being a prick AND a dolt,
maybe you should discover the difference between a .js extension and a .jsp
extension before you shoot your condescending mouth off.


Then why is this posted to comp.lang.javascript at all?
--
Zif
Jul 23 '05 #12
rf
"Zifud" <zi***@hotmail.com.com> wrote
Tom Dyess wrote:
[...]
Dr John, unless you want to be considered adept at being a prick AND a dolt, maybe you should discover the difference between a .js extension and a ..jsp extension before you shoot your condescending mouth off.


Then why is this posted to comp.lang.javascript at all?


And why to alt.html. And why was it posted three times over a two day
period?

--
Cheers
Richard.
Jul 23 '05 #13
Tom Dyess wrote:
Richard Cornford wrote:
Tom Dyess wrote:
Dr John Stockton wrote: <snip>
Firstly, if you wish to be considered an adept programmer,
you should discover the difference between java and
javascript; ...

<snip>
Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should ...
<snip> ... It does not seem unreasonable to encourage people to
acquire sufficient understanding to avoid posting questions
to groups where their subject is off topic.

Incidentally, .js extensions on javascript URLs, and .jsp
extensions on Java Server Page URLs are completely arbitrary
(merely conventions and/or defaults) so there isn't really
any difference between them.

<snip> Cmon Richard, you're trying to justify this guy being a prick.
I was doing no more than pointing out that observing a question that has
no apparent relationship to the javascript programming language, but
posted to a javascript newsgroup, and reacting by pointing out that
there is no relationship between Java and javascript beyond a sequence
of characters in the names of each, is not unreasonable.

Unfortunately it is also not uncommonly necessary, so it is not that
surprising that such reactions should be terse. And it is also such a
rudimentary error (for a web developer) that it is not surprising that
such reactions should be less than polite (even ignoring the
demonstrated disregard for the Usenet convention of reading a group's
FAQ prior to posting questions to that group; where the appropriateness
of Java related questions on comp.lang.javascript is suitably
explained).
... . If I asked you what a .jsp file was, most likely you
would say something to the effect of, "probably a JSP file,"
I am capable of being (and inclined to be) much more precise than that,
and likely to be influenced in my response by the context in which the
question was asked.
especially if you were implying you
were an adept programmer like Dr John did.
Did he imply I was an adept programmer? I entirely missed that.
2. I didn't notice the cross reference before. ... <snip>

That was my assumption.
3. It does seem unreasonable that he has to be a condescending
prick about it.
You perceived condescension, within the cultural vagaries of the use of
English worldwide, and responded with unambiguous personal abuse? You
have no moral high ground.
I mean, why attempt to embarass someone asking for help.
1. So they can avoid the need to embarrass themselves again.
2. To avoid any recurrence of off topic postings from the individual
concerned.

<snip> ... I'm going to boast a bit, but I'll bet if I conjure
up enough creative juices, I could be much better of
a prick than he! Lol.


No boasting necessarily, I am already convinced of you abilities in that
area..

Richard.
Jul 23 '05 #14
Virgil Green wrote:
Dr John Stockton wrote:
JRS: In article
<11**********************@f14g2000cwb.googlegrou ps.com> , dated Tue,
4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :

I have an upload file operation in the web application.
UploadForm.jsp is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.


Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like
the difference between cat and cattle. See below.

Perhaps you could enlighten the possibly inept programmers among us as to
where javascript came into this discussion.


Considering that its cross-posted to alt.html, comp.lang.javascript and
comp.lang.java.programmer, do you need anyone to explain where
Javascript came into the discussion?
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #15
Previously in comp.lang.java.programmer,alt.html,comp.lang.javas cript,
Virgil Green <vj*@DESPAMobsydian.com> said:
Perhaps you could enlighten the possibly inept programmers among us as to
where javascript came into this discussion.


That would be in the headers, where it was crossposted to
comp.lang.javascript (among others).

--
Mark Parnell
http://www.clarkecomputers.com.au
Jul 23 '05 #16


"Richard Cornford" <Ri*****@litotes.demon.co.uk> wrote in message
news:cr*******************@news.demon.co.uk...
Tom Dyess wrote:
Richard Cornford wrote:
Tom Dyess wrote:
Dr John Stockton wrote:
<snip>
> Firstly, if you wish to be considered an adept programmer,
> you should discover the difference between java and
> javascript; ...
<snip>
Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should ... <snip> ... It does not seem unreasonable to encourage people to
acquire sufficient understanding to avoid posting questions
to groups where their subject is off topic.

Incidentally, .js extensions on javascript URLs, and .jsp
extensions on Java Server Page URLs are completely arbitrary
(merely conventions and/or defaults) so there isn't really
any difference between them. <snip>
Cmon Richard, you're trying to justify this guy being a prick.
I was doing no more than pointing out that observing a question that has
no apparent relationship to the javascript programming language, but
posted to a javascript newsgroup, and reacting by pointing out that
there is no relationship between Java and javascript beyond a sequence
of characters in the names of each, is not unreasonable.


"relationship to the javascript programming language." You've got to be
kidding me. Do you think that explaining something using formal nomenclature
makes it a more valid point? Why didn't you just type "Java?" How were you
trying to present yourself? Lol. If you are going to discuss something,
discuss the issue. Don't skirt around it with million dollar words with no
meaning, and if you are going to do it, don't use five dollar words. (that's
an analogy, folks!) People with half a brain see right through it. Let me
ask you this: did you not think he was being a prick? Do you think he could
have been more diplomatic? Yes or no only please.

Unfortunately it is also not uncommonly necessary, so it is not that
surprising that such reactions should be terse. And it is also such a
rudimentary error (for a web developer) that it is not surprising that
such reactions should be less than polite (even ignoring the
demonstrated disregard for the Usenet convention of reading a group's
FAQ prior to posting questions to that group; where the appropriateness
of Java related questions on comp.lang.javascript is suitably
explained).
Bla bla bla. No excuse to be a prick, life is too hard. People piss me off
every day, but I treat most with respect.

... . If I asked you what a .jsp file was, most likely you
would say something to the effect of, "probably a JSP file,"
I am capable of being (and inclined to be) much more precise than that,
and likely to be influenced in my response by the context in which the
question was asked.


Too bad you were incapable of being direct on that response. It much more
valuable. Ok, humor me, if someone new to Java asked you what a .jsp file
was, how would you respond? 100 words maximum please.

especially if you were implying you
were an adept programmer like Dr John did.
Did he imply I was an adept programmer? I entirely missed that.
It was an implied "you" meaning "one." Sorry, I should have said "especially
if one were implying that one was an adept programmer." Incase you are still
having trouble, the pronoun, "one" means Dr. John, not you meaning Richard.
Sheesh. Didn't think I had to spell it out, I mean this is a programmer's
forum for Christ's sake. Don't pretend to be obtuse.

2. I didn't notice the cross reference before. ...

<snip>

That was my assumption.


That was correct! No argument here. Still no reason for Dr. John to be a
prick.

3. It does seem unreasonable that he has to be a condescending
prick about it.
You perceived condescension, within the cultural vagaries of the use of
English worldwide, and responded with unambiguous personal abuse? You
have no moral high ground.


Fuck you. Hows that for moral high ground?. He attacked someone, I defended
them by attacking him back. I don't like bullies. You defended the attacker.
What does that make you? I no longer believe you are in any position to
judge my moral high ground.

I mean, why attempt to embarrass someone asking for help.


1. So they can avoid the need to embarrass themselves again.
2. To avoid any recurrence of off topic postings from the individual
concerned.


I'm assuming you agree with his position, otherwise I wouldn't say this. Do
you beat your kids for spilling milk? He should show some fucking restraint
and discipline. Maybe learn some cordiality. Maybe the guy's new. Ever think
Dr. John should instruct him on where the FAQ's are or at the very least
shut the fuck up? No, someone looking for help makes a mistake, Dr. John is
more than eager to rapes his ass and you are behind him waiting your turn.
What the fuck?


<snip>
... I'm going to boast a bit, but I'll bet if I conjure
up enough creative juices, I could be much better of
a prick than he! Lol.
No boasting necessarily, I am already convinced of you abilities in that
area..


You have no idea. Lol.
Richard.


With everloving regards,

Tom
Jul 23 '05 #17


"Richard Cornford" <Ri*****@litotes.demon.co.uk> wrote in message
news:cr*******************@news.demon.co.uk...
Tom Dyess wrote:
Richard Cornford wrote:
Tom Dyess wrote:
Dr John Stockton wrote:
<snip>
> Firstly, if you wish to be considered an adept programmer,
> you should discover the difference between java and
> javascript; ...
<snip>
Dr John, unless you want to be considered adept at being a
prick AND a dolt, maybe you should ... <snip> ... It does not seem unreasonable to encourage people to
acquire sufficient understanding to avoid posting questions
to groups where their subject is off topic.

Incidentally, .js extensions on javascript URLs, and .jsp
extensions on Java Server Page URLs are completely arbitrary
(merely conventions and/or defaults) so there isn't really
any difference between them. <snip>
Cmon Richard, you're trying to justify this guy being a prick.
I was doing no more than pointing out that observing a question that has
no apparent relationship to the javascript programming language, but
posted to a javascript newsgroup, and reacting by pointing out that
there is no relationship between Java and javascript beyond a sequence
of characters in the names of each, is not unreasonable.


"relationship to the javascript programming language." You've got to be
kidding me. Do you think that explaining something using formal nomenclature
makes it a more valid point? Why didn't you just type "Java?" How were you
trying to present yourself? Lol. If you are going to discuss something,
discuss the issue. Don't skirt around it with million dollar words with no
meaning, and if you are going to do it, don't use five dollar words. (that's
an analogy, folks!) People with half a brain (like me? maybe. Lol. Beat you
to it.) see right through it. Let me
ask you this: did you not think he was being a prick? Do you think he could
have been more diplomatic? Yes or no only please.

Unfortunately it is also not uncommonly necessary, so it is not that
surprising that such reactions should be terse. And it is also such a
rudimentary error (for a web developer) that it is not surprising that
such reactions should be less than polite (even ignoring the
demonstrated disregard for the Usenet convention of reading a group's
FAQ prior to posting questions to that group; where the appropriateness
of Java related questions on comp.lang.javascript is suitably
explained).
Bla bla bla. No excuse to be a prick, life is too hard. People piss me off
every day, but I treat most with respect. There is a differense between
being terse or kurt and being a prick. Terse is quick and to the point,
being a prick doesn't accomplish anything productive.

Terse: Please don't post java questions in the javascript newsgroups.
Prick: Bla bla if you aspire to being an adept programmer, bla bla I'm so
smart, you're so stoooopid.

... . If I asked you what a .jsp file was, most likely you
would say something to the effect of, "probably a JSP file,"
I am capable of being (and inclined to be) much more precise than that,
and likely to be influenced in my response by the context in which the
question was asked.


Too bad you were incapable of being direct on that response. It much more
valuable. What's wrong with the context in which I asked it? Ok, humor me,
if someone new to Java asked you what a .jsp file
was, how would you respond? 100 words maximum please. Do I need to provide a
setting as well?

especially if you were implying you
were an adept programmer like Dr John did.
Did he imply I was an adept programmer? I entirely missed that.
It was an implied "you" meaning "one." Sorry, I should have said "especially
if one were implying that one was an adept programmer." Incase you are still
having trouble, the pronoun, "one" means Dr. John, not you, meaning Richard.
Sheesh. Didn't think I had to spell it out, I mean this is a programmer's
forum for Christ's sake. Don't pretend to be obtuse to make a point, the
value of "one's" character it isn't worth it.

2. I didn't notice the cross reference before. ...

<snip>

That was my assumption.


That was correct! No argument here. Still no reason for Dr. John to be a
prick.

3. It does seem unreasonable that he has to be a condescending
prick about it.
You perceived condescension, within the cultural vagaries of the use of
English worldwide, and responded with unambiguous personal abuse? You
have no moral high ground.


Fuck you. Hows that for moral high ground?. He attacked someone, I defended
them by attacking him back. I don't like bullies. You defended the attacker.
What does that make you? I no longer believe you are in any position to
judge my moral high ground.

I mean, why attempt to embarrass someone asking for help.


1. So they can avoid the need to embarrass themselves again.
2. To avoid any recurrence of off topic postings from the individual
concerned.


I'm assuming you agree with his position, otherwise I wouldn't say this. Do
you beat your kids for spilling milk? He should show some fucking restraint
and discipline. Maybe learn some cordiality. Maybe the guy's new. Ever think
Dr. John should instruct him on where the FAQ's are or at the very least
shut the fuck up? No, someone looking for help makes a mistake, Dr. John is
more than eager to rape his ass and you are behind him waiting your turn.
What the fuck?


<snip>
... I'm going to boast a bit, but I'll bet if I conjure
up enough creative juices, I could be much better of
a prick than he! Lol.
No boasting necessarily, I am already convinced of you abilities in that
area..


You have no idea. Lol.
Richard.


With everloving regards,

Tom

Jul 23 '05 #18
On Wed, 5 Jan 2005 23:22:15 -0500, Tom Dyess wrote:
Ok, humor me, if someone new to Java asked you what a .jsp file
was, how would you respond?
<http://www.google.com/search?q=acronym+jsp>
<http://www.google.com/search?q=definition+%22java+server+pages%22>
..100 words maximum please.


No worries.

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #19
"Mark Parnell" <we*******@clarkecomputers.com.au> wrote in message
news:s7*******************************@markparnell .com.au...
Previously in comp.lang.java.programmer,alt.html,comp.lang.javas cript,
Virgil Green <vj*@DESPAMobsydian.com> said:
Perhaps you could enlighten the possibly inept programmers among us as to where javascript came into this discussion.


That would be in the headers, where it was crossposted to
comp.lang.javascript (among others).


That's not "in the discussion". That's where the question was asked... in
three newsgroups where one would likely find experienced web developers. The
OP never intimated that the issue was specific to Java, HTML, or JavaScript.

- Virgil
Jul 23 '05 #20
JRS: In article <Nw*******************@bignews1.bellsouth.net>, dated
Wed, 5 Jan 2005 14:53:08, seen in news:comp.lang.javascript, Tom Dyess
<td****@dysr.com> posted :
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:fB**************@merlyn.demon.co.uk...
JRS: In article <11**********************@f14g2000cwb.googlegroups .com>
, dated Tue, 4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :
I have an upload file operation in the web application. UploadForm.jsp
is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.


Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like the
difference between cat and cattle. See below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of
news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates,
sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items,
links.

I have an upload file operation in the web application. *UploadForm.jsp*


I believe .jsp is a Java Server Pages extension, while .js is a JavaScript
extension.

JS: http://filext.com/detaillist.php?extdetail=JS
JSP: http://filext.com/detaillist.php?extdetail=JSP

Dr John, unless you want to be considered adept at being a prick AND a dolt,
maybe you should discover the difference between a .js extension and a .jsp
extension before you shoot your condescending mouth off.

I feel sure that it must be better to be a prick than to be an arse; but
you seem to be an expert on the latter.

If you had been paying due attention to what I had posted - the article
was quite short - you would have seen an attribution line much like that
which heads the body of this article; it includes "seen in
news:comp.lang.javascript".

If you had been paying proper attention to where the article had been
posted, you would have observed that it was posted to all three of
comp.lang.java.programmer, alt.html, comp.lang.javascript.

If you had been paying attention to where your article was being posted,
as is your duty and also is a precaution against folly, you would have
observed that it was going to all three of comp.lang.java.programmer,
alt.html, comp.lang.javascript.

My signature (repeated; and you ought to know better than to quote
signatures, except when discussing them) might have given you at least a
clue to where I might have been reading the article.

Hunt : if you wish to be considered an adept user of News, one whose
judgement may be trustworthy, you should pay due attention to such
matters.
ISTM that you have, by your own efforts, been what I believe is termed
"shafted". A grovelling apology would be in order.

By the way, you are also a windbag.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #21
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:GL**************@merlyn.demon.co.uk...
JRS: In article <Nw*******************@bignews1.bellsouth.net>, dated
Wed, 5 Jan 2005 14:53:08, seen in news:comp.lang.javascript, Tom Dyess
<td****@dysr.com> posted :
"Dr John Stockton" <sp**@merlyn.demon.co.uk> wrote in message
news:fB**************@merlyn.demon.co.uk...
JRS: In article <11**********************@f14g2000cwb.googlegroups .com>
, dated Tue, 4 Jan 2005 20:27:31, seen in news:comp.lang.javascript,
jr********@hotmail.com posted :

I have an upload file operation in the web application. UploadForm.jsp
is the form,
and UploadAction.jsp is the form processing. The web server is
Websphere.

Firstly, if you wish to be considered an adept programmer, you should
discover the difference between java and javascript; it's much like the
difference between cat and cattle. See below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE
4
©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of
news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates,
sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items,
links.
I have an upload file operation in the web application. *UploadForm.jsp*


I believe .jsp is a Java Server Pages extension, while .js is a JavaScript
extension.

JS: http://filext.com/detaillist.php?extdetail=JS
JSP: http://filext.com/detaillist.php?extdetail=JSP

Dr John, unless you want to be considered adept at being a prick AND a
dolt,
maybe you should discover the difference between a .js extension and a
.jsp
extension before you shoot your condescending mouth off.

I feel sure that it must be better to be a prick than to be an arse; but
you seem to be an expert on the latter.

If you had been paying due attention to what I had posted - the article
was quite short - you would have seen an attribution line much like that
which heads the body of this article; it includes "seen in
news:comp.lang.javascript".


What's your point? You were being a shit to a new guy.

If you had been paying proper attention to where the article had been
posted, you would have observed that it was posted to all three of
comp.lang.java.programmer, alt.html, comp.lang.javascript.
How many times are you going to attempt to eloquently say the same thing?
You were being a shit to a new guy.

If you had been paying attention to where your article was being posted,
as is your duty and also is a precaution against folly, you would have
observed that it was going to all three of comp.lang.java.programmer,
alt.html, comp.lang.javascript.
Duty? C'mon, you're really laying it on thick now. You were being a shit to
a new guy.

My signature (repeated; and you ought to know better than to quote
signatures, except when discussing them) might have given you at least a
clue to where I might have been reading the article.
You were being a shit to a new guy.

Hunt : if you wish to be considered an adept user of News, one whose
judgement may be trustworthy, you should pay due attention to such
matters.
I'm not really interested in what you think of me. I didn't reply for your
admiration. You were being a shit to a new guy.


ISTM that you have, by your own efforts, been what I believe is termed
"shafted". A grovelling apology would be in order.
Yes, you should apologize for being a shit to the new guy.

By the way, you are also a windbag.


I've got more. I'll have a pint.
Jul 23 '05 #22
On Thu, 6 Jan 2005 15:29:24 -0500, Tom Dyess <td****@dysr.com> wrote:

Please learn how to post before doing it again.

[snip]
You [JRS] were being a shit to a new guy.


The OP is not new. There are several posts from the individual in both
cljs and ah. I haven't subscribed to cljp in a long time so I don't know
the OP is to be considered "new" there.

[snip]

Now that's cleared up, can this thread die? The OP was incorrect on either
count[1]. I very much doubt the mistake will happen again, so must this
argument persist?

Mike
[1] Posting to the wrong groups or confusing Java and Javascript.

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #23
>>
My signature (repeated; and you ought to know better than to quote
signatures, except when discussing them) might have given you at least a
clue to where I might have been reading the article.

Yeahhh...signature my a#%....some idiots will do anything to increase their
web traffic and page ranks! i pitty them: infact flames like this is what
they just need...to get quoted and quoted again!! look at the post Dr. made,
looks like he just read the X-posts headers and decided to fire away!
Jul 23 '05 #24
Harish wrote:
My signature (repeated; and you ought to know better than to quote
signatures, except when discussing them) might have given you at least a
clue to where I might have been reading the article.

Yeahhh...signature my a#%....some idiots will do anything to increase their
web traffic and page ranks! i pitty them: infact flames like this is what
they just need...to get quoted and quoted again!! look at the post Dr. made,
looks like he just read the X-posts headers and decided to fire away!


Are you actually as stupid as your post implies you are? Or are you just
trolling and trying to find somewhere to argue? The idea of John
Stockton needing to increase web page traffic borders on insane. It is
referenced by more people than John Stockton alone. It is directly
referenced from the comp.lang.javascript FAQ.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #25

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Joe | last post by:
I have an upload file operation in the web application. UploadForm.asp is the form, and UploadAction.asp is the form processing. //UploadForm.asp <FORM NAME="InputForm"...
14
by: VMI | last post by:
Everytime I open my machine's MSDN and look for a subject, when I double-click on anything, I get "The page cannot be displayed" . What's wrong?
1
by: JohnZing | last post by:
i tried to install asp.net forums all went ok, but after login i always get "Object moved to here." in firefox or "The page cannot be displayed" in IE when i hit refresh, the page loads fine. ...
1
by: emon.haider | last post by:
Hi guys, I just made a web application using ASP.Net and C#. The application compiles and works fine from my workstation, but after I uploaded it to my webserver, I am getting an error of "the...
9
by: Martin Eyles | last post by:
Hi, I have set up an asp.net website on another PC in order to test it. The site was fine on my PC, but on the new PC all the pages give the error "The Page Cannot Be Found". Some legacy pages...
1
by: VMI | last post by:
I wrote a web service whose only purpose is to update a field in a table (sql server). And everything works except for the browser window that opens up with "The page cannot be displayed" error...
2
by: spam1 | last post by:
Hi all, I'm not new to ASP.NET but I'm trying to get a simple Hello World page going on IIS 6.0 on Windows 2003. I'm connecting from the local machine. It comes back with the standard "The...
5
by: David Thielen | last post by:
Hi; We have our app up on a beta server. Sometimes people from outside the firewall get "The page cannot be displayed" when they try to access it. A couple of weird things about this: 1) If...
2
by: jhaxo | last post by:
I have a web page that I installed to IIS 6.0 from a web deployment project successfully. I am trying to deploy the same application to laptops that are running IIS 5.0. I am getting an error...
4
by: Peter | last post by:
I have the following code which works fine in IE6 and IE7 and FireFox, but when I run IE6 on Citrix I get "The page cannot be displayed" in the iframe. We don't have IE7 on Citrix so I can't try...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.