Re: [AOLSERVER] AOLServer 4.0.10 and Mac OS X 10.4.6

2006-06-01 Thread Hérick Moniz
Yes, maxiput is set to [expr 20 * 1024 * 1024].  But the problem is  
not when I upload file to the server but when I download file from it.



Herick


Hérick Moniz, directeur du développement technologique
[EMAIL PROTECTED]
__
Disques RSB Inc.
8400, Côte-de-Liesse
Montréal, QC  H4T 1G7
Téléphone : 514.342.8511 poste 228
Télécopieur :  514.342.0401
Sans-frais : 1.800.361.8153



On Jun 1, 2006, at 9:36 AM, Vinod Kurup wrote:


On 6/1/06, Hérick Moniz [EMAIL PROTECTED] wrote:

I got a strange bug with aolserver on the latest version of Mac OS X,
on PPC or Intel. Everything compile fine, with gcc4 or gcc 3.3, and
the software seems to run fine but I am not able to transfer file
larger then 100 Kb. The transfer start but stop without any error or
warning.


Have you set the 'maxinput' parameter in nssock?

http://www.mail-archive.com/aolserver@listserv.aol.com/msg08208.html

Vinod

--
Vinod Kurup, MD
[EMAIL PROTECTED]
http://kurup.org


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to  
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the  
Subject: field of your email blank.





--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] AOLServer 4.0.10 and Mac OS X 10.4.6

2006-06-01 Thread Nathan Folkman
I believe the issue he's referring to is happening when trying to 
retrieve large files from the server, and not an issue with trying to 
post a large amount of data. I'm actually seeing the same issue as well 
when trying to fetch a large file, and am in the middle of trying to 
debug further.


When dealing with sending data to the server, however, there are two 
configuration options that come into play:


1. The maxinput parameter, which is the one you mentioned, is the 
maximum size for the request and headers. By default this is set to be ~1M.
2. The new ns_limits -maxupload parameter, which is the maximum size 
allowed for the content portion of the request. An example would be a 
the content-length for a file upload. The default for this is ~10M.


server1:nscp 1 ns_limits list
default

server1:nscp 2 ns_limits get default
nrunning 0 nwaiting 0 ntimeout 0 ndropped 0 noverflow 0 maxwait 100 
maxupload 1024 timeout 60 maxrun 100


So when a request is received, the server first consumes, and parses, 
the request and headers (checking maxinput), then reads the rest of 
the content (checking maxupload).


Hope that helps!

- n

[EMAIL PROTECTED] wrote:

On 6/1/06, Hérick Moniz [EMAIL PROTECTED] wrote:

I got a strange bug with aolserver on the latest version of Mac OS X,
on PPC or Intel. Everything compile fine, with gcc4 or gcc 3.3, and
the software seems to run fine but I am not able to transfer file
larger then 100 Kb. The transfer start but stop without any error or
warning.


Have you set the 'maxinput' parameter in nssock?

http://www.mail-archive.com/aolserver@listserv.aol.com/msg08208.html

Vinod




--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] AOLServer 4.0.10 and Mac OS X 10.4.6

2006-06-01 Thread Nathan Folkman
Interesting... Good news is that I can definitely reproduce. :-) I'll 
take a look. Interestingly the response headers seem to be correct:


-rw-r--r--   1 shmooved  shmooved  173551012 Apr 21 10:41 
Desktop/Inbox/cvs.zip


http://10.0.1.3:8000/cvs.zip

GET /cvs.zip HTTP/1.1
Host: 10.0.1.3:8000
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; 
rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5

Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive

HTTP/1.x 200 OK
Last-Modified: Fri, 21 Apr 2006 14:41:41 GMT
MIME-Version: 1.0
Date: Thu, 01 Jun 2006 13:44:16 GMT
Server: AOLserver/4.5.0a
Content-Type: application/zip
Content-Length: 173551012
Connection: keep-alive

I'll post more once I find something. Thanks!

- n

[EMAIL PROTECTED] wrote:

Hi,

I got a strange bug with aolserver on the latest version of Mac OS X, 
on PPC or Intel. Everything compile fine, with gcc4 or gcc 3.3, and 
the software seems to run fine but I am not able to transfer file 
larger then 100 Kb. The transfer start but stop without any error or 
warning.


I have try to patch conn.c as suggest for gcc4 without success. I have 
scan google for a fix without any help !


Any suggestions ?


Thanks



Herick



Hérick Moniz, directeur du développement technologique
[EMAIL PROTECTED]
http://www.postedecoute.ca/
__
Disques RSB Inc.
8400, Côte-de-Liesse
Montréal, QC  H4T 1G7
Téléphone : 514.342.8511 poste 228
Télécopieur :  514.342.0401
Sans-frais : 1.800.361.8153


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to 
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the 
Subject: field of your email blank.



--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] AOLServer 4.0.10 and Mac OS X 10.4.6

2006-06-01 Thread Hérick Moniz
Any thing I could look on my side ? I got this only on Mac OS X  
10.4.X. Everything is fine on Mac OS X 10.3.9


Could it be related to GCC4 the default compiler on 10.4.X ?

Thanks for your help !


Herick

On Jun 1, 2006, at 10:20 AM, Nathan Folkman wrote:

Interesting... Good news is that I can definitely reproduce. :-)  
I'll take a look. Interestingly the response headers seem to be  
correct:


-rw-r--r--   1 shmooved  shmooved  173551012 Apr 21 10:41 Desktop/ 
Inbox/cvs.zip


http://10.0.1.3:8000/cvs.zip

GET /cvs.zip HTTP/1.1
Host: 10.0.1.3:8000
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv: 
1.8.0.3) Gecko/20060426 Firefox/1.5.0.3
Accept: text/xml,application/xml,application/xhtml+xml,text/ 
html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5

Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive

HTTP/1.x 200 OK
Last-Modified: Fri, 21 Apr 2006 14:41:41 GMT
MIME-Version: 1.0
Date: Thu, 01 Jun 2006 13:44:16 GMT
Server: AOLserver/4.5.0a
Content-Type: application/zip
Content-Length: 173551012
Connection: keep-alive

I'll post more once I find something. Thanks!

- n

[EMAIL PROTECTED] wrote:

Hi,

I got a strange bug with aolserver on the latest version of Mac OS  
X, on PPC or Intel. Everything compile fine, with gcc4 or gcc 3.3,  
and the software seems to run fine but I am not able to transfer  
file larger then 100 Kb. The transfer start but stop without any  
error or warning.


I have try to patch conn.c as suggest for gcc4 without success. I  
have scan google for a fix without any help !


Any suggestions ?


Thanks



Herick



Hérick Moniz, directeur du développement technologique
[EMAIL PROTECTED]
http://www.postedecoute.ca/
__
Disques RSB Inc.
8400, Côte-de-Liesse
Montréal, QC  H4T 1G7
Téléphone : 514.342.8511 poste 228
Télécopieur :  514.342.0401
Sans-frais : 1.800.361.8153


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to  
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave  
the Subject: field of your email blank.



--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to  
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the  
Subject: field of your email blank.





--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] AOLServer 4.0.10 and Mac OS X 10.4.6

2006-06-01 Thread Nathan Folkman
Was talking with Jim about this issue earlier today. Seems to be an 
issue with OS X supplied poll(). We should have a fix checked in either 
today or tomorrow - stay tuned!


- n

[EMAIL PROTECTED] wrote:
Any thing I could look on my side ? I got this only on Mac OS X 
10.4.X. Everything is fine on Mac OS X 10.3.9


Could it be related to GCC4 the default compiler on 10.4.X ?

Thanks for your help !


Herick

On Jun 1, 2006, at 10:20 AM, Nathan Folkman wrote:

Interesting... Good news is that I can definitely reproduce. :-) I'll 
take a look. Interestingly the response headers seem to be correct:


-rw-r--r--   1 shmooved  shmooved  173551012 Apr 21 10:41 
Desktop/Inbox/cvs.zip


http://10.0.1.3:8000/cvs.zip

GET /cvs.zip HTTP/1.1
Host: 10.0.1.3:8000
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; 
rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 


Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive

HTTP/1.x 200 OK
Last-Modified: Fri, 21 Apr 2006 14:41:41 GMT
MIME-Version: 1.0
Date: Thu, 01 Jun 2006 13:44:16 GMT
Server: AOLserver/4.5.0a
Content-Type: application/zip
Content-Length: 173551012
Connection: keep-alive

I'll post more once I find something. Thanks!

- n

[EMAIL PROTECTED] wrote:

Hi,

I got a strange bug with aolserver on the latest version of Mac OS 
X, on PPC or Intel. Everything compile fine, with gcc4 or gcc 3.3, 
and the software seems to run fine but I am not able to transfer 
file larger then 100 Kb. The transfer start but stop without any 
error or warning.


I have try to patch conn.c as suggest for gcc4 without success. I 
have scan google for a fix without any help !


Any suggestions ?


Thanks



Herick



Hérick Moniz, directeur du développement technologique
[EMAIL PROTECTED]
http://www.postedecoute.ca/
__
Disques RSB Inc.
8400, Côte-de-Liesse
Montréal, QC  H4T 1G7
Téléphone : 514.342.8511 poste 228
Télécopieur :  514.342.0401
Sans-frais : 1.800.361.8153


--AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to 
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the 
Subject: field of your email blank.



--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to 
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the 
Subject: field of your email blank.





--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to 
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the 
Subject: field of your email blank.



--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.