I have a problem. I created jsp. The size of it around 330 kb. It is work. But if I add new controls in jsp I have exception about jsp limit. I know, jsp have limit of size. It is java specification. The question in other.
How can I make my jsp as small as possible? I tryed to use <jsp:include>. But it is not work good. At first, the page open process required more time. At second, in some cases firefox have error and crash. And at fird my included jsp must have <iframe>. I have javascript error ( tagName have not property ) then open it. This is a function where I have error: getForm: function(control) { if (typeof control.form == "undefined") { // There is a span around the control go through parents until we find the form element var candidateForm = control; while (candidateForm.tagName.toLowerCase() != "form") candidateForm = candidateForm.parentNode; return candidateForm; } else { // We have directly a form control return control.form; } } What can You offer to me? |
Administrator
|
> I have a problem. I created jsp. The size of it around 330 kb. It is
> work. > But if I add new controls in jsp I have exception about jsp limit. I > know, > jsp have limit of size. It is java specification. The question in > other. Your JSP container must have a way of changing that limit. > How can I make my jsp as small as possible? > > I tryed to use <jsp:include>. But it is not work good. > At first, the page open process required more time. > At second, in some cases firefox have error and crash. > And at fird my included jsp must have <iframe>. I have javascript > error ( > tagName have not property ) then open it. This is a function where I > have > error: > getForm: function(control) { > if (typeof control.form == "undefined") { > // There is a span around the control go through parents > until > we find the form element > var candidateForm = control; > while (candidateForm.tagName.toLowerCase() != "form") > candidateForm = candidateForm.parentNode; > return candidateForm; > } else { > // We have directly a form control > return control.form; > } > } isn't? Do you have a reproducible case you can send us? > > What can You offer to me? Not much I fear ;-) -Erik -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Erik Bruchez пишет:
>> I have a problem. I created jsp. The size of it around 330 kb. It is >> work. >> But if I add new controls in jsp I have exception about jsp limit. I >> know, >> jsp have limit of size. It is java specification. The question in other. > > Your JSP container must have a way of changing that limit. I am use JBoss 4.0.4. How can I to change limit? The google search don`t help me. > >> How can I make my jsp as small as possible? >> >> I tryed to use <jsp:include>. But it is not work good. >> At first, the page open process required more time. >> At second, in some cases firefox have error and crash. >> And at fird my included jsp must have <iframe>. I have javascript >> error ( >> tagName have not property ) then open it. This is a function where I >> have >> error: >> getForm: function(control) { >> if (typeof control.form == "undefined") { >> // There is a span around the control go through parents until >> we find the form element >> var candidateForm = control; >> while (candidateForm.tagName.toLowerCase() != "form") >> candidateForm = candidateForm.parentNode; >> return candidateForm; >> } else { >> // We have directly a form control >> return control.form; >> } >> } > > I am not sure what the exact question is. What is working and what > isn't? Do you have a reproducible case you can send us? > >> >> What can You offer to me? > > Not much I fear ;-) > > -Erik > > -- > Orbeon Forms - Web Forms for the Enterprise Done the Right Way > http://www.orbeon.com/ > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Igor,
On Fri, Apr 25, 2008 at 12:46 AM, Igor Baz <[hidden email]> wrote: > I am use JBoss 4.0.4. How can I to change limit? The google search don`t > help me. Have you tried asking this question in a JBoss mailing list or forum? This seems to be purely a JSP/JBoss issue. > > I am not sure what the exact question is. What is working and what isn't? > Do you have a reproducible case you can send us? > > > My case is large and required long time installation. Maybe you can take it one problem at a time, and try to create a simple reproducible test case that shows one specific problem, so people here on the mailing list can help you. Alex -- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise Orbeon's Blog: http://www.orbeon.com/blog/ Personal Blog: http://avernet.blogspot.com/ Twitter - http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Free forum by Nabble | Edit this page |