2 Replies Latest reply on Oct 14, 2008 5:12 PM by srini.ragu

    Small documentation correction for websphere deployment

    srini.ragu

      I was trying to run the ejb3 seam booking example in to websphere. The documentation in the Seam reference is very nice, and thorough. There are couple of simple typo error in the documentation however.


      Though they are very simple, thought it will be very easy to change it.


      <include name="examples/jpa/lib/el-ri.jar" />


      should be:


      <include name="lib/el-ri.jar" />


      and


      <ejb-local-ref>
          <ejb-ref-name>jboss-seam-jee5/HotelSearchingAction</ejb-ref-name>
          <ejb-ref-type>Session</ejb-ref-type>
           <local-home></local-home>
          <local>org.jboss.seam.example.booking.HotelSAll of the examples and informaearching</local>
        </ejb-local-ref>
      
      should be:
      
      <ejb-local-ref>
          <ejb-ref-name>jboss-seam-jee5/HotelSearchingAction</ejb-ref-name>
          <ejb-ref-type>Session</ejb-ref-type>
           <local-home></local-home>
          <local>org.jboss.seam.example.booking.HotelSearching</local>
        </ejb-local-ref>



      Other than this, I just faced one undocumented roadblock in the reference documentation. That is:


      The application name 'Seam Booking', the space character in the application name caused some issue on loading some jars while the application gets initialized. I have to change it to 'SeamBooking' w/o spaces to avoid this. Did anybody else too had this? Should this be documented?


      I could send a patch, if needed for the above mentioned first two documentation fixes.