[flexcoders] Cairngorm store products

2005-05-25 Thread Tom Fitzpatrick
I keep getting a products could not be retrieved message from the 
cairngorm store. Must be a db path problem. How should I specify it in 
store.cfg?

If it helps, the path to hsqldb.jar on my machine is:

C:\servers\jakarta-tomcat-5.0.25\webapps\cairngormstore\WEB-INF\lib

- Tom






 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Steven Webster
Tom,

There are a number of things to check ... first of all, have you placed
the named service in flex-config.xml (have you used our flex-config.xml) ?

Is there more detailed error message in your appserver log file ?

Steven 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick
 Sent: 25 May 2005 16:16
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Cairngorm store products
 
 I keep getting a products could not be retrieved message 
 from the cairngorm store. Must be a db path problem. How 
 should I specify it in store.cfg?
 
 If it helps, the path to hsqldb.jar on my machine is:
 
 C:\servers\jakarta-tomcat-5.0.25\webapps\cairngormstore\WEB-INF\lib
 
 - Tom
 
 
 
 
 
 
  
 Yahoo! Groups Links
 
 
 
  
 



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Tom Fitzpatrick
At 11:17 AM 5/25/2005, you wrote:
There are a number of things to check ... first of all, have you placed
the named service in flex-config.xml (have you used our flex-config.xml) ?

Yes, I used your flex-config.xml file.

Is there more detailed error message in your appserver log file ?

The only cairngorm store related message in the log just references the 
Flex build.

- Tom







 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Alex Uhlmann
Hi Tom,

if you used the default settings of store.cfg, make sure you have a db
directory in the parent of your WEBAPP_DIR. On Tomcat that's
TOMCAT_HOME/webapps. In db you have to place your catalog.proteries
and catalog.script files. See install docs for more.

Best,
Alex

--
Alex Uhlmann
Software Engineer
iteration::two



-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Tom Fitzpatrick
Sent: 25 May 2005 16:31
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Cairngorm store products


At 11:17 AM 5/25/2005, you wrote:
There are a number of things to check ... first of all, have you placed
the named service in flex-config.xml (have you used our
flex-config.xml) ?

Yes, I used your flex-config.xml file.

Is there more detailed error message in your appserver log file ?

The only cairngorm store related message in the log just references the
Flex build.

- Tom








Yahoo! Groups Links





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Tom Fitzpatrick
Hi Alex -

Thanks to you and Steven for staying with me on this.

I did set it up that way, and it's still not working. My directory 
structure is:

jakarta-tomcat-5.0.25  webapps  db
jakarta-tomcat-5.0.25  webapps  cairngormstore

Inside the db directory are catalog.properties, catalog.script, and 
mysql_store.sql

I did find this error message from Tomcat:

java.sql.SQLException: User not found: CAIRNGORMSTORE

Does that help?

- Tom



At 12:25 PM 5/25/2005, you wrote:

if you used the default settings of store.cfg, make sure you have a db
directory in the parent of your WEBAPP_DIR. On Tomcat that's
TOMCAT_HOME/webapps. In db you have to place your catalog.proteries
and catalog.script files. See install docs for more.






 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Alex Uhlmann
Actually the db directory by default is in TOMCAT_HOME not
TOMCAT_HOME/webapps. (you can change this via store.cfg.

In case you did that: We're using HSQLDB in in-process mode, so it
initialises when you start your app server. Have you restarted Tomcat?
When you restart Tomcat, HSQLDB should by default create catalog.lck and
catalog.log files in the db directory.

Does your catalog.script file actually create a user CAIRNGORMSTORE.
Is the content matching the content of the supplied catalog.script?

Best,
Alex


--
Alex Uhlmann
Software Engineer
iteration::two


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Tom Fitzpatrick
Sent: 25 May 2005 18:02
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Cairngorm store products


Hi Alex -

Thanks to you and Steven for staying with me on this.

I did set it up that way, and it's still not working. My directory
structure is:

jakarta-tomcat-5.0.25  webapps  db
jakarta-tomcat-5.0.25  webapps  cairngormstore

Inside the db directory are catalog.properties, catalog.script, and
mysql_store.sql

I did find this error message from Tomcat:

java.sql.SQLException: User not found: CAIRNGORMSTORE

Does that help?

- Tom



At 12:25 PM 5/25/2005, you wrote:

if you used the default settings of store.cfg, make sure you have a
db
directory in the parent of your WEBAPP_DIR. On Tomcat that's
TOMCAT_HOME/webapps. In db you have to place your catalog.proteries
and catalog.script files. See install docs for more.







Yahoo! Groups Links





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Cairngorm store products

2005-05-25 Thread Tom Fitzpatrick
Hi Alex -

At 01:51 PM 5/25/2005, you wrote:
Actually the db directory by default is in TOMCAT_HOME not
TOMCAT_HOME/webapps. (you can change this via store.cfg.

This is getting stranger. I moved the db folder and its contents up a level 
to the location you describe (the same level as webapps):

jakarta-tomcat-5.0.25  db

Now, when I restarted tomcat, a new db directory was created above 
jakarta-tomcat-5.0.25. Inside that directory are the catalog.lck and 
catalog.log files you refer to below, as well as a copy of the 
catalog.properties file. I'm still getting the products can't be 
retrieved message.

Hmm.

In case you did that: We're using HSQLDB in in-process mode, so it
initialises when you start your app server. Have you restarted Tomcat?
When you restart Tomcat, HSQLDB should by default create catalog.lck and
catalog.log files in the db directory.

- Tom 






 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/