• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JSP Truncation

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm using the WebLogic Server 6.1. I have some jsps which are large in size having lots of fields. When I invoke the jsps through IE from the same machine where WebLogic is installed, I do not have nay problems. But when the jsps are invoked from a different machine in the network, the content gets abnormally truncated. Im not getting any server side errors.
Please let me know the solution for this.
Thanks
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
As far as i know, there is limit for the page content and it changes with the server. please look in to your server configuration or try including the include files in the jsp page.
have a nice time
 
Ranch Hand
Posts: 211
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Poola Can u be more specific???Satish why don't you post this in weblogic forumn.
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Satish,
Please follow this link. This may answer your question.
http://www.caucho.com/support/resin-interest/0207/0182.html
The link talks about Tomcat. But, we have had similar problems with Weblogic too.
So, try splitting your jsp into multiple jsp files and use run time include (<jsp:include page = "abc.jsp" /> )
not compile time include(<%@ include file="abc.jsp" %>
Good Luck,
Raji.
[ December 02, 2003: Message edited by: Raji ram ]
[ December 02, 2003: Message edited by: Raji ram ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic