Re: Raw Rows and Display Groups

2007-12-17 Thread Simon McLean
Hi David - Personally, I would just do all the searching outside the display group and only use the DG for display purposes (batching etc). So bind your search box to an ivar and you search button to a method (instead of qualifyDataSource) that fetches the raw rows and re-loads the DG.

Re: Wosid suppression broken in 5.4?

2007-12-17 Thread Dov Rosenberg
We have been seeing those as well on our hyperlinks all of the sudden after we upgraded to 5.4 On 12/17/07 6:20 PM, "Ian Joyner" <[EMAIL PROTECTED]> wrote: > Sorry, no joy in the release notes. > > So does anyone know why the extra ?wosid is put on the end and if I am > not doing something el

Re: IntelliJ + WebObjects 5.4

2007-12-17 Thread Peter Vandoros
Hi Sam, Even though we haven't touched WO 5.4 yet, it would be nice to be able to gain some of the functionality that WOLips has. I've thought about a few different ideas like: - trying to re-use as much of the WOLips code as possible and generalise the Eclipse specific code with interfaces t

IntelliJ + WebObjects 5.4

2007-12-17 Thread Sam Barnum
I'm curious about the folks using IntelliJ. What are you using as a WOBuilder replacement for WO 5.4 development? We wrote IntelliWO, a plugin to integrate IntelliJ with WOBuilder somewhat. Is there any demand for an upgrade to this? Any recommendations or feedback are much appreciated.

Re: just curious

2007-12-17 Thread Pascal Robert
Le 07-12-17 à 18:48, Ken Foust a écrit : I hold most WO developers in the higher level of Web Development. This actually comes after many years in the recruiting industry. So based on that premise. 1. Why can't you guys just tweak WObuilder and EOM to run on leopard?? Because some of us

just curious

2007-12-17 Thread Ken Foust
I hold most WO developers in the higher level of Web Development. This actually comes after many years in the recruiting industry. So based on that premise. 1. Why can't you guys just tweak WObuilder and EOM to run on leopard?? 2. Can one just load Xcode 2.3 on leopard and run all the depreci

Re: Raw Rows and Display Groups

2007-12-17 Thread David Holt
Hi Simon, Thanks for your reply. Your suggestion is how I am setting up the fetch for the display group for its initial display. When I use a queryMatch binding in a search field followed by a qualifyDataSource () I get back an error (see below). What I think is happening is that my array

Re: Wosid suppression broken in 5.4?

2007-12-17 Thread Ian Joyner
Sorry, no joy in the release notes. So does anyone know why the extra ?wosid is put on the end and if I am not doing something else to get rid of it? Should I submit a bug report? I think my workaround is checking for ?wosid at the end of the filePath in the direct action method. Thanks

Re: PDF engine, that handles tables well

2007-12-17 Thread Kieran Kelleher
Dennis, This is great news! How soon can we get our hands on this free version? :-) Regards, Kieran On Dec 17, 2007, at 2:06 PM, Gaastra Dennis - WO Lists wrote: Our PDFkit should beat any of the other ones mentioned in terms of table generation by a factor of 10-100 times (our lab tests),

Re: Consuming web services document style

2007-12-17 Thread Kieran Kelleher
Standard way I think is to write a SAX handler and use the xerces parser to parse the HTTP(S) response content from the webservice. You can use apache commons HttpClient to do the request/response handling. This might be consider a low-level approach, but at least you know what is coming in

Re: WOLips binding validation

2007-12-17 Thread Mike Schrag
Probably easier to define a method in your component that returns this JS string and then bind to this method rather than trying to figure out how to satisfy the component editor. My personal preference on these is to define the javascript code as a normal javascript function in your HTML te

Re: A REAL newbie

2007-12-17 Thread Edgar Klein
Hi, On 17-Dec-07, at 9:08 AM, Doug Thompson wrote: Hello all, First, Happy Festivus. Second, I have made the twenty year cut with PC/Windows and gone full iMac. Third, I have done a fair amount of web development with Adobe/ Macromedia software. Fourth, I have now moved to WebObjects.

Re: WOLips binding validation

2007-12-17 Thread Art Isbell
On Dec 17, 2007, at 12:38 PM, Ricardo Parada wrote: Any ideas on how to make the component editor treat this as valid? :-) AppealedAmountTextField: WOTextField { numberformat = "$#,##0.00"; value = appealedAmount; onChange = "javascript:

Re: WOLips binding validation

2007-12-17 Thread Mike Schrag
I have a definition as shown below in my wod file and the multi-line string value assigned to the onChange binding generates an error in the WO component editor in Eclipse/WOLips. Any ideas on how to make the component editor treat this as valid? :-) This is a known bug ... Honestly I hadn

WOLips binding validation

2007-12-17 Thread Ricardo Parada
Hi, I have a definition as shown below in my wod file and the multi-line string value assigned to the onChange binding generates an error in the WO component editor in Eclipse/WOLips. Any ideas on how to make the component editor treat this as valid? :-) AppealedAmountTextField: WOTex

Re: 5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Mike Schrag
These live for the duration of your session, though, right? Is there a max permanent page cache size? If you keep coming back to the front page that has multiple iframes on it, what's the caching behavior of that? Do you get an entry in the perm cache every time you keep coming back? On

Re: Consuming web services document style

2007-12-17 Thread Oliver Egger
Hi Fredrik What kind of document style webservice do you want to use? We use doc/lit/wrapped style so that both java and .net client can talk to our server application and it works very well for us. For design reason we went with a "WSDL First" approach. Describe the interface in WSDL an then gene

Re: 5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Anjo Krank
No you don't. You can put the page in the permanent cache. Cheers, Anjo Am 17.12.2007 um 22:43 schrieb Chuck Hill: Good point. When I have done this before, the HTML returned did not contain any component actions, so I skipped caching the results. If you need component actions, you are go

Re: 5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Chuck Hill
Good point. When I have done this before, the HTML returned did not contain any component actions, so I skipped caching the results. If you need component actions, you are going to need a much larger page cache. Chuck On Dec 17, 2007, at 1:38 PM, Mike Schrag wrote: You're going to burn

Re: 5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Mike Schrag
You're going to burn your backtrack cache pretty fast ... Be prepared for "you backtracked too far" errors. ms On Dec 17, 2007, at 4:36 PM, Chuck Hill wrote: If they access a session they will never run simultaneously as session access is serialized. They will load sequentially. Other t

Re: 5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Chuck Hill
If they access a session they will never run simultaneously as session access is serialized. They will load sequentially. Other than that, I can't think of any issues. Chuck On Dec 17, 2007, at 1:28 PM, Les Vogel wrote: I've got several IFrames on a page, each doing a DirectAction, is

5.4 Several IFrames on a page doing directActions...

2007-12-17 Thread Les Vogel
I've got several IFrames on a page, each doing a DirectAction, is there any thing I need to do to make these run simultaneously? Or any issues I should be aware of? They are likely to access session. Thanks, Les -- Les Vogel 808 870-0418 ___ Do not

Re: WOLips and JC

2007-12-17 Thread Jarda Hanuš
If you've WO 5.3, try adding wojavaclient.jar to your classpath. This jar can be in /Library/WebServer/Documents/WebObjects/Java. On 5.4 the jars are different, but I suppose you're on 5.3 still. Jarda On Dec 17, 2007, at 8:36 PM, David Avendasora wrote: The error I'm getting right now is o

Re: Consuming web services document style

2007-12-17 Thread Fredrik Lindgren
17 dec 2007 kl. 20:24 skrev Georg Tuparev: On Dec 17, 2007, at 8:09 PM, Fredrik Lindgren wrote: Hello List! I have searched the web and read through all mails in this list regarding consuming a webservice with document style. The Apple documentation really does not help at all. All mai

Re: Consuming web services document style

2007-12-17 Thread Fredrik Lindgren
17 dec 2007 kl. 20:14 skrev Chuck Hill: On Dec 17, 2007, at 11:09 AM, Fredrik Lindgren wrote: Hello List! I have searched the web and read through all mails in this list regarding consuming a webservice with document style. The Apple documentation really does not help at all. All mail

Re: WOLips and JC

2007-12-17 Thread David Avendasora
Hey Flor, I added the projects and added the WO frameworks, but I can't seem to get the client to build without error. The error I'm getting right now is on the com.test.client.EOApplicationSubclass class. The error is: com.webobjects.eoapplication.client cannot be resolved, line 29. It

Re: PDF engine, that handles tables well

2007-12-17 Thread Anjo Krank
Well, you *could* give PDFGenerator a try :) Cheers, Anjo Am 17.12.2007 um 18:32 schrieb Guido Neitzer: On 17.12.2007, at 10:13, Don Lindsay wrote: I use JPDF and it works well. I looked at this, but don't want to spent the money at the moment, as the project I'm working on is private an

Re: Consuming web services document style

2007-12-17 Thread Georg Tuparev
On Dec 17, 2007, at 8:09 PM, Fredrik Lindgren wrote: Hello List! I have searched the web and read through all mails in this list regarding consuming a webservice with document style. The Apple documentation really does not help at all. All mails regarding this subject seems to go unanswe

Re: Consuming web services document style

2007-12-17 Thread Chuck Hill
On Dec 17, 2007, at 11:09 AM, Fredrik Lindgren wrote: Hello List! I have searched the web and read through all mails in this list regarding consuming a webservice with document style. The Apple documentation really does not help at all. All mails regarding this subject seems to go unansw

Re: Generic typing errors

2007-12-17 Thread Fred Shurtleff
Hi Paul, This set off an alarm for me. Eclipse reports in the Problems window 5,000+ errors, and I am not able to find a way to turn them off (also I have an app that just plain fails). So can you tell me how you switched to JVM 1.5 (as I'm sure I am running 1.4.2)? Also do you know what too

Consuming web services document style

2007-12-17 Thread Fredrik Lindgren
Hello List! I have searched the web and read through all mails in this list regarding consuming a webservice with document style. The Apple documentation really does not help at all. All mails regarding this subject seems to go unanswered! I hope someone out there has some info on how to u

Re: A REAL newbie

2007-12-17 Thread Georg Tuparev
James, On Dec 17, 2007, at 5:37 PM, James Nugent wrote: yes, WebObjects works with Leopard, but WO 5.4 has some bugs. Hi, Is there any documentation of known bugs in WO 5.4 and how serious they are? Is the EOModeller Eclipse Plugin's SQL generation problems related to WO5.4? Is not t

Re: PDF engine, that handles tables well

2007-12-17 Thread Gaastra Dennis - WO Lists
Our PDFkit should beat any of the other ones mentioned in terms of table generation by a factor of 10-100 times (our lab tests), since it does not depend on any other code and is a 100% native WebObjects framework. E.g., it can generate 400 pages filled with tables in just 1-2 seconds on a

Re: A REAL newbie

2007-12-17 Thread Georg Tuparev
On Dec 17, 2007, at 5:13 PM, Pascal Robert wrote: yes, WebObjects works with Leopard, but WO 5.4 has some bugs. I strongly suggest that you wait for WO 5.4.1 or, if you have access to a Tiger machine, that you install WO 5.3 if you can't wait. But also take into account that Apple never

Re: Raw Rows and Display Groups

2007-12-17 Thread Simon McLean
Hi David - You can fetch the raw rows yourself using a fetchspecification that has setFetchesRawRows(true), then to WODG.setObjectArray(yourResults). Simon On 17 Dec 2007, at 18:20, David Holt wrote: Hi all, I am defining my display group entirely in my component's .java file. I just cha

Raw Rows and Display Groups

2007-12-17 Thread David Holt
Hi all, I am defining my display group entirely in my component's .java file. I just changed the display group to fetch raw rows for its initial fetch and display. When I do a WODG.qualifyDatasource, or WODG.qualifyDisplayGroup it doesn't return raw rows. It tries to return EO's. Is is pos

Re: A REAL newbie

2007-12-17 Thread David Holt
Hi Doug, You're going to have to persevere a little harder than that to become a WO developer! For learning, you are going to be fine with WO 5.4. By the time you are thinking about your first/next project, the toolset and frameworks should be stable again. In fact, if you just get starte

Re: A REAL newbie

2007-12-17 Thread Miguel Arroz
Hi! If you bought 5.2, yes you did! :) Can you return it? Yours Miguel Arroz On 2007/12/17, at 17:27, Douglas Kim Thompson wrote: Thanks. Damn my iMac is the only one in the house with Leopard. I'm beginning to think that I have wasted money by WO. -Doug Pascal Robert wrote: Hi and

Re: A REAL newbie

2007-12-17 Thread Steve Quirk
On Mon, 17 Dec 2007, Douglas Kim Thompson wrote: Thanks. Damn my iMac is the only one in the house with Leopard. I'm beginning to think that I have wasted money by WO. -Doug Wow - that was a fast bailout. Look, you can use WO in a whole number of ways. Some people might recommend drinki

Re: PDF engine, that handles tables well

2007-12-17 Thread Simon McLean
another one for the mix: http://pd4ml.com/ we use it for lots of single page stuff. Simon On 17 Dec 2007, at 17:32, Guido Neitzer wrote: On 17.12.2007, at 10:13, Don Lindsay wrote: I use JPDF and it works well. I looked at this, but don't want to spent the money at the moment, as the p

Re: PDF engine, that handles tables well

2007-12-17 Thread Joe Moreno
For simple PDF creation in WO, I'm real cheap... I create a TXT files, and make a couple calls to the command line: ENSCRIPT to convert the TXT file to PS and then PS2PDF for the final PDF which I end up queueing in the LPR queue to fax out. It works surprisingly well for simple stuff. -

Re: Re: Wosid suppression broken in 5.4?

2007-12-17 Thread Susanne Schneider
Hi Ian, From: Ian Joyner <[EMAIL PROTECTED]> Actually, I think this is not the problem – printing out the result from this function shows no ?wosid on the end: Video_library (Video_library.java:download_link:1184) - result is /cgi- bin/WebObjects/Stream.woa/wa/download_video?filePath=%2FLib

Re: PDF engine, that handles tables well

2007-12-17 Thread Guido Neitzer
On 17.12.2007, at 10:13, Don Lindsay wrote: I use JPDF and it works well. I looked at this, but don't want to spent the money at the moment, as the project I'm working on is private and nobody knows whether it will bring some money one day ... Nevertheless I need really high quality PDF

Re: A REAL newbie

2007-12-17 Thread Douglas Kim Thompson
Thanks. Damn my iMac is the only one in the house with Leopard. I'm beginning to think that I have wasted money by WO. -Doug Pascal Robert wrote: >Hi and welcome, > >yes, WebObjects works with Leopard, but WO 5.4 has some bugs. I >strongly suggest that you wait for WO 5.4.1 or, if you hav

Re: PDF engine, that handles tables well

2007-12-17 Thread Don Lindsay
Hello; I use JPDF and it works well. Don On Dec 16, 2007, at 11:59 PM, Gaastra Dennis - WO Lists wrote: Our PDFkit does this very well; please have a look at our website + ignore the prices. We will make available soon for free to the WebObjects community. It looks like we will go the Frontb

Re: A REAL newbie

2007-12-17 Thread Guido Neitzer
On 17.12.2007, at 09:37, James Nugent wrote: Is the EOModeller Eclipse Plugin's SQL generation problems related to WO5.4? Which SQL generation problem? The "no space before the 'not null' constraint" problem? Yes, this is a Leopard problem. At least the FrontBase and the PostgreSQL plugin

Re: A REAL newbie

2007-12-17 Thread James Nugent
yes, WebObjects works with Leopard, but WO 5.4 has some bugs. Hi, Is there any documentation of known bugs in WO 5.4 and how serious they are? Is the EOModeller Eclipse Plugin's SQL generation problems related to WO5.4? Thanks, James ___ Do

Re: A REAL newbie

2007-12-17 Thread Miguel Arroz
Hi! On 2007/12/17, at 16:08, Doug Thompson wrote: Second, I have made the twenty year cut with PC/Windows and gone full iMac. Good. You are twenty years late. ;) Fourth, I have now moved to WebObjects. Very wise choice! First, does WebObjects work with Leopard. Yes. Leopard com

Re: A REAL newbie

2007-12-17 Thread Pascal Robert
If you were looking at the development tools (EOModeler, WebObjects Builder, etc.), they are gone on Leopard. They were using a Java<- >Objective-C bridge and this bridge is dead on Leopard. Please read: http://www.wocommunity.org/webobjects_faq.html#xcode3 As for WO 5.4.1, we don't

Re: A REAL newbie

2007-12-17 Thread Douglas Kim Thompson
Thanks, Pascal. I have installed (I think) WebObjects 5.2. But I can't locate (or I don't know where to look for them) the launcher icons. When will WO 5.4.1 be available? And thanks for the links much appreciated. I plan to spend the Festivus Holiday working with WO. Cheers, Doug Pascal R

Re: A REAL newbie

2007-12-17 Thread Paul Lynch
On 17 Dec 2007, at 16:08, Doug Thompson wrote: First, does WebObjects work with Leopard. Second, any tutorial or book recommendation would be most appreciated. For a tutorial, take a look at: wotutorial.furfly.com This is aimed at the 5.3 version of WebObjects and Tiger, but is otherwise

Re: A REAL newbie

2007-12-17 Thread Pascal Robert
Hi and welcome, yes, WebObjects works with Leopard, but WO 5.4 has some bugs. I strongly suggest that you wait for WO 5.4.1 or, if you have access to a Tiger machine, that you install WO 5.3 if you can't wait. As for getting started, check out: http://www.wocommunity.org/getting_s

A REAL newbie

2007-12-17 Thread Doug Thompson
Hello all, First, Happy Festivus. Second, I have made the twenty year cut with PC/Windows and gone full iMac. Third, I have done a fair amount of web development with Adobe/Macromedia software. Fourth, I have now moved to WebObjects. The questions: First, does WebObjects work with Leopard.

single-file webobjects bindings

2007-12-17 Thread Sam Barnum
I'm trying to experiment with compact webobjects tags, and am not having any luck. I'm running this from IntelliJ, not Eclipse, so there's a chance it's a classpath issue. When I put this in my component file: It renders in the output page, without substituting the content. Do I need to

Re PDF

2007-12-17 Thread WILLIAM GARNETT
Hi; I use iText (www.lowagie.com) You build your own PDF using Java. Complete control! Hope this helps Cheers, Bill. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.appl

Re: Reports

2007-12-17 Thread Simon McLean
I have looked at JReport, crystal, and a couple of other engines. All of them are a bit pricey. We looked at JReport too. You could buy a small house for the price of their cheapest license !!! And I thought Oracle pricing was fantasy land... Simon ___

Re: Reports

2007-12-17 Thread Simon McLean
We've used ReportMill in the past, but we are currently using Jasper. I can't think of a single thing that ReportMill does that Jasper can't. I really don't know how anyone justifies the price tag for ReportMill anymore when there are such good open source tools available. Others worth a lo