[OFBiz] Users - Bringing Old Custom Apps up to Date

Chris Howe cjhowe76013 at yahoo.com
Sun Mar 6 13:45:01 EST 2005


If you are bringing an older app up to date please
take note of SVN revision 4518.  web.xml in your
custom app needs to be updated so that it is listening
for your mount.

Change each of these lines that look like (these are
not grouped together):

       
<filter-class>org.ofbiz.content.webapp.control.ContextFilter</filter-class>
   
<listener><listener-class>org.ofbiz.content.webapp.control.ControlEventListener</listener-class></listener>
       
<servlet-class>org.ofbiz.content.webapp.control.ControlServlet</servlet-class>


and change them to (again these are not grouped
together):

       
<filter-class>org.ofbiz.webapp.control.ContextFilter</filter-class>
   
<listener><listener-class>org.ofbiz.webapp.control.ControlEventListener</listener-class></listener>
       
<servlet-class>org.ofbiz.webapp.control.ControlServlet</servlet-class>


There are a lot of other changes that need to be made
because of the splitting of the content app into
guiapp, webapp, and widget.  But making this change
will at least allow ofbiz to throw the errors.

This probably needs to go in the wiki, but I have no
idea where it would make sense to someone who's
looking for it.  Should there be a section for
updating tips?

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


More information about the Users mailing list