I thank you for your reply, in fact you are mostly correct. I have already fixed this issue. I had already set all that up, including the *.dbml extension mapping in the web.xml file. However, in my case the problem was in the apache connector. I had added the .dbml to the addhandler portion of the JRun connector but I did not set Apialloc to "true". Apialloc tells JRun to use either Apache's reserved memory or the system memory and since my webapp is a bit memory intensive... JRun needed more memory to serve it up. Once I set this to true all was fine!
>I recently did this you need to add the application needs to be added >to JRUN in the form of a .war file. Once you have created the .war >file go into the JRUN admin and add the web application to the server >instance. > >Web applications have a specific directory structure mine looks like this: >*.jsp files >JavaScript >Styles >WEB-INF > web.xml (I don't know where you are getting default-web.xml) > lib > classes > *.java files go here in proper java pack directory structure > > >I used ajax so my javascript url was: > var url = "demoservlet?xmlstring" + xmlstring; >my java package: umdd >java class demoString > >my web.xml file looks like this: ><web-app> > <servlet> > <servlet-name>demoString</servlet-name> > <servlet-class>umdd.demoString</servlet-class> > </servlet> > <servlet-mapping> > <servlet-name>demoString</servlet-name> > <url-pattern>/ demostring</url-pattern> > </servlet-mapping> ></web-app> > > >On 4/16/07, David Dreggors <[EMAIL PROTECTED]> wrote: >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/JRun-Talk/message.cfm/messageid:5797 Subscription: http://www.houseoffusion.com/groups/JRun-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.8
