[JBoss JIRA] Updated: (JBSEAM-280) Integrate the page context with Seam Remoting
by Gavin King (JIRA)
[ http://jira.jboss.com/jira/browse/JBSEAM-280?page=all ]
Gavin King updated JBSEAM-280:
------------------------------
Fix Version/s: (was: 1.1)
> Integrate the page context with Seam Remoting
> ---------------------------------------------
>
> Key: JBSEAM-280
> URL: http://jira.jboss.com/jira/browse/JBSEAM-280
> Project: JBoss Seam
> Issue Type: Feature Request
> Components: Remoting
> Reporter: Shane Bryzak
> Assigned To: Shane Bryzak
> Original Estimate: 2 days
> Remaining Estimate: 2 days
>
> Support the propogation of Seam's Page Context between remoting requests.
> Functional Requirements:
> * The page context should be stored client-side in the global js variable Seam.pageContext.
> * The page context should be included in any Seam Remoting requests in the packet header, i.e.:
> <page-context><variable name="foo"><ref id="0"/></variable>...</page-context>
> * The page context should be returned by all remoting requests and replace the local copy
> * The client web page should be able to manipulate the page context, changing values, adding new values, etc via Seam.pageContext, e.g. Seam.pageContext.foo = bar;
> Non functional requirements:
> * Add a server-side convenience method to convert an object to serialized XML
> * Add a client-side convenience method to deserialize XML into an object
> * Create a <pageContext/> JSF tag that will embed a <script> block into the web page that initializes the page context when the page is first loaded
> * Modify the client-side remoting framework to support the dynamic discovery of object types. Use the __type field (or something similar) to identify the object type. This will mean that type stubs will not need to be explicitly imported.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 1 month
[JBoss JIRA] Created: (JBSEAM-334) Examples need changes to run on JBoss 5.x
by Stan Silvert (JIRA)
Examples need changes to run on JBoss 5.x
-----------------------------------------
Key: JBSEAM-334
URL: http://jira.jboss.com/jira/browse/JBSEAM-334
Project: JBoss Seam
Issue Type: Bug
Components: Examples
Affects Versions: 1.0.1
Reporter: Stan Silvert
Fix For: 1.1
The examples need to be updated so that they can deploy and run on JBoss 5.x.
JBoss 5.x ships with the RI JSF 1.2 implementation. To get the examples to run on JBoss 5.x, you need to remove this from web.xml:
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
</listener>
For JBoss 5.x, the listener for JSF 1.2 is added automatically, so you don't need to put it in web.xml.
Also, there are some third party libraries such as cglib that do not ship with JBoss 5.x. I was able to get the examples to run on JBoss 5.x by adding Seam's thridparty-all.jar to the server/default/lib directory. However, that's probably not the best way to handle the problem.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 1 month