Re: Use XCode or Use Eclipse and WOLips???

2006-04-13 Thread Luis Miguel Espinoza
Thanks Chuck, I am now downloading Eclipse 3.2 to test it with WOLips. Need I all the time of my life have installed XCode, because I am reading that WOLips don't work without XCode?? NOTE: Is yours WebObjects Book release very soon?? I hope you release it next days.. Thanks again. LMES

Re: How Do I Implicitly Maintain Web Services WOSessions?

2006-04-13 Thread Andrew Lindesay
Hello; I have to get the client to capture the SessionID from the response to the first request and pass it back explicitly as a parameter on each subsequent request to the server. I have found this to be the best way to do it. I looked into other options, but considered this to be the b

Re: Use XCode or Use Eclipse and WOLips???

2006-04-13 Thread Chuck Hill
Hi Luis, On Apr 13, 2006, at 8:38 PM, Luis Miguel Espinoza wrote: I was tried WebObjects and XCode, and I have some questions. Is necesary use Xcode to develop WebObjects Applications or Can I use Eclipse with WOLips?? What do you think about that?? You will probably want to keep Xcode aro

Use XCode or Use Eclipse and WOLips???

2006-04-13 Thread Luis Miguel Espinoza
Hello guys, I was tried WebObjects and XCode, and I have some questions. Is necesary use Xcode to develop WebObjects Applications or Can I use Eclipse with WOLips?? What do you think about that?? I was reading about WoLips but It have been don't have support any more, and his version is ol

Re: exec sp_password using rawRowsForSQL

2006-04-13 Thread Jean-François Veillette
You might be better using stored-procedure capacities of eof instead of raw-row. In EOModeler, let the model know about the stored-proc, the input / output fields, etc. That way there is more chance it's going to work. - jfv Le 06-04-13, à 16:21, Jerry Haynes a écrit : Has anyone succes

Re: exec sp_password using rawRowsForSQL

2006-04-13 Thread Chuck Hill
rawRowsForSQL is intended for SQL select statements that return a rowset. I am not familiar with Sybase but I will hazard a guess that whatever you are callling does not have a rowset return result. You might need to dig down to EOAdaptorChannel.evaluateExpression (EOSQLExpression expressi

exec sp_password using rawRowsForSQL

2006-04-13 Thread Jerry Haynes
Has anyone successfully called sp_password on a Sybase database? Nothing is being returned back to theArray so I have no clue what the problem might be. private NSArray setSybasePassword(String eoModel, String masterPassword, String newPassword, String userName) { EOEditingContext

Re: XCode 2.2 and WO 5.2.4

2006-04-13 Thread Kieran Kelleher
Perfection would be the *same development and deployment versions* of WO and operating system, however with 1) the introduction of Intel based MacBook Pros which all developers have to have for productivity reasons ;-) 2) Intel Macbook Pros require Tiger 3) the fact that upgrading Panther XSer

Re: Multiple relations for one foreign key?

2006-04-13 Thread Arturo Perez
Myself and several others put a fair amount of work into the postgres plugin to get this to work properly. Can you switch? :-) -arturo Wolfram Stebel wrote: Am 13.04.2006 15:35 Uhr schrieb "Ken Anderson" unter <[EMAIL PROTECTED]>: Thanks, yes, i tried it, but there is a eof bug (know in radar

Re: Multiple relations for one foreign key?

2006-04-13 Thread Wolfram Stebel
Am 13.04.2006 15:35 Uhr schrieb "Ken Anderson" unter <[EMAIL PROTECTED]>: Thanks, yes, i tried it, but there is a eof bug (know in radar) that preventes the outer join with MySQL. Bad luck! Wolfram > There's no restriction as to how many relationships can be based on > an attribute. > > On Apr 1

Re: XCode 2.2 and WO 5.2.4

2006-04-13 Thread Pascal Robert
So it seems that the perfect setup is 10.4x. with WO 5.31, XCode 2.2, the old EOModeler for development and 10.4x with WO 5.2.4 for deployment ? Well. AFAIK, you need WO 5.3 for XCode 2.2. You might as well go to the latest releases which, so far, seem pretty stable OS X 10.4.5 / Java 1.4.2

Re: How Do I Implicitly Maintain Web Services WOSessions?

2006-04-13 Thread Ken Anderson
I would think that the best approach would be to return a session identifier to the client at initial connect, and require that piece of data for each subsequent connection.  You could then decide what that 'thing' is, as well as how you would restore the session upon each request.On Apr 13, 2006,

Re: How Do I Implicitly Maintain Web Services WOSessions?

2006-04-13 Thread Mike Schrag
I documented my journey here:http://en.wikibooks.org/wiki/Programming:WebObjects/Web_Services/Web_Service_ProviderBasically if they're using Axis proper, you're going to have problems with cookie-based sessions unless they use a patched axis 1.1 lib (I'd be happy to send you mine if you want -- jus

How Do I Implicitly Maintain Web Services WOSessions?

2006-04-13 Thread Jerry W. Walker
I'm working on a Web Services part of an application in which I've been asked to provide a pure Java Web Services client for a WO Web Services server. The client is not using any of the WO frameworks, just the standard Java and Axis libraries. In this context, my problem is maintaining the WOSessio

Multiple relations for one foreign key?

2006-04-13 Thread Wolfram Stebel
Hi list, is it possible to define more than one relation on the same FK-PK combination in EOModeller and will it work? I need an inner and an outer joined relation between the same two tables, characterized by the same keys. TIA Wolfram ___ Do not p

Re: Best Design Practice

2006-04-13 Thread Ken Anderson
On Apr 12, 2006, at 10:23 PM, wojingo wrote:One thing worth considering is the memory used faulting all those objects when your not going to actually use them. I have used the second approach with good results to optimise methods like the ones you have above. If you know that the set of active reco