- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- iPlanet file upload premature timeout
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 02:07 AM
тАО01-03-2002 02:07 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 05:26 AM
тАО01-03-2002 05:26 AM
Re: iPlanet file upload premature timeout
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 05:31 AM
тАО01-03-2002 05:31 AM
Re: iPlanet file upload premature timeout
First thread mentions about setting timeout and size:
http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1784.html
Second about analysing 408:
Analysing 408 errors
This error is highly unlikely to occur, because there is usually only a tiny interval of time
(milliseconds) between our 1) opening of the socket and 2) writing the HTTP data stream
through that socket. In exceptional circumstances, this interval may increase because of
some operations on providers computer systems e.g. we temporarily suspend an executing
process and this happens immediately after the socket was created. Or the two steps may
follow quickly on our systems, but the second step encounters an unreasonable delay on
the Internet. The acceptable interval between the two steps could also be set very low on
your Web server e.g. your server is very busy, and has become a bit 'impatient' with
attempted connections it views as a bit slow.
Any of these conditions may generate an 408 error. But they are all fairly unlikely to
occur. In normal IP communications, the time interval between the two steps should be
much less than 10 seconds, which should be completely acceptable to your Web server.
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 05:55 AM
тАО01-03-2002 05:55 AM
Re: iPlanet file upload premature timeout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 06:07 AM
тАО01-03-2002 06:07 AM
Solution# nettl -tn pduin pduout -e ns_ls_ip -tm 10000 -f trace -s 1024
That will start tracing to a file called "trace.TRC0" in the current directory. The size of the trace will be limited to 10Meg. Since this is not a production system that should be big enough.
Next, run the test from your client PC. Then stop tracing:
# nettl -tf -e all
Now you need to format the trace file. Create a file called "filter" with the following lines:
filter ip_saddr
filter ip_daddr
And run the following command:
# netfmt -lnN -c filter trace.TRC0 | more
That will dump all packets to and from the client PC. Hopefully from there you can get a better idea where things are going wrong - at least you'll know if its a real timeout or whether there's possibly something else wrong on the iPlanet side.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 07:12 AM
тАО01-03-2002 07:12 AM
Re: iPlanet file upload premature timeout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 07:47 AM
тАО01-03-2002 07:47 AM
Re: iPlanet file upload premature timeout
What's your form action?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 07:50 AM
тАО01-03-2002 07:50 AM
Re: iPlanet file upload premature timeout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2002 08:23 AM
тАО01-03-2002 08:23 AM
Re: iPlanet file upload premature timeout
Check to make sure the script hasn't imposed a limit:
Many scripts have a line like
### Set Maximum Upload size to 2MB (prevent ppl from uploading
extremely large files or other such malicious stuff)
$CGI::POST_MAX = 2048;
If you're trying to read the whole file into memory, you may be running into a ulimit.
Here's some sample scripts/techiques
http://www.arq.net/~chogg/httpupload.htm
http://stein.cshl.org/WWW/software/CGI/