Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

CGI Limitations with MicroFocus NetExpress?
Can anyone point me to specs for MicroFocus's CGI support in
NetExpress?

I am finding a limitation of approximately 4K for ACCEPT verbs against
a CGI page with large textual input fields--not sure where the culprit
is, but I'm sure I should be able to extend that limitation.

I am running apache on Windows2000, and I am developing the
server-side code using NetExpress.

Thanks.

Dick McMullen

Report this thread to moderator Post Follow-up to this message
Old Post
Dick McMullen
08-08-04 08:55 PM


Re: CGI Limitations with MicroFocus NetExpress?
Are you looking at all the other generated source files?  As I recall
there's two other source files that gets generated when you first
generate a page in your project and complete it.  Are you looking at
those?  I remember pushing a lot of data around in NetExpress, so I'm
not really sure exactly what is going on in your case.

My first thought is that it has a default receipt value in one of
these other files that you are exceeding.  Of course, there's other
possibilities, but if you want to ask any more questions, just reply.

Though I have several references here in hand, I don't know of any
online references or anything that I can point you to.  Sorry.

On 8 Aug 2004 10:41:57 -0700, dick@stillwater-mcmullens.net (Dick
McMullen) wrote:

>Can anyone point me to specs for MicroFocus's CGI support in
>NetExpress?
>
>I am finding a limitation of approximately 4K for ACCEPT verbs against
>a CGI page with large textual input fields--not sure where the culprit
>is, but I'm sure I should be able to extend that limitation.
>
>I am running apache on Windows2000, and I am developing the
>server-side code using NetExpress.


Report this thread to moderator Post Follow-up to this message
Old Post
Glenn Someone
08-08-04 08:55 PM


Re: CGI Limitations with MicroFocus NetExpress?
dick@stillwater-mcmullens.net (Dick McMullen) wrote

> I am finding a limitation of approximately 4K for ACCEPT verbs against
> a CGI page with large textual input fields--not sure where the culprit
> is, but I'm sure I should be able to extend that limitation.
>
> I am running apache on Windows2000, and I am developing the
> server-side code using NetExpress.

I would assume that you are using POST method as most browsers have a
lower limit than this for GET method - eg IE is limited to total of
2083 in the URL string.

Check your apache configuration, for example for:

LimitRequestBody
LimitRequestFields

Report this thread to moderator Post Follow-up to this message
Old Post
Richard
08-09-04 08:55 AM


Re: CGI Limitations with MicroFocus NetExpress?
Now that I got to look at one of my old projects...

The other poster is right.  Look at whether you are using GET, or POST
as a CGI exec method.  There is a limitation on how many bytes can be
passed under GET method.

Look at your CPF file.  The fields there must match your CPY file.

On 8 Aug 2004 10:41:57 -0700, dick@stillwater-mcmullens.net (Dick
McMullen) wrote:

>Can anyone point me to specs for MicroFocus's CGI support in
>NetExpress?


Report this thread to moderator Post Follow-up to this message
Old Post
Glenn Someone
08-09-04 08:55 AM


Re: CGI Limitations with MicroFocus NetExpress?
Hi Dick,

Which version (and FixPack level) of Net Express are you running? There was
an issue regarding a 4K limitation of data handled by CGI ACCEPT and DISPLAY
statements in the base release of Net Express 3.1, which was corrected in
the Accept/Display CGI Syntax Fixpack (acc00n31.exe).

If you're running the base release of Net Express 3.1, I would strongly
recommend upgrading to the very latest fix level -- you can download these
from http://supportline.microfocus.com/  .

SimonT.



Report this thread to moderator Post Follow-up to this message
Old Post
Simon Tobias
08-09-04 01:55 PM


Re: CGI Limitations with MicroFocus NetExpress?
All,

1)  I am using POST, not GET, so I believe I am OK there;
2)  apache reports the appropriate content_length after the POST, but
I will check the apache config;
3)  The NetExpress 4K limitation sounds like it may be the cause.  I
will also check that.

Thanks to all of you for your ideas.

Dick

"Simon Tobias" <Simon.Tobias@nospam.microfocus.com> wrote in message news:<cf7gjg$4uh$1@hyp
erion.microfocus.com>...
> Hi Dick,
>
> Which version (and FixPack level) of Net Express are you running? There wa
s
> an issue regarding a 4K limitation of data handled by CGI ACCEPT and DISPL
AY
> statements in the base release of Net Express 3.1, which was corrected in
> the Accept/Display CGI Syntax Fixpack (acc00n31.exe).
>
> If you're running the base release of Net Express 3.1, I would strongly
> recommend upgrading to the very latest fix level -- you can download these
> from http://supportline.microfocus.com/  .
>
> SimonT.

Report this thread to moderator Post Follow-up to this message
Old Post
Dick McMullen
08-11-04 01:55 AM


Re: CGI Limitations with MicroFocus NetExpress?
All,

1)  I am using POST, not GET, so I believe I am OK there;
2)  apache reports the appropriate content_length after the POST, but
I will check the apache config;
3)  The NetExpress 4K limitation sounds like it may be the cause.  I
will also check that.

Thanks to all of you for your ideas.

Dick

"Simon Tobias" <Simon.Tobias@nospam.microfocus.com> wrote in message news:<cf7gjg$4uh$1@hyp
erion.microfocus.com>...
> Hi Dick,
>
> Which version (and FixPack level) of Net Express are you running? There wa
s
> an issue regarding a 4K limitation of data handled by CGI ACCEPT and DISPL
AY
> statements in the base release of Net Express 3.1, which was corrected in
> the Accept/Display CGI Syntax Fixpack (acc00n31.exe).
>
> If you're running the base release of Net Express 3.1, I would strongly
> recommend upgrading to the very latest fix level -- you can download these
> from http://supportline.microfocus.com/  .
>
> SimonT.

Report this thread to moderator Post Follow-up to this message
Old Post
Dick McMullen
08-11-04 01:55 AM


Re: CGI Limitations with MicroFocus NetExpress?
Now that I got to look at one of my old projects...

The other poster is right.  Look at whether you are using GET, or POST
as a CGI exec method.  There is a limitation on how many bytes can be
passed under GET method.

Look at your CPF file.  The fields there must match your CPY file.

On 8 Aug 2004 10:41:57 -0700, dick@stillwater-mcmullens.net (Dick
McMullen) wrote:

>Can anyone point me to specs for MicroFocus's CGI support in
>NetExpress?


Report this thread to moderator Post Follow-up to this message
Old Post
Glenn Someone
08-15-04 08:55 PM


Re: CGI Limitations with MicroFocus NetExpress?
dick@stillwater-mcmullens.net (Dick McMullen) wrote

> I am finding a limitation of approximately 4K for ACCEPT verbs against
> a CGI page with large textual input fields--not sure where the culprit
> is, but I'm sure I should be able to extend that limitation.
>
> I am running apache on Windows2000, and I am developing the
> server-side code using NetExpress.

I would assume that you are using POST method as most browsers have a
lower limit than this for GET method - eg IE is limited to total of
2083 in the URL string.

Check your apache configuration, for example for:

LimitRequestBody
LimitRequestFields

Report this thread to moderator Post Follow-up to this message
Old Post
Richard
08-16-04 01:55 AM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

Cobol archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 04:34 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.