Then I doubt that is the issue. See instructions in the jvm.config:
#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:\\ColdFusion10\\jre
application.home=C:\\ColdFusion10\\cfusion
#
# If no java.home is specified a VM is located by looking in these
places in this
# order: # # 1) ../runtime/jre # 2) registry (windows only) # 3) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre) # 4) java.exe in path
Lucy Miles <mailto:[email protected]> Tuesday, March 12, 2013 11:30 AMI changed it in control - system -> advance system setting. I didn't touch jvm.config file at all.On Tuesday, March 12, 2013 11:14:32 AM UTC-4, Dan Wilson - [email protected] wrote: ---- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en ---You received this message because you are subscribed to the Google Groups "model-glue" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].For more options, visit https://groups.google.com/groups/opt_out. Dan Wilson <mailto:[email protected]> Tuesday, March 12, 2013 11:14 AM Is that in your jvm.config file? The stock version points to: java.home=C:\\ColdFusion10\\jretry opening your jvm.config file (in: C:\ColdFusion10\cfusion\bin), and pointing it back to the standard location above.DW Lucy Miles <mailto:[email protected]> Tuesday, March 12, 2013 10:31 AMLooks like it is java environment variable set up thing. I did "JAVA_HOME: c:\Program Files\Java\jdk1.7.0_06" "PATH: c:\Program Files\Java\jdk1.7.0_06/bin" It is still not working. Did I miss something?On Monday, March 11, 2013 1:19:59 PM UTC-4, Dan Wilson - [email protected] wrote:-- -- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en ---You received this message because you are subscribed to the Google Groups "model-glue" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].For more options, visit https://groups.google.com/groups/opt_out. Dan Wilson <mailto:[email protected]> Monday, March 11, 2013 1:19 PM Looks real good. No issues stick out for me. Just for fun, try reloading the application like this: http://127.0.0.1:8500/translator/?init=trueIf the error doesn't go away, zip up the entire translator directory and email it to the list. I'll figure out what's going on..DW Lucy Miles <mailto:[email protected]> Monday, March 11, 2013 12:55 PM http://127.0.0.1:8500/translator/ <beans> <!-- This is your Model-Glue configuration --> <bean id="modelglue.modelGlueConfiguration" class="ModelGlue.gesture.configuration.ModelGlueConfiguration"> <!-- Be sure to change these to false when you go to production! --> <property name="reload"><value>true</value></property> <property name="debug"><value>true</value></property> <!-- Name of the URL variable that states which event-handler to run --> <property name="eventValue"><value>event</value></property> <!-- Default event-handler --> <property name="defaultEvent"><value>page.index</value></property> <!-- Execute this event when the requested event is missing. Won't work if generationEnabled=true and in development mode! --> <property name="missingEvent"><value>page.missing</value></property> <!-- Execute this event when an error occurs. --> <property name="defaultExceptionHandler"><value>page.error</value></ property> <!-- Controls reloading --> <property name="reloadPassword"><value>true</value></property> <property name="reloadKey"><value>init</value></property> <!-- Where to find necessary files --> <property name="configurationPath"><value>config/ModelGlue.xml</ value></property> <property name="applicationMapping"><value>/translator</value></ property> <property name="viewMappings"><value>/translator/views</value></ property> <property name="helperMappings"><value>/translator/helpers</value></ property> <!-- Generate unknown events when in development mode? (reload=false) --> <property name="generationEnabled"><value>false</value></property> <!-- Set the default cache timeout in seconds --> <property name="defaultCacheTimeout"><value>60</value></property> <!-- Scaffolding config --> <!-- Turning this off will disable any scaffold generation. Turning this on requires the reload setting above to also be on.--> <property name="rescaffold"><value>true</value></property> <!-- Where do you want generated views to be saved to? --> <property name="generatedViewMapping"><value>views</value></property> <!--This directory structure should already exists. ModelGlue will create the Scaffolds.xml file and overwrite as needed.--> <property name="scaffoldPath"><value>config/scaffolds/Scaffolds.xml</ value></property> <!-- What scaffold generation patterns should ModelGlue use if you do not specify in the <scaffold type=""> attribute? .--> <property name="defaultScaffolds"><value>list,edit,view,commit,delete</value></ property> <!-- See documentation or ModelGlueConfiguration.cfc for additional options. --> </bean> <!-- If you need your own configuration values (datasource names, etc), put them here. See modelgluesamples/simpleconfiguration/controller/Controller for an example of how to get to the values. Advanced users who are used to ColdSpring will probably delete this bean in favor of their own approach. --> <bean id="modelglue.applicationConfiguration" class="ModelGlue.Bean.CommonBeans.SimpleConfig"> <property name="config"> <map> <entry key="myDatasource"><value>myDatasource</value></entry> </map> </property> </bean> <!-- Put definitions for your own beans and services here --> <!-- ORM Framework Configuration --> <!-- To connect Model-Glue to either the Transfer or Reactor ORM frameworks uncomment and configure the appropriate block below --> <!-- Transfer: <alias alias="ormAdapter" name="ormAdapter.Transfer" /> <alias alias="ormService" name="ormService.Transfer" /> <bean id="transferConfiguration" class="transfer.com.config.Configuration"> <constructor-arg name="datasourcePath"><value>/ modelglueapplicationtemplate/config/transfer/Datasource.xml</value></ constructor-arg> <constructor-arg name="configPath"><value>/ modelglueapplicationtemplate/config/transfer/Transfer.xml</value></ constructor-arg> <constructor-arg name="definitionPath"><value>/ modelglueapplicationtemplate/model/data/transfer</value></constructor- arg> </bean> Reactor: <alias alias="ormAdapter" name="ormAdapter.Reactor" /> <alias alias="ormService" name="ormService.Reactor" /> <bean id="reactorConfiguration" class="reactor.config.config"> <constructor-arg name="pathToConfigXml"><value>/ modelglueapplicationtemplate/config/reactor/Reactor.xml</value></ constructor-arg> <property name="project"><value>test</value></property> <property name="dsn"><value>test</value></property> <property name="type"><value>mysql</value></property> <property name="mapping"><value>/modelglueapplicationtemplate/model/ data/reactor</value></property> <property name="mode"><value>development</value></property> </bean> --> </beans> On Mar 11, 12:51 pm, Dan Wilson <[email protected]> wrote:
-- -- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en--- You received this message because you are subscribed to the Google Groups "model-glue" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
<<inline: compose-unknown-contact.jpg>>
<<inline: postbox-contact.jpg>>
