Re: Relative URLs for Forms

2009-12-14 Thread Richard Stephens
Hi Frank, Did you ever find a resolution to this? I've run into a similar problem with an app that is behind a reverse proxy server - the proxy connects to the application server over HTTPS, and the application generates URLs with the hostname of the app server and no port number for for

Re: WOSubmitButton closing the browser window

2009-03-05 Thread Richard Stephens
Maybe i'm missing something...but..why can't you just use straight html, for example: "javascript:window.close();" /> -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: rich...@rjst.com.au On 06/03/2009, at 11:26 AM, Chuck Hill wrote: On Mar 5,

Re: JDBC URL on a per session basis

2009-02-16 Thread Richard Stephens
it will be easier to modify the upstream application to log everything into one table than to venture into uncharted territory with WebObjects and try to make this work. -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: rich...@rjst.com.au On 17/02/2009, at 5:33 AM, Chuck

JDBC URL on a per session basis

2009-02-15 Thread Richard Stephens
Hi, Is it possible to set the JDBC URL for one of my models on a per session basis? I need to connect to a different database based on which customer is logged in, and i'd rather not have to deploy a new copy of my app for each customer. -- Regards, Richard Stephens Ph: 07 3136 342

Re: plain jar utility app, with wonder?

2009-02-05 Thread Richard Stephens
Have you tried starting from the "Jar Project" template in WOLips? -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: rich...@rjst.com.au On 06/02/2009, at 12:38 PM, William Hatch wrote: Got the basics compiling using first method. Any advice on how this ne

ERXEC Editing context auto-locking

2009-01-29 Thread Richard Stephens
t are generated that ERXEC is locking before select and update but not before insert. Is this correct behavior? How does ERXEC know when to lock and unlock the editing context? Does the Request-response loop interact with ERXEC's auto locking in any way? -- Regards, Richard Stephens Ph: 07

Re: ERRORS with New WeObjects Application/Framework - WOLips 3.4.1 (5661)

2009-01-29 Thread Richard Stephens
Just a wild guess, are you sure you have the WebObjects frameworks installed on this computer? On 30/01/2009, at 6:11 AM, Chuck Hill wrote: On Jan 29, 2009, at 9:48 AM, Gaastra Dennis - WO Lists wrote: Hi Chuck et al, It is missing; there is no directory WOLips in ~/Library/Application

Re: Loading a model from a referenced framework in a jar project

2008-12-27 Thread Richard Stephens
wever I can't see a way to find out the root path that getResource searches from. On Sat, Dec 27, 2008 at 11:39 PM, Henrique Prange wrote: > Hi Richard, > > On Fri, Dec 26, 2008 at 5:49 AM, Richard Stephens wrote: >> Hi >> How do I load a model from a referenced fr

Loading a model from a referenced framework in a jar project

2008-12-25 Thread Richard Stephens
Hi How do I load a model from a referenced framework in a Jar project? -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: rich...@rjst.com.au ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev

Re: Weird sql generation problem running migration from WO5.4 (Oracle)

2008-12-17 Thread Richard Stephens
Chuck, I have filed a bug both in Wonder and with apple. If you can send me a compiled copy of the modified framework I will test it, but I don't have the time to grab the Wonder source and recompile it myself. -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email:

Re: Weird sql generation problem running migration from WO5.4 (Oracle)

2008-12-17 Thread Richard Stephens
Hey Chuck, When run with WO5.3 the generated SQL looks like this: alter table CRS add (SCRNV NUMBER) ALTER TABLE CRS ADD CONSTRAINT CRS_SCRNV_CDATID_FK FOREIGN KEY (SCRNV) REFERENCES CRS (CDATID) DEFERRABLE INITIALLY DEFERRED -- Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570

Weird sql generation problem running migration from WO5.4 (Oracle)

2008-12-15 Thread Richard Stephens
Hi I'm running 10.5 with WO5.4.3 installed in the default location, and 5.3.3 installed in /Developer/WebObjects53. I am doing all of my development work against 5.4 but I have 5.3 available should I run into problems. This project uses oracle as the database. Most of the projects I wo

Re: Frontbase CLOB newline problem

2008-11-11 Thread Richard Stephens
;\n", "\\n"); This is probably the simplest solution and should work fine provided you don't have any input with just \r's. Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: [EMAIL PROTECTED] On 12/11/2008, at 9:39 AM, Awbrey Hughlett wrote: I am try

Re: EOQualifier wildcard problem

2008-11-10 Thread Richard Stephens
What template are you using? Whatever the defaults included with the framework are. Thanks for those, I will definitely take a look at them. On 11/11/2008, at 12:18 PM, Lachlan Deck wrote: On 11/11/2008, at 10:25 AM, Richard Stephens wrote: As you're using W

Re: EOQualifier wildcard problem

2008-11-10 Thread Richard Stephens
As you're using Wonder: YourEntity.CITY.caseInsensitive(string + "*"); Slightly off topic, but do i have to change my EOGenerator templates to get this syntax? I don't seem to have it on any of my entities. Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 1

Re: mysql AUTO_INCREMENT

2008-10-04 Thread Richard Stephens
value instead of using the one in the EO_PK_TABLE?Regards,Richard StephensPh: 07 3136 3426Mob: 0410 111 570Email: [EMAIL PROTECTED]On 04/10/2008, at 9:58 PM, Q wrote:On 04/10/2008, at 5:31 PM, Richard Stephens wrote:Unfortunately, most of the PHP stuff doesn't use any database abstraction.  Conver

Re: mysql AUTO_INCREMENT

2008-10-04 Thread Richard Stephens
tores it. Alternatively, in my case, even using SELECT MAX(pk) might be an option, as the WO code doesn't actually create new entities very often. Is there source available for the mysql driver? I wouldn't mind having a look see if I can adapt it Regards, Richard Stephens Ph: 07 313

mysql AUTO_INCREMENT

2008-10-03 Thread Richard Stephens
Hi Is there any way to get round having to use EO_PK_TABLE for mysql and to allow WO to use auto_increment instead? I'm writing a WO app that has to share a mysql database with a number of PHP apps, so the data that ends up in EO_PK_TABLE can't be trusted. Regards, Richard S

Re: Apple dropping WO from own sites

2008-10-03 Thread Richard Stephens
impossible to tell without more effort than i'm prepared to put in at this late hour if that is still using WO. You could possibly test with a packet sniffer. Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: [EMAIL PROTECTED] On 04/10/2008, at 12:55 AM, Guido Neit