Re: [EXTERNAL] Re: Java upgrade question

2024-04-05 Thread Morris, Mark via Webobjects-dev
Date: Friday, April 5, 2024 at 4:26 PM To: webobjects-dev@lists.apple.com , webobjects-...@wocommunity.org Subject: [EXTERNAL] Re: Java upgrade question Hi Mark, On 6 Apr 2024, at 6: 55 am, Morris, Mark via Webobjects-dev wrote: I’ve been trying to research (old messages, Google, etc. ), but

Re: Java upgrade question

2024-04-05 Thread Paul Hoadley via Webobjects-dev
Hi Mark, On 6 Apr 2024, at 6:55 am, Morris, Mark via Webobjects-dev wrote: > I’ve been trying to research (old messages, Google, etc.), but I don’t think > I’ve found anything definitive. > > I know at least at one point there was an issue migrating past Java 8, due to > the way WOnder patc

Java upgrade question

2024-04-05 Thread Morris, Mark via Webobjects-dev
Hi all, I’ve been trying to research (old messages, Google, etc.), but I don’t think I’ve found anything definitive. I know at least at one point there was an issue migrating past Java 8, due to the way WOnder patches/extends Apple’s frameworks. Has that been resolved or worked around? We wou

Re: ERFoundation question

2020-01-23 Thread Aaron Rosenzweig via Webobjects-dev
Interesting - perhaps it was a gift from a fruit company. AARON ROSENZWEIG / Chat 'n Bike e: aa...@chatnbike.com t: (301) 956-2319 > On Jan 23, 2020, at 8:08 PM, Henrique Prange wrote: > > No, you’re not. Ther

Re: ERFoundation question

2020-01-23 Thread Henrique Prange via Webobjects-dev
No, you’re not. There's no source code for the ERFoundation framework. 😕 Sent from my iPhone > On 23 Jan 2020, at 13:51, Aaron Rosenzweig via Webobjects-dev > wrote: > > I want to put some logging messages in NSBundle.java that resides in > ERFoundation.jar but I don’t understand how to do s

ERFoundation question

2020-01-23 Thread Aaron Rosenzweig via Webobjects-dev
I want to put some logging messages in NSBundle.java that resides in ERFoundation.jar but I don’t understand how to do so. It looks like ERFoundation.jar lives inside of ERJars.framework and there is no source? How is that possible? I must be mistaken. AARON ROSENZWEIG / Chat 'n Bike

Re: Question re ERAttachment

2019-12-20 Thread Theodore Petrosky via Webobjects-dev
I have something similar; Person to-many documentScans to-One theScan there is an entity between the Person and the object to be uploaded. You can keep all kinds of meta data in documentScans. Ted > On Dec 20, 2019, at 8:43 AM, Markus Ruggiero via Webobjects-dev > wrote: > > Started to hav

Re: Question re ERAttachment

2019-12-20 Thread Paul Yu via Webobjects-dev
Markus I would avoid touching the ERAttachment model itself, so I would model a many to many association from person to erattachment. And then if you need another attribute on the association eg isPrimary you can add it there Sent from my iPhone Please excuse iOS autocomplete > On Dec 20, 20

Question re ERAttachment

2019-12-20 Thread Markus Ruggiero via Webobjects-dev
Started to have a closer look at ERAttachment. Am a bit confused though. There is a nice example in the package doc that explains how to attach an avatar picture to a person. This is modelled as a Person toOne ERAttachment. But what if a person has more than one image or document? This would the

AW: Migrations and Prototypes Question

2018-10-23 Thread Wolfgang Hartmann
ag, 22. Oktober 2018 21:09 An: Samuel Pelletier Cc: WebObjects-Dev Mailing List List Betreff: Re: Migrations and Prototypes Question Thanks Samuel, I don’t have a working wolips dev environment either. It may not be worth it to dig deeper. I’m still a little mystified though as to why none o

Re: Migrations and Prototypes Question

2018-10-22 Thread Tim Worman
Thanks Samuel, I don’t have a working wolips dev environment either. It may not be worth it to dig deeper. I’m still a little mystified though as to why none of the attribute metadata from the model is available to the sychronization frameworks. I’m sure there’s a great explanation but that see

Re: Migrations and Prototypes Question

2018-10-21 Thread Samuel Pelletier
Hi Tim, I have the same problem with FrontBase and found where the code is but never tried to fix it. If I remember correctly, the code you are looking for is in the WOLips eclipse plugin in the EOModeler module. I do not think it would be really hard to fix but I do not have a working setup f

Migrations and Prototypes Question

2018-10-19 Thread Tim Worman
I’ve got a conundrum and I’m hoping someone can help with it. My model has some date value attributes defined in an entity (not timestamp). In one case I’m using the ‘date’ prototype and in another I’m testing the ‘javaLocalDate’ prototype. When using these prototypes, all the value conversions

Re: Question regarding the old WebObjects tools (WOBuilder et.al.)

2017-12-13 Thread Lon Varscsak
I still have access to WO4 on Windows, but it doesn't look like source for either of those apps is part of the distribution. -Lon On Wed, Dec 13, 2017 at 10:05 AM, Chuck Hill wrote: > I have not heard of them. > > Chuck > > On 2017-12-13, 8:53 AM, "Webobjects-dev on behalf of Markus Ruggiero" >

Re: Question regarding the old WebObjects tools (WOBuilder et.al.)

2017-12-13 Thread Chuck Hill
I have not heard of them. Chuck On 2017-12-13, 8:53 AM, "Webobjects-dev on behalf of Markus Ruggiero" wrote: Does anybody know whether the old Objective-C tools like EOModeler and WOBuilder are available in source form? The D2W RuleModeler is, but I'd like to play with the two other tool

Question regarding the old WebObjects tools (WOBuilder et.al.)

2017-12-13 Thread Markus Ruggiero
Does anybody know whether the old Objective-C tools like EOModeler and WOBuilder are available in source form? The D2W RuleModeler is, but I'd like to play with the two other tools. Call me masochistic ---markus--- ___ Do not post admin request

Re: ERXBatchingDisplayGroup question

2017-10-12 Thread Morris, Mark
Hi Aaron, Thanks, that makes perfect sense. I do think our apps might be overusing ERXBatchingDisplayGroup a bit. ;-) Regards, Mark On Oct 12, 2017, at 8:17 AM, Aaron Rosenzweig mailto:aa...@chatnbike.com>> wrote: Hello Mark, Your question is sound, thanks for asking it. All display

Re: ERXBatchingDisplayGroup question

2017-10-12 Thread Aaron Rosenzweig
Hello Mark, Your question is sound, thanks for asking it. All display groups “batch” - in that they allow you to show perhaps 10 objects at a time and maintain “forward” and “previous” page views. I maintain that “ERXBatchingDisplayGroup” is poorly named and for your purposes you should

ERXBatchingDisplayGroup question

2017-10-11 Thread Morris, Mark
Hi all, From some iffy experiences with them back in the WO 3.1 days, I’ve always avoided display groups, using my own batching/paging logic. But now I’m having issues with an existing ERXBatchingDisplayGroup, and I’m not sure what’s going on. displayedObjects() is working fine, and contains t

Re: data backup question

2017-05-17 Thread Morris, Mark
Hi Ted, On May 16, 2017, at 8:43 PM, Theodore Petrosky mailto:tedp...@yahoo.com>> wrote: I thought I could troll my way into something, but you caught me. My backup needs have always been very small. It’s the beauty of WO to be able to present the user with just enough. I was actually hoping t

Re: data backup question

2017-05-16 Thread Matthew Ness
Hi Ted, Just on backups and PostgreSQL, it's maybe worth noting that as well as backups in the RDS space, it's trivial to also use traditional 'backup' and 'restore' functionality, if you need to move, replicate, backup on-premise, etc. I wont be drawn into any flavour-distro wars (!), suffice to

Re: data backup question

2017-05-16 Thread Paul Hoadley
On 17 May 2017, at 6:22 am, Theodore Petrosky wrote: > How do you feel about responsiveness, especially postgresql responsiveness? We haven’t done any serious testing, but PostgreSQL on RDS is quite sufficient for our needs. > I have never had any real experience with MySQL so i don’t want to

Re: data backup question

2017-05-16 Thread Theodore Petrosky
Actually, I am still living in the free AWS. If you create a RDS, you have to pay. So I am running postgresql in the free instance. Yea, my data is really small right now. How do you feel about responsiveness, especially postgresql responsiveness? I have never had any real experience with MySQ

Re: data backup question

2017-05-15 Thread Paul Hoadley
Hi Ted, On 16 May 2017, at 00:36, Theodore Petrosky wrote: > Over the past few months I have been experimenting with using hosted systems > for my WO apps. I know there are others that are using hosted systems. How > are you backing up your data? > > Internally it was easy. I ran a script on

Re: data backup question

2017-05-15 Thread Musall, Maik
Hi Ted, finally a question which I really feel qualified to answer. :) For the regular filesystem part of it, I have a set of scripts that use rsync to back up to a backup target. The beauty of it is that all it needs is ssh login, with no other dependencies, and you can store the backup to

Local Form Validation Question

2016-11-18 Thread Can Ece
Hi, I have a Form in an Ajax Dialog, with CCSmartAjaxButton for submitting. I was locking for some way to validate form data with JavaScript before the submit Button actually fires. But i did not find any suitable Bindings. I am rather new to this Stuff and need a little hand holding. How should

Re: JoavaMonitor question

2016-10-25 Thread Paul Hoadley
Hi Ted, On 26 Oct 2016, at 8:51 AM, Theodore Petrosky wrote: > I think you are saying that JavaMonitor should only be accessed by the direct > connect port. > > I never read that anywhere, and I have alway create an instance to > JavaMonitor. Is this a bad practice? I just don’t think you ne

Re: JoavaMonitor question

2016-10-25 Thread Lon Varscsak
I think the general thought is that you don’t want that accessible externally. If you run it in direct connect mode and then make sure that port isn’t accessible via your firewall you should be “safe”. -Lon On Tue, Oct 25, 2016 at 3:21 PM, Theodore Petrosky wrote: > I think you are saying that

Re: JoavaMonitor question

2016-10-25 Thread Paul Hoadley
Hi Ted, On 26 Oct 2016, at 2:48 AM, Theodore Petrosky wrote: > Why is it that I can only access the application scheduling or Application > Settings sections of JavaMonitor when I access it with the direct connect > (:56789)? these sections are not accessible if I use the running app. > http:

Re: slack question

2016-10-05 Thread Pascal Robert
> Le 5 oct. 2016 à 11:21, David LeBer a écrit : > > Apropos to this, Slack also has retention limits on it's free tier (number of > messages & time I believe) - and a significant jump from free to its first > paid tier. Which is why for a couple of other groups I work with we switched > to an

Re: slack question

2016-10-05 Thread David LeBer
This reminds me, back in the day, I belonged to the Mac Managers list. This list was unique in that it had a "questions and summaries only" policy. You could post a question to the list, and if you did you were expected to post a summary with a resolution (or at least what you'

Re: slack question

2016-10-05 Thread David LeBer
Apropos to this, Slack also has retention limits on it's free tier (number of messages & time I believe) - and a significant jump from free to its first paid tier. Which is why for a couple of other groups I work with we switched to an open-source/host your own solution (we chose Rocket.Chat) -

Re: slack question

2016-10-05 Thread Samuel Pelletier
Hi, I think the list is better for questions and slack for discussion. Discussions about the future, others subjects than WO pertinent to the community, beer, etc are better suited in Slack I think and have no interest for long term indexing and search. Slack group the message in discussions a

Re: slack question

2016-10-05 Thread Hugi Thordarson
No, the discussions on slack are entirely closed within the slack system which is a problem. I think it’s very wise to keep as many questions on the list as possible and try to use slack mostly for smaller discussions. - hugi > On 5. okt. 2016, at 12:14, Theodore Petrosky wrote: > > so now

Re: UUID question

2016-06-30 Thread Johann Werner
> Am 30.06.2016 um 13:06 schrieb Musall Maik : > > By the way, there is a bad NPE in the new UUID code that prevents object > insertion completely for tables that don't use a prototype for primary key. > Could please anyone merge the fix quickly? Done :-) > > https://github.com/wocommunity/w

Re: UUID question

2016-06-30 Thread Musall Maik
By the way, there is a bad NPE in the new UUID code that prevents object insertion completely for tables that don't use a prototype for primary key. Could please anyone merge the fix quickly? https://github.com/wocommunity/wonder/pull/779 ___ Do not

Re: Mysql/postgre sql database question

2016-06-28 Thread Steve Peery
What version of MySQL did you upgrade to? I have an xserve running MySQL and was thinking about upgrading. Steve > On Jun 28, 2016, at 3:13 PM, Musall Maik wrote: > > PostgreSQL runs fine on OS X. I recommend homebrew to manage the software > installation, which lets you easily choose which

Re: Mysql/postgre sql database question

2016-06-28 Thread Musall Maik
PostgreSQL runs fine on OS X. I recommend homebrew to manage the software installation, which lets you easily choose which version you want, pin certain versions and so on. The only caveat that I know of is when you run pg on another platform, say Linux, in production, and use an OS X server as

Mysql/postgre sql database question

2016-06-28 Thread ute Hoffmann
Hi, my intranet applications runs for some years on mysql. But now it seems the new version of mysql and Mac OS X Yosemite are no longer compatible. The database opens tables but never closes them and after some time throws exceptions (too many open files). I tried what I found on the web bu

Re: UUID question

2016-06-28 Thread Theodore Petrosky
and I had to escape all those backslashes: String theSQL = "INSERT INTO person (active, firstname, lastname, username, password, creationdate, id) VALUES " + "(true, 'Ted', 'Petrosky', 'tedpet', '3368', now(), E'x" + UUIDUtilities.generateAsNSData()._hexString() +"')”; turn

Re: UUID question

2016-06-28 Thread Ramsey Gurley
https://www.postgresql.org/docs/9.0/static/datatype-binary.html bytea_output used to be escape by default. Somewhere along the way they changed it to hex. I find setting it to escape makes our WO things work properly. On Jun 28, 2016, at 6:52 AM, Theodore Petrosky wrote: > > INSERT INTO perso

Re: UUID question

2016-06-28 Thread Samuel Pelletier
Ted, Your first statement does not include the \\x in front of the literal, try : INSERT INTO person (first name, last name, id) VALUES ('Ted', 'Petrosky', E'\\x021D57D63ED54328A5411B07442E262E') See the PG doc for the binary data type: https://www.postgresql.org/docs/9.1/static/datatype-binar

Re: UUID question

2016-06-28 Thread Theodore Petrosky
INSERT INTO person (firstname, lastname, id) VALUES ('Ted', 'Petrosky', E'021D57D63ED54328A5411B07442E262E') this is what shows up in the database: \x3032314435374436334544353433323841353431314230373434324532363245 INSERT INTO person (firstname, lastname, id) VALUES ('Ted', 'Petrosky', de

Re: UUID question

2016-06-28 Thread Samuel Pelletier
Ted, They are probably 10 of other variations of this code but I do not think there is any best way, the data needs to be converted to hex for the SQL. I'm sot sure if the "decode(E'...')" part is required, based on pg doc, byte constant can be written as "E'\\xDEADBEEF'" so "E'\\x" + UUIDUtil

Re: UUID question

2016-06-28 Thread Paul Hoadley
ot; + > UUIDUtilities.generateAsNSData()._hexString() + "', 'hex'))"; > > ERXJDBCUtilities.executeUpdate(database.adaptorChannel(), theSQL); > > It works, but is there a better way or more correct way to create the bytea > attribute to

Re: Question about jdbc connection pool

2016-06-08 Thread Tarun Reddy
JVMs? Or should I really be using another application framework? > > Tarun > > > > On Jun 6, 2016, at 11:48 AM, Chuck Hill wrote: > > I am pretty sure that maps to the ServerSocket’s backlog: “requested > maximum length of the queue of incoming connections” > > >

Re: Question about jdbc connection pool

2016-06-07 Thread Samuel Pelletier
connections” >> >> >> From: > <mailto:webobjects-dev-bounces+chill=gevityinc@lists.apple.com>> on >> behalf of Ramsey Gurley > <mailto:rgur...@smarthealth.com>> >> Date: Monday, June 6, 2016 at 10:44 AM >> To: Leigh Kivenko ma

Re: Question about jdbc connection pool

2016-06-07 Thread Musall Maik
> Am 07.06.2016 um 02:04 schrieb Ramsey Gurley : > > The main reason there’s a single connection and a global lock is to permit > snapshotting. This snapshot cache is central to Apple’s ORM design. AFAIK, if > you open 12 connections to the db, you’re still going to be stuck waiting on > synch

Re: Question about jdbc connection pool

2016-06-06 Thread Ken Anderson
hat maps to the ServerSocket’s backlog: “requested maximum >> length of the queue of incoming connections” >> >> >> From: on behalf >> of Ramsey Gurley >> Date: Monday, June 6, 2016 at 10:44 AM >> To: Leigh Kivenko >> Cc: WebObjects-Dev &

Re: Question about jdbc connection pool

2016-06-06 Thread Pascal Robert
11:48 AM, Chuck Hill wrote: >>> >>> I am pretty sure that maps to the ServerSocket’s backlog: “requested >>> maximum length of the queue of incoming connections” >>> >>> >>> From: on >>> behalf of Ramsey Gurley >>>

Re: Question about jdbc connection pool

2016-06-06 Thread Ramsey Gurley
d maximum >> length of the queue of incoming connections” >> >> >> From: on behalf >> of Ramsey Gurley >> Date: Monday, June 6, 2016 at 10:44 AM >> To: Leigh Kivenko >> Cc: WebObjects-Dev >> Subject: Re: Question about jdbc connection p

Re: Question about jdbc connection pool

2016-06-06 Thread Tarun Reddy
etty sure that maps to the ServerSocket’s backlog: “requested maximum > length of the queue of incoming connections” > > > From: on behalf > of Ramsey Gurley > Date: Monday, June 6, 2016 at 10:44 AM > To: Leigh Kivenko > Cc: WebObjects-Dev > Subject: Re: Question

Re: Question about jdbc connection pool

2016-06-06 Thread Chuck Hill
I am pretty sure that maps to the ServerSocket’s backlog: “requested maximum length of the queue of incoming connections” From: on behalf of Ramsey Gurley Date: Monday, June 6, 2016 at 10:44 AM To: Leigh Kivenko Cc: WebObjects-Dev Subject: Re: Question about jdbc connection pool Off the

Re: Question about jdbc connection pool

2016-06-06 Thread Ramsey Gurley
(by return e-mail or otherwise), and delete the e-mail. > > From: Ramsey Gurley [mailto:rgur...@smarthealth.com] > Sent: Monday, June 06, 2016 12:52 PM > To: Leigh Kivenko > Cc: webobjects-dev@lists.apple.com > Subject: Re: Question about jdbc connection pool > > Yes, one

Re: Question about jdbc connection pool

2016-06-06 Thread Chuck Hill
Gurley Cc: "webobjects-dev@lists.apple.com" Subject: RE: Question about jdbc connection pool Thanks Ramsey. Does that mean there is only 1 database connection shared by all end-users of an app? So if a user hits a query that runs for 3+ seconds all other application users are stuck waitin

Re: Question about jdbc connection pool

2016-06-06 Thread Ramsey Gurley
Sent: Monday, June 06, 2016 12:18 PM > To: Leigh Kivenko > Cc: webobjects-dev@lists.apple.com > Subject: Re: Question about jdbc connection pool > > The ObjectStoreCoordinator opens one connection which everything shares by > default. If you want multiple connections, you have to c

RE: Question about jdbc connection pool

2016-06-06 Thread Leigh Kivenko
es+dev=portfolioaid@lists.apple.com [mailto:webobjects-dev-bounces+dev=portfolioaid@lists.apple.com] On Behalf Of Ramsey Gurley Sent: Monday, June 06, 2016 12:18 PM To: Leigh Kivenko Cc: webobjects-dev@lists.apple.com Subject: Re: Question about jdbc connection pool The ObjectStoreCoord

Re: Question about jdbc connection pool

2016-06-06 Thread Ramsey Gurley
The ObjectStoreCoordinator opens one connection which everything shares by default. If you want multiple connections, you have to create multiple OSCs. There’s an OSC pool built into Wonder, but it leaks memory. On Jun 6, 2016, at 8:40 AM, Leigh Kivenko wrote: > Hello, > How does one set the j

Question about jdbc connection pool

2016-06-06 Thread Leigh Kivenko
Hello, How does one set the jdbc connection pool size? Is there a default if this isn't specifically set? Thanks, Leigh Kivenko | VP, Technology PortfolioAid t. 416-479-0523 | e. lei...@portfolioaid.com This e-mail may be privileged and confidential. If you recei

Re: modeling question

2016-04-21 Thread Chuck Hill
This *might* be what you want: https://jenkins.wocommunity.org/job/WonderIntegration/javadoc/er/extensions/partials/package-summary.html On 2016-04-21, 4:49 PM, "webobjects-dev-bounces+chill=gevityinc@lists.apple.com on behalf of T Worman" wrote: >All: > >I have a new database (read o

modeling question

2016-04-21 Thread T Worman
All: I have a new database (read only) that I need to model and sync data from on a daily basis. Since this is its primary purpose, there are fields in every table that are versioning metadata about each row - whether it represents an initial insert or an update, the dates of updates, etc. Sin

Re: ERDDelayedBooleanAssignment question

2016-02-24 Thread Fabian Peters
Hi Sébastien, If you look at ERMDDeleteButton, you'll find that canDelete() does not check the "isEntityDeletable" key. Instead: return object() != null && object() instanceof ERXGuardedObjectInterface ? ((ERXGuardedObjectInterface)object()).canDelete() : true; If you're not using the

Re: ERDDelayedBooleanAssignment question

2016-02-23 Thread Sébastien Rottiers
Forget my previous post, in fact, it doesn’t work for me (I had forgotten to remove the clear d2w cache by the code, thing that doesn’t work in deployment). > Le 23 févr. 2016 à 09:42, Sébastien Rottiers a écrit : > > Thanks for the replies ! > > I just test your first solution Mark and it wor

Re: ERDDelayedBooleanAssignment question

2016-02-23 Thread Sébastien Rottiers
Thanks for the replies ! I just test your first solution Mark and it works like a charm ! Sébastien > Le 22 févr. 2016 à 22:47, Mark Wardle a écrit : > > I wonder whether your rules are being cached. > > I do this instead: > > 100 : entity.name like 'Result*' => isEntityDeletable = > "sess

Re: ERDDelayedBooleanAssignment question

2016-02-22 Thread Mark Wardle
I wonder whether your rules are being cached. I do this instead: 100 : entity.name like 'Result*' => isEntityDeletable = "session.authenticatedUser.role.isSystem" [er.directtoweb.ERDDelayedKeyValueAssignment] or 100 : entity.name = 'Seizure' => isEntityEditable = "object.summaryEpilepsy.pat

ERDDelayedBooleanAssignment question

2016-02-22 Thread Sébastien Rottiers
Hello, I have two rules to control the access write of my users (isEntityEditable and isEntityDeletable). Here is these rules : 100 : *true* => isEntityEditable = {"conditionKey" = "session.userConnected.isAdmin"; "falseValue" = "0"; "trueValue" = "1"; } [er.directtoweb.assignments.delayed

Re: Yet another newby question on the tutorial

2015-10-19 Thread Fabian Peters
Hi Barry, For a short while there was a wrong project name in the build.properties file of H2PlugIn. It was fixed with commit c9eb740 on 2015-10-02. Maybe that's the issue. Fabian > Am 19.10.2015 um 16:36 schrieb Barry Starrfield : > > I’m getting back into WO, but struggling with the tutoria

Yet another newby question on the tutorial

2015-10-19 Thread Barry Starrfield
I’m getting back into WO, but struggling with the tutorial. On the RESTful app (https://wiki.wocommunity.org/display/WEB/Your+First+Rest+Project) I’m receiving the following error when it attempts the initial migration: Any advice? 2015-10-19 17:28:7 IDT] : Warning - Unable to find project

Re: Tutorial Question

2015-10-17 Thread David LeBer
Yeah, you'll need imports for any classes you reference in your class. Though generally I avoid wildcard imports, and use 'Organize Imports' (Cmd + Shift + O) to keep things organized (see caveat* below). I also have a post save action to remove unused imports: D *Caveat on 'Organize Impor

Re: Tutorial Question

2015-10-17 Thread Barry Starrfield
Frameworks are installed. I just changed the import to include com.webobjects.appserver.* and it’s working. Is that import normally necessary? > On Oct 17, 2015, at 7:02 PM, David LeBer wrote: > > Barry, > > Are the webobjects frameworks installed? And do your wolips.properties > (Eclipse -

Re: Tutorial Question

2015-10-17 Thread David LeBer
Barry, Are the webobjects frameworks installed? And do your wolips.properties (Eclipse -> Preferences -> WOLips) point at their correct location? D Barry Starrfield October 17, 2015 at 11:58 AM Hi, I’m getting back into WO after more than a decade. I’m wor

Tutorial Question

2015-10-17 Thread Barry Starrfield
Hi, I’m getting back into WO after more than a decade. I’m working through the tutorial at https://wiki.wocommunity.org/display/WEB/Your+First+Project+-+Hello+World and have run into a problem - namely WOActionResults is not being found by Eclipse (Mars, with the latest WOLips build, and the W

Re: WOLips 4.4 Installation Question - how do you do it?

2015-10-07 Thread Larry Mills-Gahl
/lastSuccessfulBuild/artifact/temp/dist/ Larry Mills-Gahl elem...@gmail.com > On Sep 29, 2015, at 1:50 PM, Barry Starrfield > wrote: > > A basic question - how do I install the 4.4 version of WOLips in Eclipse > Mars? This is the first time in a decade that i’m working with WO, and

Re: WOLips 4.4 Installation Question - how do you do it?

2015-09-29 Thread Johann Werner
Hi Barry, that page in the wiki should hold all needed info: https://wiki.wocommunity.org/display/WOL/Install+WOLips+with+Eclipse+Update+Manager?src=search jw > Am 29.09.2015 um 19:50 schrieb Barry Starrfield : > > A basic question - how do I install the 4.4 version of WOLips i

WOLips 4.4 Installation Question - how do you do it?

2015-09-29 Thread Barry Starrfield
A basic question - how do I install the 4.4 version of WOLips in Eclipse Mars? This is the first time in a decade that i’m working with WO, and the current documentation on the site seems a bit out of date. Can anyone provide instructions? Thanks, Barry

Re: question on ERMailDeliveryHTML

2015-04-27 Thread Chuck Hill
Glad to hear that you have it sorted out. ERMailUtils.instantiatePage will create a session if you pass in the sessionDict parameter, but in that case session creation is likely not a surprise! Chuck On 2015-04-27, 10:33 AM, "Timothy Worman" wrote: The component in question c

Re: question on ERMailDeliveryHTML

2015-04-27 Thread Timothy Worman
The component in question contained a repetition which was repeating over a “row” subcomponent. I decided to make a “light” version of the row component which relied only on WOString and WOHyperlink. I refactored the “heavier” row component to extend the new, lighter one - and which will only

Re: question on ERMailDeliveryHTML

2015-04-25 Thread webobjects-dev
ERMailUtils.instantiatePage calls the componentbs session() method which will create a Session. What I used to do in a distant past was to create a component with the normal constructor and pass to this constructor a dummy WOContext. I was using this technique to send batches of emails in the b

Re: question on ERMailDeliveryHTML

2015-04-24 Thread Chuck Hill
I'd be surprised if you could NOT replace some bindings to avoid session creation. Chuck On 2015-04-24, 10:24 AM, "Timothy Worman" wrote: Yeah, I see what you're saying. That's why I mentioned in my first that the component contains things that I wouldn't want to do by hand. I'll have to exa

Re: question on ERMailDeliveryHTML

2015-04-24 Thread Timothy Worman
Yeah, I see what you’re saying. That’s why I mentioned in my first that the component contains things that I wouldn’t want to do by hand. I’ll have to examine the component and remind myself of which WOComponents require a session. I may be able to replace bits and pieces. Tim Worman UCLA GSE&I

Re: question on ERMailDeliveryHTML

2015-04-23 Thread Chuck Hill
I think you are missing my point. It is not ERMailUtils.instantiatePage that is creating a session, it is the content of your component. The component you are e-mailing is using component actions, or referencing session.something, that is why it is creating a session (I think, this is what the

Re: question on ERMailDeliveryHTML

2015-04-23 Thread Timothy Worman
Hi Chuck! The component that is being emailed isn’t being sent as the result of a user action. It is being sent as part of a quartz job. For a bunch of fetched EO’s, their global ID’s are passed to a method that uses ERMailUtils.instantiatePage to create an instance of the component for each EO

Re: question on ERMailDeliveryHTML

2015-04-23 Thread Chuck Hill
Hi Tim, It is probably because your email is using component actions instead of direct actions. Component actions require a session and are definitely not what you want in an email. For WOHyperlink, as an example, you need to bind directActionName instead of action. Chuck On 2015-04-23, 12

question on ERMailDeliveryHTML

2015-04-23 Thread Timothy Worman
In my app I am tracking session creation - as a way to sniff out some issues I’ve had with some going stray. Anyhow, I am sending NSArray to a background task that sends emails using ERMailDeliveryHTML. These are component based emails. Low and behold, each and every one creates a new session.

Re: Project Wonder Noob question

2015-03-17 Thread Calven Eggert
doh!thanks. On 2015-03-17, at 4:22 PM, Ramsey Gurley wrote: > In the debugger, you should see turn down arrows beside your debugger values. > If you open the EO, you should see a __dictionary ivar that has all your > values. > > On Mar 17, 2015, at 1:03 PM, Calven Eggert wrote: > >> I'm

Re: Project Wonder Noob question

2015-03-17 Thread Ramsey Gurley
In the debugger, you should see turn down arrows beside your debugger values. If you open the EO, you should see a __dictionary ivar that has all your values. On Mar 17, 2015, at 1:03 PM, Calven Eggert wrote: > I'm trying to find where in the Wonder documentation I can figure out how to > view

Project Wonder Noob question

2015-03-17 Thread Calven Eggert
I'm trying to find where in the Wonder documentation I can figure out how to view my variables in the eclipse debugger. Before Project WOnder my Enterprise Objects in debug mode looked like this: {values = {programGroupingId = 6; displayName = "Joe Smith"; bixidentity = ""... Now using project w

Re: D2W propertyKey question

2014-11-14 Thread Chuck Hill
Key vs KeyPath? On 2014-11-14, 1:41 PM, "James Cicenia" wrote: I have an App object. I have a method in App: public AppConfigIOS iosAppConfig(){ //lazily create an instance of AppConfigIOS } how come I get an error in my rule for "tabSectionContents" with: "iosAppConfig.certPassword"

D2W propertyKey question

2014-11-14 Thread James Cicenia
I have an App object. I have a method in App: public AppConfigIOS iosAppConfig(){ //lazily create an instance of AppConfigIOS } how come I get an error in my rule for “tabSectionContents” with: “iosAppConfig.certPassword" It says lookup of unknown key: valueForKey(): lookup of unknown key

Re: ERMODTabInspectPage tabs question

2014-08-19 Thread Fabian Peters
Hi Ted, Maybe I didn't get your question, but: > public NSArray importantPdfs() { >return pdfs(isImportant.eq(true), null, false); > } > 100 : pageConfiguration = 'EditArticle' => tabSectionsContents = ((“main", > "pubRelease", "a

ERMODTabInspectPage tabs question

2014-08-18 Thread Theodore Petrosky
I have an entity’s list page that is a tab inspect page. Entity Article >> pdfs > thePDF. I have a tab to show the pdfs which show up as a ERMODEditRelationshipPage. This is a list of PDFs that have been uploaded. Let’s as there are 15 PDFs. I want to add a check box to the PDF entity (don’t k

Re: D2W Rule Question

2014-06-15 Thread Theodore Petrosky
you might want to contact Ken Ishimoto. He wrote TBRuleModeler as a Mac only app. I know he made it available to WOWODC14 attendees. It has a few idiosyncrasies, but overall I feel that it works well. It has never crashed nor hung unexpectedly. On Jun 15, 2014, at 4:13 PM, Timothy Worman wrot

Re: D2W Rule Question

2014-06-15 Thread Timothy Worman
In rule modeler the value shows with quotes - so that’s weird. Another weird thing - in RuleModeler, I have two 'BooleanAssignment (com.webobjects.directtoweb).’ I selected the other one and now things work fine. They were stacked right on top of each other in the assignment popup in RM. I’m n

Re: D2W Rule Question

2014-06-14 Thread Theodore Petrosky
I was just playing with this and I can not get the boolean value to appear without the quotes 100 : (entity.name = 'Instrument' or entity.name = 'Person') => isEntityEditable = "true" [com.webobjects.directtoweb.BooleanAssignment] also I could not get the LHS to appear with the extra parenthesi

Re: D2W Rule Question

2014-06-14 Thread David Holt
"true"? Sent from my iPad > On Jun 14, 2014, at 6:46 PM, Timothy Worman wrote: > > All: > > I’ve got a rule that looks like this: > > 110 : ((entity.name = 'PTAMembership') or (entity.name = 'PTAMember')) => > isEntityEditable = true [com.webobjects.directtoweb.BooleanAssignment ] > > Is an

D2W Rule Question

2014-06-14 Thread Timothy Worman
All: I’ve got a rule that looks like this: 110 : ((entity.name = 'PTAMembership') or (entity.name = 'PTAMember')) => isEntityEditable = true [com.webobjects.directtoweb.BooleanAssignment ] Is anyone able to tell me what I'm doing wrong with this rule? At application launch this is causing an e

Re: Deployment Question

2013-11-03 Thread Thomas Peters
I am very happy with RackSpace… On Oct 30, 2013, at 1:51 AM, Michael Kondratov wrote: > We used to use slice host and Rackspace. Worked fine. > > MIchael > Kondratov Labs > > On Oct 30, 2013, at 1:48 AM, ute Hoffmann wrote: > >> Hi, >> Has anyone experience with WebObjects Deployment on a 1

Re: Deployment Question

2013-10-29 Thread Michael Kondratov
We used to use slice host and Rackspace. Worked fine. MIchael Kondratov Labs On Oct 30, 2013, at 1:48 AM, ute Hoffmann wrote: > Hi, > Has anyone experience with WebObjects Deployment on a 1&1 Virtual Server XL > with 4 GB RAM. Database is mysql, > operating system is RedHead 6. We seem to fail

Deployment Question

2013-10-29 Thread ute Hoffmann
Hi, Has anyone experience with WebObjects Deployment on a 1&1 Virtual Server XL with 4 GB RAM. Database is mysql, operating system is RedHead 6. We seem to fail to get this running. After a long time with several problems we now get a "java.lang.OutOfMemoryError: unable to create new native

Stupid question about Wonder Docs and WOLips integration

2013-10-04 Thread Markus Ruggiero
Folks, This is probably the most stupid question but I seem to have a mental black-out: Is there a way to attach the Wonder api doc to the frameworks so that when I create a new Wonder project in WOlips I get all the nice api reference doc while editing my java files? I know I can do this

  1   2   3   4   5   6   7   8   9   10   >