Re: Ajax framework's future

2010-11-18 Thread Simon
> I think it's just a matter of picking a horse. From my perspective, jQuery > seems to have the strongest community and the most plugins that I've wanted > to use. It's pretty quickly a religious debate, though. but i guess picking any horse that is actually still trotting around is better than f

Re: You cannot have more than 255 columns in a given row when creating Excel spreadsheet

2010-11-18 Thread Simon
On 19 November 2010 06:18, Karl wrote: > We use the Aspose.Cells libraries for Excel. ditto. it's commercial, but cheap as chips given the size of the problems it solves. and the support provided by aspose is fantastic. they've churned out numerous feature requests for us in just a few days... s

Re: You cannot have more than 255 columns in a given row when creating Excel spreadsheet

2010-11-18 Thread Karl
We use the Aspose.Cells libraries for Excel. They offer manipulation of any sized Excel sheet and a lot more features. Aspose.Total is a good grab bag of file format support that is under constant development. Karl On 2010-11-19, at 12:34 AM, Paula Loehr wrote: > I’m trying to create an Exce

Re: New error about er.javamail ..

2010-11-18 Thread Chuck Hill
>> This is a very old app. It was written with a noxymo framework and only uses >> some peripheral ERD2W of Wonder only. That is probably the problem. Is it extending ERXApplication? Is it using a modern version of Wonder. Modern versions of Wonder should not have this problem. If that is n

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
Ok - I use ERXProperties and printout everything. Sure enough it want the WebObjects.properties as the last properties file. I put it there tire of fighting Eclipse and then get to the Session confusion of javax.mail.Session. I comb through again all the class paths and the ERXProperties class

Re: Developing with Apache and Cookies

2010-11-18 Thread Chuck Hill
I always strongly discourage using raw IP addresses. :-) On Nov 18, 2010, at 5:15 PM, Johnny Miller wrote: > Thank you! > > Maybe one more item on the Apache development docs synthesize list is that > people should be encouraged to use localhost as opposed to 127.0.0.1? > > > On Nov 18, 201

Re: Developing with Apache and Cookies

2010-11-18 Thread Johnny Miller
Thank you! Maybe one more item on the Apache development docs synthesize list is that people should be encouraged to use localhost as opposed to 127.0.0.1? On Nov 18, 2010, at 3:07 PM, Chuck Hill wrote: > It works for me using localhost. > > > On Nov 18, 2010, at 5:04 PM, Johnny Miller wrote

Re: Ajax framework's future

2010-11-18 Thread Mike Schrag
I think it's just a matter of picking a horse. From my perspective, jQuery seems to have the strongest community and the most plugins that I've wanted to use. It's pretty quickly a religious debate, though. Sent from my iPhone On Nov 18, 2010, at 6:42 PM, Paolo Sommaruga wrote: > Hi Mike, >

Re: Developing with Apache and Cookies

2010-11-18 Thread Chuck Hill
It works for me using localhost. On Nov 18, 2010, at 5:04 PM, Johnny Miller wrote: > Hi, > > Is there something special you need to do to get this to work? > > In the session object i have tried both > > public String domainForIDCookies() { > return "/cgi-bin/WebObjects/AppNam

Developing with Apache and Cookies

2010-11-18 Thread Johnny Miller
Hi, Is there something special you need to do to get this to work? In the session object i have tried both public String domainForIDCookies() { return "/cgi-bin/WebObjects/AppName.woa"; } and public String domainForIDCookies() { return "/"; } I can see

Re: Ajax Design Question

2010-11-18 Thread Chuck Hill
I think you need to bind it to a variable. On Nov 18, 2010, at 3:38 PM, Johnny Miller wrote: > I tried adding a wohiddenfield with a static string value but it doesn't seem > to work. Do I need to update it somehow? > > > On Nov 18, 2010, at 1:26 PM, Chuck Hill wrote: > >> That is an old

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
This is a very old app. It was written with a noxymo framework and only uses some peripheral ERD2W of Wonder only. I have methodically gone through and compared every conceivable setting, order, dot file that I can see or think of. The only real difference I see in the console log output was t

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
I've decided I'm just going to cheat and use an update link that looks like a checkbox. On Nov 18, 2010, at 1:26 PM, Chuck Hill wrote: > That is an old HTML problem. Unchecked boxes submit nothing. If the form > has only check boxes, nothing is submitted. Add a WOHiddenField to the form. >

Re: Ajax framework's future

2010-11-18 Thread Pascal Robert
Use ERRest and Dojo's JSONRestStore :-) > Hi Mike, > > why not dojo support ? I think it's very powerful > > Regards > > Paolo > > > > Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto: > >> jQuery is the most likely future. It's on the task list, but nothing is >> particularly

Re: Ajax framework's future

2010-11-18 Thread Simon
> jQuery is the most likely future. It's on the task list, but nothing is > particularly driving it. At one point I thought about making a pluggable impl > but decided it wasn't worth the complexity for something that might only > change every 4 years. jQuery seems to have most of the mineshare

Re: Ajax framework's future

2010-11-18 Thread Johnny Miller
I wouldn't mind helping if you are looking for participants. I'm pretty familiar with Ajax Framework because I made a MooTools version. I kind of regret using MooTools (which I liked more) over jQuery because it seems that's the framework which has become more popular i.e. more plugins. On No

Re: Ajax framework's future

2010-11-18 Thread Paolo Sommaruga
Hi Mike, why not dojo support ? I think it's very powerful Regards Paolo Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto: > jQuery is the most likely future. It's on the task list, but nothing is > particularly driving it. At one point I thought about making a pluggable impl

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
I tried adding a wohiddenfield with a static string value but it doesn't seem to work. Do I need to update it somehow? On Nov 18, 2010, at 1:26 PM, Chuck Hill wrote: > That is an old HTML problem. Unchecked boxes submit nothing. If the form > has only check boxes, nothing is submitted. Add

Re: New error about er.javamail ..

2010-11-18 Thread Tim Worman
James: I don't think anyone is going to be able to answer your WTF. When a Wonder app starts it very methodically details in the console output what Properties files are discovered and what specific key/value pairs are discovered. I would put some test properties in the files in question and mo

Re: Ajax framework's future

2010-11-18 Thread Mike Schrag
jQuery is the most likely future. It's on the task list, but nothing is particularly driving it. At one point I thought about making a pluggable impl but decided it wasn't worth the complexity for something that might only change every 4 years. jQuery seems to have most of the mineshare at this

Re: Ajax Design Question

2010-11-18 Thread Chuck Hill
That is an old HTML problem. Unchecked boxes submit nothing. If the form has only check boxes, nothing is submitted. Add a WOHiddenField to the form. On Nov 18, 2010, at 3:23 PM, Johnny Miller wrote: > Well, I'm getting closer :p > > I had evalScripts set to false and that was killing the s

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
Well, I'm getting closer :p I had evalScripts set to false and that was killing the second update. However, for some odd reason my cover method only gets called if I check the box to on. When checked to off it does an ajax update but the cover method doesn't get called? Thanks, Johnny On N

Ajax framework's future

2010-11-18 Thread Michael Gargano
I was playing with the Ajax framework today (really cool btw) and I was wondering about where it's going. I know right now it's based off prototype.js and scriptaculous, but there's a large kickback in the prototype community because the framework extends the DOM. Prototype 2 is going to fix t

Re: Ajax Design Question

2010-11-18 Thread Travis Britt
Do you have the whole thing in a WOForm? WOForm AjaxObserveField WORepetition tb On Nov 18, 2010, at 4:57 PM, Johnny Miller wrote: > I'm getting a little confused on the wording in the JavaDocs. > > Here is my component layout > > ... updateContainerID="SomeId"> > > I think that's righ

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
I'm getting a little confused on the wording in the JavaDocs. Here is my component layout ... I think that's right but I'm getting the error where only the first update gets triggered. Do you know what I'm missing? Thanks, Johnny On Nov 18, 2010, at 10:38 AM, Travis Britt wrote: > Yep. It

You cannot have more than 255 columns in a given row when creating Excel spreadsheet

2010-11-18 Thread Paula Loehr
I¹m trying to create an Excel spreadsheet that has > 255 columns. The ExcelGenerator throws an exception . We use poi-3.6-20091214.jar and I have Excel 2008 for Mac which allows up to 16k columns. com.webobjects.foundation.NSForwardException: java.lang.IllegalArgumentException: Invalid column ind

Re: New error about er.javamail ..more info

2010-11-18 Thread Larry Mills-Gahl
The javax.mail.Session error sounds like a clue that your launch arguments are not exactly what you expect for a WOApplication. I've had this when I use an ERXMainRunner from a Wonder Framework project (one that doesn't have an Application and Session class in the highest priority part of the class

Re: Anyone see this?

2010-11-18 Thread David Holt
http://www.lmgtfy.com/?q=WARN%3A+Invalid+value+%7B1%7D+for+server+variable+named+%7B0%7D.+falling+back+to+sane+default+of+%7B2%7D. On 2010-11-18, at 12:21 PM, James Cicenia wrote: > On my new machine that is killing me... > > I see this warning which I don't see on the others > WARN: Invali

[MEETING] TONIGHT 11/18/2010

2010-11-18 Thread Andrew R. Kinnie
Last minute reminder, As indicated last week, TONIGHT is this month's WO-NoVA meeting. We will be demonstrating setting up a plain vanilla WO server using a brand new wiped Mac Mini. We'll be following the Wiki instructions and intend and hope to determine what additional information may be

Re: Anyone see this?

2010-11-18 Thread David Holt
On 2010-11-18, at 12:21 PM, James Cicenia wrote: > On my new machine that is killing me... > > I see this warning Where??? > which I don't see on the others > WARN: Invalid value {1} for server variable named {0}. falling back to sane > default of {2}. > > Thanks > James ___

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
It was UTF-8 changed it to ISO-Latin ... same problem. WTF?! On Nov 18, 2010, at 1:00 PM, Pascal Robert wrote: > I think we had this problem before, and it was because the properties file > was in UTF-8 instead of ISO-Latin-1. > >> I eliminated all whitespace in the Properties file. Still do

Re: WebObjects scalability question

2010-11-18 Thread Pascal Robert
Le 2010-11-18 à 15:34, Ren, Kevin a écrit : > Hi Pascal, > >> That's one of the top 5 questions people ask, but not much >> answers. For the EOF cache, you can use the >> ERJGroupsSynchronizer to synchronize EOs between instances. > > Could you tell me what these top 5 questions are? > > Is

Re: Ajax Design Question

2010-11-18 Thread Travis Britt
Yep. It will observe whatever it's wrapping. http://webobjects.mdimension.com/hudson/job/Wonder54/javadoc/er/ajax/AjaxObserveField.html On Nov 18, 2010, at 3:01 PM, Johnny Miller wrote: > Would I just use the updatecontainerid and not the observefieldid? > > thanks a lot, > > Johnny > > On N

RE: WebObjects scalability question

2010-11-18 Thread Ren, Kevin
Hi Pascal, > That's one of the top 5 questions people ask, but not much > answers. For the EOF cache, you can use the > ERJGroupsSynchronizer to synchronize EOs between instances. Could you tell me what these top 5 questions are? Is it possible to know which one could have work around solutio

Anyone see this?

2010-11-18 Thread James Cicenia
On my new machine that is killing me... I see this warning which I don't see on the others WARN: Invalid value {1} for server variable named {0}. falling back to sane default of {2}. Thanks James ___ Do not post admin requests to the list. They wil

Re: Ajax Design Question

2010-11-18 Thread Chuck Hill
It could do it, but may be more trouble than it is worth at this point. Some of that would be a PITA. On Nov 18, 2010, at 12:09 PM, Johnny Miller wrote: > It's hard to describe so I attached is a screen shot. I have several sort > fields, a system for changing views (table, single, grid), p

Re: Ajax Design Question

2010-11-18 Thread Chuck Hill
There is CSS. What sort of control do you want? Chuck On Nov 18, 2010, at 12:00 PM, Johnny Miller wrote: > Aesthetics, in this case, are very important. Do you get full control of the > UI with AjaxGrid? > > thanks, > > Johnny > > > > On Nov 18, 2010, at 9:46 AM, Chuck Hill wrote: > >>

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
Would I just use the updatecontainerid and not the observefieldid? thanks a lot, Johnny On Nov 18, 2010, at 9:45 AM, Travis Britt wrote: > You could wrap the WORepetition in an AjaxObserveField and it will watch all > the checkboxes. > > tb > > On Nov 18, 2010, at 2:35 PM, Johnny Miller wrot

Re: Ajax Design Question

2010-11-18 Thread Johnny Miller
Aesthetics, in this case, are very important. Do you get full control of the UI with AjaxGrid? thanks, Johnny On Nov 18, 2010, at 9:46 AM, Chuck Hill wrote: > Uh, that is what AjaxGrid does. Why re-invent it? Everything you want is > already there. > > Chuck > > > On Nov 18, 2010, at

Re: Ajax Design Question

2010-11-18 Thread Chuck Hill
Uh, that is what AjaxGrid does. Why re-invent it? Everything you want is already there. Chuck On Nov 18, 2010, at 11:35 AM, Johnny Miller wrote: > Hi, > > I have a display group that I'm paginating through using ajax update links. > Each of the objects has a checkbox whose state I want to

Re: Ajax Design Question

2010-11-18 Thread Travis Britt
You could wrap the WORepetition in an AjaxObserveField and it will watch all the checkboxes. tb On Nov 18, 2010, at 2:35 PM, Johnny Miller wrote: > Hi, > > I have a display group that I'm paginating through using ajax update links. > Each of the objects has a checkbox whose state I want to r

Ajax Design Question

2010-11-18 Thread Johnny Miller
Hi, I have a display group that I'm paginating through using ajax update links. Each of the objects has a checkbox whose state I want to record between paginations. Should I use an ajax observe field per checkbox or wrap each checkbox in an ajax submit form or is there a better way? I guess

Re: New error about er.javamail ..

2010-11-18 Thread Pascal Robert
I think we had this problem before, and it was because the properties file was in UTF-8 instead of ISO-Latin-1. > I eliminated all whitespace in the Properties file. Still does nothing. > > > > > On Nov 18, 2010, at 12:05 PM, Mark Wardle wrote: > >> Spaces! Don't use whitespace. >> >> M

Re: New error about er.javamail ..

2010-11-18 Thread David LeBer
On 2010-11-18, at 1:47 PM, James Cicenia wrote: > nope... > back to a new fresh install ... again. Is this a development machine? Do you have a ~/WebObjects.properties file with a different value for er.javamail.centralize? > > On Nov 18, 2010, at 12:33 PM, Simon wrote: > >> permissions on

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
nope... back to a new fresh install ... again. On Nov 18, 2010, at 12:33 PM, Simon wrote: > permissions on your properties file ? > > On 18 November 2010 18:11, James Cicenia wrote: >> I eliminated all whitespace in the Properties file. Still does nothing. >> >> >> >> >> On Nov 18, 2010, a

Re: New error about er.javamail ..

2010-11-18 Thread Simon
permissions on your properties file ? On 18 November 2010 18:11, James Cicenia wrote: > I eliminated all whitespace in the Properties file. Still does nothing. > > > > > On Nov 18, 2010, at 12:05 PM, Mark Wardle wrote: > >> Spaces! Don't use whitespace. >> >> Mark >> >> -- >> Dr. Mark Wardle

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
I eliminated all whitespace in the Properties file. Still does nothing. On Nov 18, 2010, at 12:05 PM, Mark Wardle wrote: > Spaces! Don't use whitespace. > > Mark > > -- > Dr. Mark Wardle > Specialist registrar, Neurology > (Sent from my mobile) > > > On 18 Nov 2010, at 17:53, James Ci

Re: New error about er.javamail ..

2010-11-18 Thread Mark Wardle
Spaces! Don't use whitespace. Mark -- Dr. Mark Wardle Specialist registrar, Neurology (Sent from my mobile) On 18 Nov 2010, at 17:53, James Cicenia wrote: > Uh... yea... had that in there I believe it isn't reading my properties > file. > really! > > > On Nov 18, 2010, at 11:41 AM,

Re: New error about er.javamail ..more info

2010-11-18 Thread James Cicenia
OK if I put in the startup properties via eclipse to set centralize to off... I now get this error: it thinks my Session is javax.mail.Session. WTF... this works on three other systems? On Nov 18, 2010, at 11:52 AM, James Cicenia wrote: > Uh... yea... had that in there I believe it is

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
Uh... yea... had that in there I believe it isn't reading my properties file. really! On Nov 18, 2010, at 11:41 AM, Chuck Hill wrote: > Dude! Really? > sent to 'er.javamail.adminEmail' instead of the normal TO addresses, but you did not provide a valid email for that property >

Re: New error about er.javamail ..

2010-11-18 Thread Chuck Hill
Dude! Really? >>> sent to 'er.javamail.adminEmail' instead of the normal TO addresses, but >>> you did not provide a valid email for that property er.javamail.adminEmail ... did not provide a valid email for that property For giggles try er.javamail.adminemail=ja...@jimijon.com On Nov 18,

Re: New error about er.javamail ..

2010-11-18 Thread James Cicenia
Read? hmm, what is there to read? Inside my properties file it says false. This setup works on the other workstations. - j- On Nov 18, 2010, at 11:33 AM, Chuck Hill wrote: > > On Nov 18, 2010, at 9:27 AM, James Cicenia wrote: > >> Trying to get the new developer running... >> Things look t

Re: New error about er.javamail ..

2010-11-18 Thread Chuck Hill
On Nov 18, 2010, at 9:27 AM, James Cicenia wrote: > Trying to get the new developer running... > Things look the same but when I try to launch the app from eclipse I get: > > [2010-11-18 11:23:7 CST] null > [2010-11-18 11:23:7 CST] A fatal exception occurred: When > 'er.javamail.centralize'

New error about er.javamail ..

2010-11-18 Thread James Cicenia
Trying to get the new developer running... Things look the same but when I try to launch the app from eclipse I get: [2010-11-18 11:23:7 CST] null [2010-11-18 11:23:7 CST] A fatal exception occurred: When 'er.javamail.centralize' is true (default), all outgoing mails will get sent to 'er.java

Re: "Pass JavaScript Object to Java"

2010-11-18 Thread Chuck Hill
On Nov 18, 2010, at 12:44 AM, a...@cedes.com wrote: > Hi List, > > is it possible to pass a JavaScript object (or a reference) to a WebObjects > Application in order to reuse the > JavaScript object somewhere else? A JavaScript object could be serialized and deserialized. But what you want i

Re: New Developer, New Setup, Dreaded "ClassNotFoundException" com.tos.Application

2010-11-18 Thread James Cicenia
Never mind... a restart of Eclipse fixed that... On Nov 18, 2010, at 10:58 AM, James Cicenia wrote: > Ok - > > I just go this dreaded message... how do I make Eclipse see my Application??? > > Thanks > James ___ Do not post admin requests to t

New Developer, New Setup, Dreaded "ClassNotFoundException" com.tos.Application

2010-11-18 Thread James Cicenia
Ok - I just go this dreaded message... how do I make Eclipse see my Application??? Thanks James ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update