Details
Description
Seam 2.3 compatibility with ICEmobile is desired.
-
Hide
- booking-web.ear
- 9.67 MB
- Ted Goddard
-
- booking-ejb.jar 20 kB
- booking-web.war 8.44 MB
- jboss-seam.jar 1.20 MB
- lib/jboss-el-1.0_02.CR6.jar 133 kB
- META-INF/application.xml 0.6 kB
- META-INF/jboss-deployment-structure.xml 0.5 kB
- META-INF/jboss-seam-booking-ds.xml 0.5 kB
- META-INF/MANIFEST.MF 0.1 kB
- META-INF/maven/.../pom.properties 0.1 kB
- META-INF/maven/.../booking-ear/pom.xml 8 kB
-
Hide
- booking.zip
- 1.38 MB
- Migration
-
- booking/booking-ear/build.xml 5 kB
- booking/booking-ear/pom.xml 7 kB
- booking/.../jboss-deployment-structure.xml 0.5 kB
- booking/.../jboss-seam-booking-ds.xml 0.5 kB
- booking/.../application-for-ant-only.xml 0.6 kB
- booking/booking-ejb/build.xml 7 kB
- booking/booking-ejb/pom.xml 4 kB
- booking/booking-ejb/.../Authenticator.java 0.1 kB
- booking/.../AuthenticatorAction.java 0.9 kB
- booking/booking-ejb/.../booking/Booking.java 4 kB
- booking/booking-ejb/.../BookingList.java 0.3 kB
- booking/.../BookingListAction.java 2 kB
- booking/booking-ejb/.../CameraBean.java 0.3 kB
- booking/.../CameraBeanAction.java 1 kB
- booking/booking-ejb/.../ChangePassword.java 0.3 kB
- booking/.../ChangePasswordAction.java 2 kB
- booking/booking-ejb/.../booking/Hotel.java 2 kB
- booking/booking-ejb/.../HotelBooking.java 0.4 kB
- booking/.../HotelBookingAction.java 3 kB
- booking/booking-ejb/.../HotelSearching.java 0.5 kB
- booking/.../HotelSearchingAction.java 2 kB
- booking/booking-ejb/.../Register.java 0.3 kB
- booking/booking-ejb/.../RegisterAction.java 2 kB
- booking/booking-ejb/.../booking/User.java 1 kB
- booking/booking-ejb/.../resources/import.sql 3 kB
- booking/booking-ejb/.../META-INF/ejb-jar.xml 0.7 kB
- booking/booking-ejb/.../persistence.xml 1 kB
- booking/booking-ejb/.../seam.properties 0.0 kB
- booking/booking-ejb/.../jboss-ejb3.xml 0.7 kB
- booking/booking-tests/build.xml 8 kB
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
Under consideration for EE 1.1 based on customer demand.
Show
Ted Goddard
added a comment - Under consideration for EE 1.1 based on customer demand.
Seam 2.3 does not appear to be processing components.xml as expected:
The documented form of disabling multipart-filter is not working:
<!--
<web:multipart-filter disabled="true"/>
-->
But the following is:
<component class="org.jboss.seam.web.MultipartFilter">
<property name="disabled">true</property>
</component>
Show
Ted Goddard
added a comment - - edited Seam 2.3 does not appear to be processing components.xml as expected:
The documented form of disabling multipart-filter is not working:
<!--
<web:multipart-filter disabled="true"/>
-->
But the following is:
<component class="org.jboss.seam.web.MultipartFilter">
<property name="disabled">true</property>
</component>
source code tree to build under seam 2.3 examples
A simple ICEmobile page has been added to the Seam booking example, tested on JBoss AS 7.1.1
http://localhost:8080/seam-booking
http://localhost:8080/seam-booking/camera.seam
ICEfaces was configured to not render on all pages:
<context-param>
<param-name>org.icefaces.render.auto</param-name>
<param-value>false</param-value>
</context-param>
but render on camera.seam:
<icecore:config render="true"/>
Beans were managed by JSF, so a more interesting test would continue with application changes that used Seam dependency injection for the ICEmobile pages.
Results were mixed:
<mobi:deviceStylesheet> and <mobi:dateSpinner> worked as desired. However, the image uploaded by camera component was null. The most likely cause is a Seam filter interfering with the multipart upload extraction.