Re: New potential project to convert ASP web app

2017-07-01 Thread Ted Archibald
Is there literally anyone on this list starting a NEW webobjects project? I love the old girl and she taught me a lot but she is long dead. On Mon, Jun 26, 2017 at 4:12 AM, Markus Ruggiero wrote: > Hi Robert, > > many valid points in replies to your question

Re: Instance won't shutdown with ERJGroupsSynchronizer

2016-07-14 Thread Ted Archibald
Blast form the past…. This problem was causing issues with my deploy scripts back when I was actively coding in WO. Now I don’t have these problems since I haven’t updated any code and redeployed in a couple years. On Wed, Jul 13, 2016 at 5:38 PM, Paul Hoadley wrote: >

Re: jrebel

2016-07-14 Thread Ted Archibald
Back when I was coding WO more often I using JRebel 4 and it worked perfectly. I just had some DAs so I could force DB migrations and other tasks that only happen at startup. But I haven’t worked on my WO projects in about 2 years. On Thu, Jul 14, 2016 at 12:42 PM, Theodore Petrosky

Re: Consuming REST services with a WO app

2014-10-27 Thread Ted Archibald
Here’s a quick and dirty wrapper for httpclient that I use. On Mon, Oct 27, 2014 at 3:50 AM, Christoph Wick c...@i4innovation.de wrote: Sorry (it was too late yesterday): I found it: http://wiki.wocommunity.org/display/documentation/Consuming+REST+services C.U.CW -- What are the three

Re:

2014-09-29 Thread Ted Archibald
I use a modified version of ERXExistsQualifier to do an EXISTS IN query, and I have that problem all the time. I always assumed it was my code that was causing that. On Sun, Sep 28, 2014 at 4:50 AM, Thomas LATTER latter...@gmail.com wrote: Is there a known bug on ERXExistsQualifiers? The

Creating Multiple Objects in ERRest?

2014-07-07 Thread Ted Archibald
Is there a built-in way to create multiple objects with ERRest? Something like this: curl -X POST -d “[{ name:'Andrew Schrag’ },{ name:’Chuck Hill’ }] http://localhost/App.woa/ra/Persons.json I know I can just parse the data myself and create all the objects, but is there a way that works with

Re: Webobject project is not runing!

2014-07-07 Thread Ted Archibald
Your app name is JavaFoundation? On Mon, Jul 7, 2014 at 2:03 PM, Pawan Tiwari pawan0...@gmail.com wrote: FYI -- Forwarded message -- From: Pawan Tiwari pawan0...@gmail.com Date: Tue, Jul 8, 2014 at 1:30 AM Subject: Webobject project is not runing! To:

Re: Webobject project is not runing!

2014-07-07 Thread Ted Archibald
everything on another computer I guess. Do you have a Mac? Can you try also to create a Wonder app? Philippe Rabier - http://twitter.com/prabier Sent from my iPhone On 07 Jul 2014, at 22:27, Ted Archibald ted.archib...@gmail.com wrote: Your app name

ERRest and JSON Dates

2014-05-28 Thread Ted Archibald
Been working on a project where I'm consuming JSON from a web app and encountered a problem with dates back and forth. This is the date format I'm getting from javascript (new Date).toJSON(): 2014-05-28T04:27:49.722Z And this is the date format ERRest seems to want 2014-05-28T04:27:49Z If I use

Instance won't shutdown with ERJGroupsSynchronizer

2013-11-30 Thread Ted Archibald
I've been having a bug where an instance won't shutdown (caveat: I haven't updated wonder in 2 years for fear of breaking stuff...) The stack trace points to an error in ERXObjectStoreCoordinatorSynchronizer$ProcessChangesQueue.stop Attempted to stop the ProcessChangesQueue when it wasn't already

Re: Edit url for WO application

2013-11-16 Thread Ted Archibald
I'm using rest in a couple of apps and use the following to clean up the URLs (i.e. no /ra crap): RewriteRule

Re: REST and Excel data

2013-11-08 Thread Ted Archibald
I have a basic VBA library that I've made for doing two-way excel to WO communication. It just uses VBA and CSV strings coming to and from a direct action. Currently it's Mac only since I use VBA - Applescript - Curl On Tue, Nov 5, 2013 at 11:58 AM, Hugi Thordarson h...@karlmenn.is wrote:

Getting the App Instance

2013-02-02 Thread Ted Archibald
Is there a way to get the app instance number (i.e. /cgi-bin/WebObjects/AppName/2) in the app? I want to have separate cookies for each session on each instance, but to do so I need to know the instance number for the cookie domain. I know you could set a property in each instance in WOMonitor,

Re: Getting the App Instance

2013-02-02 Thread Ted Archibald
Works like a charm, thanks! On Sat, Feb 2, 2013 at 11:26 AM, Bogdan Zlatanov bogdan.zlata...@gmail.comwrote: Hi Ted, WORequest - applicationNumber() should have what you're looking for. Cheers On 2 Feb 2013, at 18:14, Ted Archibald wrote: Is there a way to get the app instance number

Re: My first Hell World App

2013-01-14 Thread Ted Archibald
I've had this problem in the past, it was due to a space in the application/project name. I'd stay away from spaces, dashes, periods, slashes, etc. in the app/project name and the in the path to the project. On Mon, Jan 14, 2013 at 5:02 PM, Ramsey Gurley ramseygur...@gmail.comwrote: I think WO

Re: My first Hell World App

2013-01-14 Thread Ted Archibald
Here's what I posted around last year: I can duplicate the bug on my computer by creating a new wonder app called test1.0 Something in wolips doesn't like the period, or at least something on my computer doesn't. On Mon, Jan 14, 2013 at 6:57 PM, Ted Archibald ted.archib...@gmail.comwrote

Re: How to contribute ?

2013-01-14 Thread Ted Archibald
For another example, I've no idea why *.api files are included in a deployment build Good question. Historical oversight? when they are a purely build-time artifact (aren't they?). Aren't they included because at one time it was common practice to edit components on the fly without

Re: How to contribute ?

2013-01-14 Thread Ted Archibald
, Chuck Hill ch...@global-village.netwrote: On 2013-01-14, at 5:32 PM, Ted Archibald wrote: For another example, I've no idea why *.api files are included in a deployment build Good question. Historical oversight? when they are a purely build-time artifact (aren't they?). Aren't

log4j Settings For iPhone

2013-01-12 Thread Ted Archibald
I have log4j shooting out emails on errors which is great, but does anyone have any settings that make it sane to read on my iphone? When I get errors sometimes I'm getting HUGE dumps that take me at least 30 seconds to scroll to the bottom, then when I do the formatting is so illegible I can

Re: URL re-writing at the root of the domain

2013-01-11 Thread Ted Archibald
Although I'm not running at the root domain I did write a rewrite rule so that Rest routes are cleaner (i.e. no /ra crap). I just added a bunch of exceptions to the regex, which solved my problems with multiple request handlers. e.g. RewriteRule

Re: WebServerResources problem with Apache running in a different port.

2012-11-24 Thread Ted Archibald
I'm not sure, but I think in apache under the host you need to add: RequestHeader set x-webobjects-server-port 8090 On Sat, Nov 24, 2012 at 11:11 AM, Miguel Torres w...@toracom.net wrote: Hi list, One of our clients needs to run apache in a different port than the 80. I googled and I found

Re: WOWODC 2013?

2012-10-21 Thread Ted Archibald
+1 for vegas On Sat, Oct 20, 2012 at 6:10 PM, Daniel Beatty danielbea...@mac.com wrote: Greetings Joe and Klaus, Do you know of anyone in those Northern Californian cities that would not mind coming down to the So Cal or even to the Desert (in the winter maybe) for a WOWODC-Pacific Coast?

Re: Creating a Git Server

2012-10-10 Thread Ted Archibald
When I switched over to git, I had problems with git on my 10.5 server. According to my notes, installing via macports solved my problems. On Tue, Oct 9, 2012 at 1:30 PM, Roger Perryman ro...@xeotech.com wrote: Can anyone confirm (or deny) that git 1.7.5.4 is the latest version that works on

Re: Rewrite WO app URL

2012-09-11 Thread Ted Archibald
On the apps I use I like clean URLs, I've been using alot of ERRest to help as well. For rewrite rules I use a more complicated rewrite so that I can write ERRest routes like server.com/AppName/Route/Whatever instead of server.com/AppName/ra/Route/Whatever: RewriteRule

Re: linking editing contexts from two apps

2012-08-01 Thread Ted Archibald
ERJGroupsSynchronizer might be what you're looking for, Mike describes it in the video Project Wonder in Depth (WOWODC West 2009) On Tue, Jul 31, 2012 at 8:48 AM, Theodore Petrosky tedp...@yahoo.comwrote: I have a Wonder app that I did a while ago. This is an internal app that is used in

Re: Hello World crashing in Eclipse 4.2

2012-08-01 Thread Ted Archibald
What's the name of your app/project? I had that problem once and it was because of a space and or period in the name. On Wed, Aug 1, 2012 at 4:11 AM, Maik Musall m...@selbstdenker.ag wrote: Am 01.08.2012 um 12:07 schrieb Q: On 01/08/2012, at 6:03 PM, Maik Musall m...@selbstdenker.ag wrote:

Re: Periodic Tasks in WO

2012-08-01 Thread Ted Archibald
The other (lazy) way to do periodic tasks is to do it via directactions fired from a jenkins or cron job. Took seconds to setup... ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: JavaERJDBCAdaptor ?

2012-07-26 Thread Ted Archibald
Logging and hooks by the looks of it. On Thu, Jul 26, 2012 at 12:46 PM, James Cicenia ja...@jimijon.com wrote: What is JavaERJDBCAdaptor and what is it for, or what does it cure? Is JavaJDBCAdaptor good enough? Thanks James ___ Do not post

Re: JavaMonitor

2012-07-25 Thread Ted Archibald
JavaMonitor IS built with embedded frameworks. The problem you're having is slightly different, you kinda have a couple things going on here. JavaMonitor is built all in one, including the app and the webserver resources. This means you have to manually copy those resources into the proper

Re: JavaMonitor

2012-07-24 Thread Ted Archibald
Copy the frameworks from JavaMonitor.woa/Contents/Frameworks into /var/www/htdocs/WebObjects/Frameworks Then remove /var/www/htdocs/WebObjects/Frameworks/*.framework/Resources which will just leave the static resources *.framework/WebServerResources On Tue, Jul 24, 2012 at 3:08 PM, WebObjects

Re: Logging on LINUX

2012-07-17 Thread Ted Archibald
log4j FTW Refer to Paul Yu's presentation (fluffy bunny I think) for a quick outline on how to set it up. On Tue, Jul 17, 2012 at 5:52 AM, Daniele Corti ilde...@gmail.com wrote: 2012/7/17 jp.malr...@free.fr That was yesterday. Does this directory need to be writtable by apache?

Re: one last Eclipse mystery... can't connect to any database.

2012-07-16 Thread Ted Archibald
, however, this is really another strange problem. Seems like eclipse is blocking. Anyone else have any other suggestions? Thanks James On Sat, Jul 14, 2012 at 7:49 PM, Ted Archibald ted.archib...@gmail.comwrote: You have the jdbc jar for your DB installed, correct? On Sat, Jul 14, 2012 at 11

Re: one last Eclipse mystery... can't connect to any database.

2012-07-14 Thread Ted Archibald
You have the jdbc jar for your DB installed, correct? On Sat, Jul 14, 2012 at 11:43 AM, James Cicenia ja...@jimijon.com wrote: Hello - I am having another head scratching mystery. No matter what I do, no matter the database, no matter the credentials entered and no matter whether the

Re: Anyone like to transcripti WOWODC podcasts via Mechanical Turk?

2012-07-13 Thread Ted Archibald
You can use MTurk by using crowdflower.com outside the US. I'm in Canada and I use WO app that submits jobs and pulls data from MTurk via crowdflower. I highly suggest it. It makes MTurk far easier to use as well. That being said, wouldn't it be easier just to shoot the files to a

Re: WOWODC-2012 Git presentations

2012-07-13 Thread Ted Archibald
Yay! On Fri, Jul 13, 2012 at 5:21 AM, Kieran Kelleher kelleh...@gmail.comwrote: FYI, If you are new to git. The first 3 parts of the 5-part series derived from the Understanding Using Git WOWODC2012 presentation is available in this iTunes feed:

Re: Help... Eclipse, new install with wonder integration... ERExtensions have not been initialized?

2012-07-13 Thread Ted Archibald
What's your application/project named? On Fri, Jul 13, 2012 at 7:00 AM, James Cicenia ja...@jimijon.com wrote: Thank you for replying. The secret to get it to work was offered by Pascal (bless his heart). I had to Enable Bundles in the Eclipse preferences. This magically made everything work.

Re: Help... Eclipse, new install with wonder integration... ERExtensions have not been initialized?

2012-07-13 Thread Ted Archibald
When I had this type of problem a while back, the root cause was the name of the project for me. It was either a space and/or a period. Not having bundleless builds drove me nuts. On Fri, Jul 13, 2012 at 3:03 PM, Pascal Robert prob...@macti.ca wrote: FYI, I also have this problem (this is why

Re: Escaping property files keys

2012-07-11 Thread Ted Archibald
Isn't your problem the fact that this property only sets the key name of the file? Perhaps you can set your bucket name as er.attachment.s3.bucket=bucket/path, but that's just a guess. On Wed, Jul 11, 2012 at 3:30 PM, Benjamin Harrington mu...@knuckleheads.net wrote: Hello All, I was having

Re: Session ID and REST calls

2012-07-06 Thread Ted Archibald
Is there a reason you are setting the path like that, instead of overriding domainForIDCookies()? e.g. @Override public String domainForIDCookies() { return ERXApplication.isDevelopmentModeSafe() ? super.domainForIDCookies() : / + AppName ; } On Fri, Jul 6, 2012 at 9:59 AM, Pascal

Re: New WOWODC 2011 releases

2012-06-20 Thread Ted Archibald
Anxiously awaiting the forthcoming videos from 2012 wowodc...! On Wed, Jun 20, 2012 at 6:22 AM, Pascal Robert prob...@macti.ca wrote: The public podcasts feed now have all the WOWODC 2011 recordings! The following recordings were added two minutes ago: - Custom EOAdaptors (Plus ERSolr!) -

Re: Server not longer reachable because of 211GB logfile

2012-06-17 Thread Ted Archibald
By the way, is there a way to detect the size of a textfile (logfile) and have a process send me a message that something goes wrong, when the file reaches a certain size? I don't know if log4j can email you based on the size of the log (google?) but I beleive you can limit the size of a log

Re: I am going to write a WO book

2012-06-09 Thread Ted Archibald
Since the public will never see a new release of WO, WO 6.0 = Wonder. It's kinda like saying that someone should write a book on Hypercard, and we should all participate in what Hypercard 3.0 from apple would look like. It would be great to capture how easy it worked compared to this

Re: I am going to write a WO book

2012-06-08 Thread Ted Archibald
Aren't pure Apple WO apps dead aside from legacy? IMO wonder is the ONLY option to learn new. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update

Re: Using Git WOWODC 2012 Session

2012-04-05 Thread Ted Archibald
What's the advantage gitolite offers? I was reading up on it and I didn't get. What's the difference between a git server VS a computer just running git with ssh keys? On Thu, Apr 5, 2012 at 1:40 PM, Pascal Robert prob...@macti.ca wrote: I would add: stashes : damn useful to try options

Re: CCAjaxLongResponsePage not sending me back to nextPage

2012-04-04 Thread Ted Archibald
Do you have er.coolcomponents.CCAjaxLongResponsePage.stayOnLongResponsePageIndefinitely turned on? On Wed, Apr 4, 2012 at 2:23 PM, Pascal Robert prob...@macti.ca wrote: Hi all, I'm using CCAjaxLongResponsePage like the fourth example in BackgroundTasks and I'm having a weird problem: after

Re: Using Git WOWODC 2012 Session

2012-04-03 Thread Ted Archibald
Since I just switched over, I'd be curious to know which is better: multiple large repositories with many projects (ala Wonder) or an individual repository for each project. When I converted over from svn I went with the former than the latter, and it seems fine. Different workflows, what you do

Re: Wrong Session class

2012-04-02 Thread Ted Archibald
you should spend a few more weeks on this. That's the responsible thing to do. On Fri, Feb 17, 2012 at 2:06 PM, Ted Archibald ted.archib...@gmail.comwrote: Feels like I'm beating a dead horse: After trying many combinations of changes I finally found one change that helps. If I have wolips

Re: Model/application development layout request for comment

2012-04-02 Thread Ted Archibald
Why not just deploy multiple instances with specific property files for each configuration? In your resource folder you could have Properties.config1, Properties.config2 then in the additional args in JavaMonitor you could stick -Duser.name=config1 then in the next instance you'd have

Re: Wrong Session class

2012-04-02 Thread Ted Archibald
Well I think I got it cased now, I think it's because the app name had a period in the name, perhaps that freaks out the incremental builder. On Mon, Apr 2, 2012 at 9:34 AM, Ted Archibald ted.archib...@gmail.comwrote: The plot thickens... I'm not sure if this is a bug in wolips or what

Re: Wrong Session class

2012-04-02 Thread Ted Archibald
...@global-village.net wrote: That also seems unlikely. This should be a classpath order problem and having ERExtensions first on the classpath (assuming you are using it, WOLips should do this) should prevent this error. Chuck On 2012-04-02, at 9:32 AM, Ted Archibald wrote: Well I think I

Re: Model/application development layout request for comment

2012-04-02 Thread Ted Archibald
You can also just have a redirect for each instance using ERXApplication.replaceApplicationPath and a rewrite in .htaccess that would redirect some client name url to the app and instance number. Effectively skipping the load balancing, unless of course you want to load balance each config with

Svn Git Transition

2012-03-30 Thread Ted Archibald
I'm migrating over to git from svn, yay! The process was relatively easy, but I did have a couple of kinks. Here's what I learned if it's any help for anyone else: -Download the latest git @ http://git-scm.com/ -If any problems with the version of git (like I had on my 10.5 server) just install

Re: ERPDFGeneration with FOP and examples

2012-03-30 Thread Ted Archibald
Pascal, is this info posted anywhere else (wiki?). It's exactly the type of info I'd be looking for as a contributing noob. On Fri, Mar 30, 2012 at 12:43 PM, Pascal Robert prob...@macti.ca wrote: Hi Larry, Looks good to me! A couple of observations: - You need to add a .gitignore file in

Re: ERPDFGeneration with FOP and examples

2012-03-30 Thread Ted Archibald
I wouldd do it but I can't log in to the wiki, I go in an endless loop having to fill out capchas when I try logging in. On Fri, Mar 30, 2012 at 2:02 PM, Pascal Robert prob...@macti.ca wrote: Anyone is free to add it to the wiki. Pascal, is this info posted anywhere else (wiki?). It's

*.xcode *.xcodeproj PB.project Files

2012-03-27 Thread Ted Archibald
Quick question, are the *.xcode *.xcodeproj PB.project files actually needed for anything to function or can I stop creating them and yank 'em out of version control? I have no intention of ever using XCode for anything WO, are they used by WO for something I'm unaware of?

Re: *.xcode *.xcodeproj PB.project Files

2012-03-27 Thread Ted Archibald
Well I just deleted them from a project then ran my selenium tests, nothing appears to break... On Tue, Mar 27, 2012 at 1:13 AM, Ted Archibald ted.archib...@gmail.comwrote: Quick question, are the *.xcode *.xcodeproj PB.project files actually needed for anything to function or can I stop

Re: Most requested stuff on Google Moderator

2012-03-27 Thread Ted Archibald
There's also a 4th reason: People like me who don't know git/github, and don't know how to integrate it into my workflow. I'd like to contribute more, but I need to spend a day or two figuring out how to get from here to there without breaking my current workflow much. For instance I currently

Re: Multiple CCAjaxLongResponsePages For Single Task

2012-03-23 Thread Ted Archibald
Got it I just subclassed the component and fiddled with the future() method and elapsedTime() method. On Thu, Mar 22, 2012 at 11:56 PM, Ted Archibald ted.archib...@gmail.comwrote: Is there any way to use CCAjaxLongResponsePage on a task that's already running? Essentially I want to run

Re: Multiple CCAjaxLongResponsePages For Single Task

2012-03-23 Thread Ted Archibald
, Kieran On Mar 23, 2012, at 1:56 AM, Ted Archibald wrote: Is there any way to use CCAjaxLongResponsePage on a task that's already running? Essentially I want to run a task but only a single iteration of that task, and if the task is already running I want to display

Multiple CCAjaxLongResponsePages For Single Task

2012-03-22 Thread Ted Archibald
Is there any way to use CCAjaxLongResponsePage on a task that's already running? Essentially I want to run a task but only a single iteration of that task, and if the task is already running I want to display a CCAjaxLongResponsePage for the progress. So far I have a simple loop that looks at

Re: Wonder's Rewrite URLs

2012-03-20 Thread Ted Archibald
? On Tue, Feb 28, 2012 at 6:33 PM, John Huss johnth...@gmail.com wrote: Yes, set up mod_rewrite is apache and then there are also 2 properties in Wonder you have to set. On Tuesday, February 28, 2012, Ted Archibald wrote: Is there anyway to make ERRest route all the urls without /ra? Or does

Fetch and sort based on a given list

2012-03-11 Thread Ted Archibald
Is there an easy way to fetch and sort an EO given an array of keys. The qualifier is obvious, but I don't see anything obvious on how to order the fetch based on the given list. NSArrayString keys = ATLArrayUtilities.toNSArray((String)context().request().formValueForKey( keys), ,); NSArrayEO

Re: Fetch and sort based on a given list

2012-03-11 Thread Ted Archibald
; } On Sun, Mar 11, 2012 at 5:26 PM, Ted Archibald ted.archib...@gmail.comwrote: Is there an easy way to fetch and sort an EO given an array of keys. The qualifier is obvious, but I don't see anything obvious on how to order the fetch based on the given list. NSArrayString keys

Re: Filtering a non-EO in a display group

2012-03-05 Thread Ted Archibald
Wouldn't you just reset the display group with something like: _array = ERXArrayUtilities.filteredArrayWithQualifierEvaluation(_yourArray, _yourQualifier); dg().setDataSource(ERXEOControlUtilities.dataSourceForArray(_array)); On Mon, Mar 5, 2012 at 1:31 PM, Pascal Robert prob...@macti.ca wrote:

Re: Wrong Session class

2012-02-17 Thread Ted Archibald
Now when I call a direct action I keep getting a no such method exceptions. It appears that my DirectAction class is not being used instead of the default WODirectionAction. For instance, if I go to App.woa/wa/test I'll get: java.lang.NoSuchMethodException:

Re: Wrong Session class

2012-02-15 Thread Ted Archibald
Just updated Wonder, it didn't fix anything. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription:

Re: Wrong Session class

2012-02-15 Thread Ted Archibald
The root issue is that WO is trying to be clever and find a class based on the simple name. With the same name in multiple packages, this gets a bit dodgy. That it worked before is not the real issue. Fair enough. I simply wonder why in 7 years of WO development I've never had this

Re: Wrong Session class

2012-02-14 Thread Ted Archibald
. Wonder should prevent this. Do you have jars in /Library/Java/Extensions? Chuck On 2012-02-13, at 7:49 PM, Ted Archibald wrote: No, this is the stack trace I get: com.webobjects.appserver._private.WOComponentRequestHandler: Exception occurred while handling request

Re: Wrong Session class

2012-02-14 Thread Ted Archibald
it again with the fully qualified name of the Main component. And as Mike said, your classpath is messed up. Wonder should prevent this. Do you have jars in /Library/Java/Extensions? Chuck On 2012-02-13, at 7:49 PM, Ted Archibald wrote: No, this is the stack trace I get

Re: Wrong Session class

2012-02-14 Thread Ted Archibald
I also tried removing any superfluous frameworks in the classpath, also to no avail. On Tue, Feb 14, 2012 at 11:21 AM, Ted Archibald ted.archib...@gmail.comwrote: I tried that as well and I got the same original error. On Tue, Feb 14, 2012 at 8:44 AM, John Huss johnth...@gmail.com wrote

Re: Wrong Session class

2012-02-14 Thread Ted Archibald
So now I'm getting more perplexed. I just created a fresh clean wonder app with no references to any extra project or library and I get the same error. But I have other projects that I can run just fine. On Tue, Feb 14, 2012 at 11:28 AM, Ted Archibald ted.archib...@gmail.comwrote: I also

Re: Wrong Session class

2012-02-14 Thread Ted Archibald
in /Library/WebObjects/Extensions ? So now I'm getting more perplexed. I just created a fresh clean wonder app with no references to any extra project or library and I get the same error. But I have other projects that I can run just fine. On Tue, Feb 14, 2012 at 11:28 AM, Ted Archibald

Re: Wrong Session class

2012-02-13 Thread Ted Archibald
I'm currently having this same issue on a project I haven't touched in months. I haven't changed wonder, nothing changed in the class path. There's no obvious reason what's going on, and overriding _sessionClass doesn't fix the problem, cleaning the project didn't help, restarting the computer

Re: Wrong Session class

2012-02-13 Thread Ted Archibald
-village.netwrote: Is the Session class name in the stack trace correct? If it is correct, your app .jar is missing something. If it is not correct, the _sessionClass has the wrong signature or is in the wrong class. Chuck On 2012-02-13, at 4:36 PM, Ted Archibald wrote: I'm currently having

Re: Eclipse/WOLips Help for Old Noobie

2012-02-08 Thread Ted Archibald
https://github.com/rebeld/Golipse On Wed, Feb 8, 2012 at 12:05 PM, Jerry W. Walker jerrywwal...@gmail.comwrote: Hi all, After my long absence, I'm reduced to the level of a rank noobie! I've been working on a project for a few years in the backwaters of Xcode for reasons that are

Re: Path for wosid cookie

2012-02-08 Thread Ted Archibald
Such as: er.extensions.ERXApplication.replaceApplicationPath.pattern=/cgi-bin/WebObjects/App.woa -er.extensions.ERXApplication.replaceApplicationPath.replace=/App On Wed, Feb 8, 2012 at 6:35 PM, Jon Nolan li...@lochgarman.com wrote: Is there a Wonder-ish way of having the session id cookie

Re: Path for wosid cookie

2012-02-08 Thread Ted Archibald
and .htaccess would be: RewriteRule ^App/(.*)$ /cgi-bin/WebObjects/App.woa/$1 [NC,PT,L] RewriteRule ^App$ /cgi-bin/WebObjects/App.woa [NC,PT,L] On Wed, Feb 8, 2012 at 6:48 PM, Ted Archibald ted.archib...@gmail.comwrote: Such as: er.extensions.ERXApplication.replaceApplicationPath.pattern

Re: Eclipse/WOLips Help for Old Noobie

2012-02-08 Thread Ted Archibald
for code-as-documentation)? When I downloaded the app and it worked, I figured that would be sufficient. Am I missing something? Regards, Jerry On Feb 8, 2012, at 2:00 PM, Ted Archibald wrote: https://github.com/rebeld/Golipse On Wed, Feb 8, 2012 at 12:05 PM, Jerry W. Walker jerrywwal

Re: AjaxObserveField and the Enter key

2012-02-07 Thread Ted Archibald
I have some javascript that I use to make a table of inputs act like an excel table (i.e. arrow keys, and enter acts like tab or down arrow). I'm pretty sure I've used with AjaxObserveField. Here's the main part that intercepts the key event based on a class name in the table: function

Re: Has any one implemented ERXRestRequestNode for Cocoa?

2011-12-31 Thread Ted Archibald
This might help: http://terminalapp.net/restnotes-code-sample/ On Fri, Dec 30, 2011 at 11:47 PM, Daniel Beatty danielbea...@mac.comwrote: Greetings all, I love a lot of the beauty of ERXRestRequestNode in the fact that one can marshal in and out EOs with ease. Is there an equivalent for

Re: Problem loading Ajax frameworks

2011-11-29 Thread Ted Archibald
I was having trouble a while back on a particular project, so I just changed the line in the build.xml and it did the trick: woapplication name=${build.app.name} frameworksBaseURL=/WebObjects/${ build.app.name}.woa/Frameworks destDir=${dest.dir} customInfoPListContent=${customInfoPListContent}

Re: Framework Not Building In Hudson/Jenkins

2011-10-17 Thread Ted Archibald
Got it working now, thanks for the help. After I placed the jars in the Libraries directory proper, everything built fine. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Framework Not Building In Hudson/Jenkins

2011-10-16 Thread Ted Archibald
I have a simple framework that encapsulates some third party jars (httpclient). My framework builds fine on my local machine but fails on my build server. It can't find the third party jars I'm guessing. The jars are in in Libraries/httpclient/... and I confirmed the jars exist in the hudson

Re: path in .java question

2011-09-02 Thread Ted Archibald
You should use WOResourceManager/ERXResourceManager On Fri, Sep 2, 2011 at 8:53 AM, Theodore Petrosky tedp...@yahoo.com wrote: I want to read a file when my app launches: File f = new File(AllCountries.txt); I don't understand the path! if AllCountries.txt lives in the WebServerResources

PKs With Multitable Inheritance

2011-07-27 Thread Ted Archibald
With a project I'm working on I decided to have a number of my entities inherit from an abstract entity. Each of these entities have their own separate table (I forget what kind of inheritance that's called...). I noticed that EOF is only generating a single series of PKs for the abstract parent

Re: PKs With Multitable Inheritance

2011-07-27 Thread Ted Archibald
Won't my primary keys get too big to handle? Is int(11) in mysql sufficient enough? On Wed, Jul 27, 2011 at 7:02 PM, Ramsey Gurley rgur...@smarthealth.comwrote: On Jul 27, 2011, at 5:23 PM, Chuck Hill wrote: On 2011-07-27, at 5:21 PM, Ted Archibald wrote: With a project I'm working

Re: JavaMonitor's Arguments

2011-06-11 Thread Ted Archibald
, Neurology (Sent from my mobile) On 10 Jun 2011, at 21:12, Ted Archibald ted.archib...@gmail.com wrote: It's always good to know I wasted so much time on something so obvious, lol. ___ Do not post admin requests to the list. They will be ignored

JavaMonitor's Arguments

2011-06-10 Thread Ted Archibald
I spent WAY too much time on this yesterday, but can anyone explain why Javamonitor uses different markup for properties? For instance, if I have the following properties in my property file: er.someProperty=value er.someOtherProperty=true To work in javamonitor I have to change it to the

Re: JavaMonitor's Arguments

2011-06-10 Thread Ted Archibald
It's always good to know I wasted so much time on something so obvious, lol. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription:

Re: Wonder's Monitor

2010-11-29 Thread Ted Archibald
I'm running a split install and ToggleRight.png/ToggleDown.png are working fine for me BUT clicking on the AjaxExpansions doesnt do anything... On Mon, Nov 29, 2010 at 7:51 AM, Pascal Robert prob...@macti.ca wrote: I just upgraded our staging server, and I'm getting the same behavior that you

Re: Wonder's Monitor

2010-11-29 Thread Ted Archibald
I just checked and that's the problem. On Mon, Nov 29, 2010 at 3:09 PM, David LeBer dleber_wo...@codeferous.com wrote: On 2010-11-29, at 4:01 PM, Ted Archibald wrote: I'm running a split install and ToggleRight.png/ToggleDown.png are working fine for me BUT clicking on the AjaxExpansions

Re: Where to put D2W Rules FAQ ?

2009-09-11 Thread Ted Archibald
I think this is a good time. I've wasted tons of time trying to remember a rule/key, then I have to go digging through other projects to find an example. A D2W rule cookbook would be pretty cool. On Fri, Sep 11, 2009 at 9:02 AM, gsbr...@umich.edu wrote: Hi, Would a D2W rules FAQ/Reference

Re: Where to put D2W Rules FAQ ?

2009-09-11 Thread Ted Archibald
I think this is a good time = I think this is a good idea. I apparently haven't had enough coffee yet. On Fri, Sep 11, 2009 at 9:22 AM, Ted Archibald ted.archib...@gmail.comwrote: I think this is a good time. I've wasted tons of time trying to remember a rule/key, then I have to go digging

Re: Where to put D2W Rules FAQ ?

2009-09-11 Thread Ted Archibald
It might be useful to include a simple version of the rules as the full version might be confusing to some e.g.: 101: task='edit' = pageWrapperName = EditPageWrapper [com.webobjects.directtoweb.Assignment] ...that's how it's done in

Re: WOWODC 09 Videos

2009-09-04 Thread Ted Archibald
bump On Wed, Sep 2, 2009 at 11:45 PM, Ted Archibald ted.archib...@gmail.comwrote: Any word on the WOWODC 09 videos yet? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev

WOWODC 09 Videos

2009-09-02 Thread Ted Archibald
Any word on the WOWODC 09 videos yet? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription:

Re: Custom D2W Component

2009-08-26 Thread Ted Archibald
Nevermind, I rewrote the component from scratch and now it seems to work. I'm not sure what fixed my problem. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)

Custom D2W Component

2009-08-25 Thread Ted Archibald
I'm trying to create a custom d2w component that extendsERDCustomEditComponent.What I want is a to many component that you can select a Person EOand if you click a link "new..." you can create a new Person eo and enter the Person.name.So far I can select the Person EO with no problem and I can

Re: Custom D2W Component

2009-08-25 Thread Ted Archibald
I mean: wo:textField value = $person.name http://child.name/ id = name/wo:textField I copied/pasted the wrong wotextfield... wo:textField value = $child.name id = name/wo:textField ___ Do not post admin requests to the list. They will be ignored.

Re: WOWODC 09 Videos

2009-07-10 Thread Ted Archibald
? On Fri, Jul 3, 2009 at 7:57 AM, Ted Archibald ted.archib...@gmail.comwrote: Hey, I'm just wondering when will the WOWODC 09 videos will be ready? How much will they cost this year? Thanks ___ Do not post admin requests to the list

  1   2   >