Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 220708 Details for
Bug 388796
The "maxFormKeys limit exceeded keys" is encountered in RAP 1.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch to populate the viewer with 1000+ items
rap-shiro-demo.patch (text/plain), 3.18 KB, created by
Jon Sorensen
on 2012-09-04 17:56:51 EDT
(
hide
)
Description:
Patch to populate the viewer with 1000+ items
Filename:
MIME Type:
Creator:
Jon Sorensen
Created:
2012-09-04 17:56:51 EDT
Size:
3.18 KB
patch
obsolete
>diff --git a/rap.mail/rap.mail.launch b/rap.mail/rap.mail.launch >index c9accc2..449d78b 100644 >--- a/rap.mail/rap.mail.launch >+++ b/rap.mail/rap.mail.launch >@@ -16,7 +16,7 @@ > <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> > <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -console -consolelog"/> > <stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/> >-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.equinox.http.jetty.log.stderr.threshold=info -Dshiro.ini=file://${project_loc:rap.mail.product}/WEB-INF/shiro.ini -Dorg.slf4j.simplelogger.defaultlog=info -Dorg.slf4j.simplelogger.log.org.apache.shiro.web.filter.authc.FormAuthenticationFilter=trace -Dorg.slf4j.simplelogger.log.org.apache.shiro.web.filter.authc.LogoutFilter=trace -Dorg.slf4j.simplelogger.log.rap.shiro.login.jetty.IniShiroFilter=debug"/> >+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.equinox.http.jetty.log.stderr.threshold=info -Dshiro.ini=file://${project_loc:rap.mail.product}/WEB-INF/shiro.ini -Dorg.slf4j.simplelogger.defaultlog=info -Dorg.slf4j.simplelogger.log.org.apache.shiro.web.filter.authc.FormAuthenticationFilter=trace -Dorg.slf4j.simplelogger.log.org.apache.shiro.web.filter.authc.LogoutFilter=trace -Dorg.slf4j.simplelogger.log.rap.shiro.login.jetty.IniShiroFilter=debug -Dorg.eclipse.jetty.server.Request.maxFormKeys=1000"/> > <stringAttribute key="org.eclipse.rap.launch.browserMode" value="INTERNAL"/> > <stringAttribute key="org.eclipse.rap.launch.contextpath" value="/"/> > <stringAttribute key="org.eclipse.rap.launch.dataLocation" value="${workspace_loc}/.metadata/.plugins/org.eclipse.rap.ui.launch/rap.mail"/> >@@ -24,7 +24,7 @@ > <stringAttribute key="org.eclipse.rap.launch.libraryVariant" value="STANDARD"/> > <stringAttribute key="org.eclipse.rap.launch.logLevel" value="OFF"/> > <booleanAttribute key="org.eclipse.rap.launch.openBrowser" value="true"/> >-<intAttribute key="org.eclipse.rap.launch.port" value="8080"/> >+<intAttribute key="org.eclipse.rap.launch.port" value="8081"/> > <stringAttribute key="org.eclipse.rap.launch.servletName" value="logout"/> > <intAttribute key="org.eclipse.rap.launch.sessionTimeout" value="60"/> > <booleanAttribute key="org.eclipse.rap.launch.terminatePrevious" value="true"/> >diff --git a/rap.mail/src/rap/mail/NavigationView.java b/rap.mail/src/rap/mail/NavigationView.java >index 8242de1..5815a17 100644 >--- a/rap.mail/src/rap/mail/NavigationView.java >+++ b/rap.mail/src/rap/mail/NavigationView.java >@@ -124,10 +124,13 @@ > p1.addChild(to2); > p1.addChild(to3); > >- TreeObject to4 = new TreeObject("Inbox"); >+ > TreeParent p2 = new TreeParent("other@aol.com"); >- p2.addChild(to4); >- >+ for (int i = 0; i < 1000; i++) { >+ TreeObject to4 = new TreeObject("Inbox-" + i); >+ p2.addChild(to4); >+ } >+ > TreeParent root = new TreeParent(""); > root.addChild(p1); > root.addChild(p2);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 388796
: 220708