SmartClient Version: SC_SNAPSHOT-2011-01-06/PowerEdition Deployment (built 2011-01-06)
IE9
I'm starting to look at creating dynamic datasources on the fly and when trying to do a client side DataSource.load() I get an error on the client saying 'The DataSourceLoader servlet is not installed.' I checked my web.xml and found this entry:
Is there something I'm missing?
IE9
I'm starting to look at creating dynamic datasources on the fly and when trying to do a client side DataSource.load() I get an error on the client saying 'The DataSourceLoader servlet is not installed.' I checked my web.xml and found this entry:
Code:
<servlet>
<servlet-name>DataSourceLoader</servlet-name>
<servlet-class>com.isomorphic.servlet.DataSourceLoader</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DataSourceLoader</servlet-name>
<url-pattern>/sc/DataSourceLoader</url-pattern>
</servlet-mapping>
Comment