Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Raymond NANEON
Hi List,I don't understand why item is null when I want to dynamically create tabs in AjaxTabbedPanel using WORepetion.What's wrong in my codes?Envoyé depuis iCloudLe 12 jul 2013 à 07:08, Raymond NANEON rnan...@me.com a écrit :Hi List,I want to create many of AjaxTabbedPanelTab from WORepetition

Re: NSNumberFormatter

2013-07-15 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
inputFormatter=new NSNumberFormatter(0); The same result as with #. I think, I have to write my own validator. Any newbie hints for that task? Thanks! Oliver ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing

Re: NSNumberFormatter

2013-07-15 Thread Christoph Wick
Hi Oliver, use the validateKey mechanism (where Key is the name of property, e.g. myNumber) public Object validateMyNumber(Object aValue) throws NSValidation.ValidationException { // 1. cast aValue to int (or whatever you need // 2. write check method,

WebObjects - old classes in JavaXML (Maven)

2013-07-15 Thread Patrick
Hello, I use Webobjects with Project Wonder 6.1.0 and Maven. I have to connect to an external SOAP-Interface (yeah, I know - it's unlovely but needed ;)). I use org.apache.cxf in version 2.7.5 for connection. Well, I found out that the JavaXML-Framework is very old. Especially the

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Paul Yu
Raymond I had better success using CCTabPanel for dynamically creating tabs. .html wo:CCAjaxTabPanel id = tabs selectedTab=$tabSelection tabs = $tabs tabNameKey=tabLabel useFormSubmit=$true !-- wo:str value = $selectedTabsWOComponent / --

RE: WebObjects - old classes in JavaXML (Maven)

2013-07-15 Thread Michael . Walters
Hi Patrick, The JavaXML Framework doesn't really mesh with the maven paradigm. I simply exclude it as a transitive dependency: dependency groupIdwonder.core/groupId artifactIdERExtensions/artifactId exclusions exclusion

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Raymond NANEON
Hi Paul,Thanks for your help.Can I have detail of .java ? tabSelection nature? observationsTab ?? where do you use this component?Envoyé depuis iCloudLe 15 jul 2013 à 05:07, Paul Yu p...@mac.com a écrit :RaymondI had better success using CCTabPanel for dynamically creating

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Paul Yu
Raymond observationsTab is myTab1. Sorry. Cut and paste and clean, not too good. private NSDictionary _tabSelection; public NSDictionary tabSelection() { return _tabSelection; } public void setTabSelection(NSDictionary tabSelection) {

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Raymond NANEON
Hi Paul,Your example is great but very confused with all variables. Can I have a clean .java example.Sorry for the mess.Envoyé depuis iCloudLe 15 jul 2013 à 06:19, Paul Yu p...@mac.com a écrit :RaymondobservationsTab ismyTab1. Sorry. Cut and paste and clean, not too good.private NSDictionary

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Paul Yu
Raymond This should be it. .java private NSDictionary _tabSelection; public NSDictionary tabSelection() { return _tabSelection; } public void setTabSelection(NSDictionary tabSelection) { _tabSelection = tabSelection; String

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Chuck Hill
Yes, AjaxTabbedPanel is going to fight you here. Chuck On 2013-07-15, at 5:07 AM, Paul Yu wrote: Raymond I had better success using CCTabPanel for dynamically creating tabs. .html wo:CCAjaxTabPanel id = tabs selectedTab=$tabSelection tabs = $tabs tabNameKey=tabLabel

[SOLVED] - Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Raymond NANEON
Hi Paul,Thanks a lot.It works fine.Envoyé depuis iCloudLe 15 jul 2013 à 06:43, Paul Yu p...@mac.com a écrit :RaymondThis should be it..java private NSDictionary _tabSelection; public NSDictionary tabSelection() {return_tabSelection; } public void setTabSelection(NSDictionary tabSelection) {

Re: Create dynamic AjaxTabbedPanelTab in AjaxTabbedPanel with WORepetion

2013-07-15 Thread Raymond NANEON
Hey Chuck,AjaxTabbedPanel don't like loop it seems. I tried the method of Paul and I solved my problem.ThanksEnvoyé depuis iCloudLe 15 jul 2013 à 07:21, Chuck Hill ch...@global-village.net a écrit :Yes, AjaxTabbedPanel is going to fight you here. Chuck On 2013-07-15, at 5:07 AM, Paul Yu wrote:

Re: [SOLVED] NSNumberFormatter

2013-07-15 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
Hi Christoph, use the validateKey mechanism (where Key is the name of property, e.g. myNumber) public Object validateMyNumber(Object aValue) throws NSValidation.ValidationException { // 1. cast aValue to int (or whatever you need // 2. write check

Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread Samuel Pelletier
Hi, I try to compile an Apache adaptor on Mac OS X 10.8 with the xCode 4.6 command line tools installed. The default make stop at FastCGI with an error: lipo: can't figure out the architecture type of: /var/folders/jz/k0w8zpfd7w7b04zt077cs114gn/T//ccc2vy1M.out If I go to the Apache2.2

Re: Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread John Huss
Try this - from BuildingInstructions.html: 1. Select the adaptor that you want to build by editing the ADAPTORS variable in make.config. You can build multiple adaptors for different web servers at the same time. On Mon, Jul 15, 2013 at 11:19 AM, Samuel Pelletier

Re: Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread Samuel Pelletier
If I specify only CGI, it build. Any other fail with the errors I quoted. The build script probably broke with the xCode release that removed gcc many months ago. It just seems people are not compiling adaptor often. Samuel Le 2013-07-15 à 13:00, John Huss johnth...@gmail.com a écrit : Try

Re: Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread John Huss
You mean the XCode beta? It's not final, so it's not surprising that it's not supported yet. I would suspect there is still a way to get gcc even if it isn't installed by default anymore. On Mon, Jul 15, 2013 at 2:14 PM, Samuel Pelletier sam...@samkar.com wrote: If I specify only CGI, it

Re: Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread Chuck Hill
No help from me, but I ran into this recently. I did not really need it, so I just ran away. On 2013-07-15, at 12:14 PM, Samuel Pelletier wrote: If I specify only CGI, it build. Any other fail with the errors I quoted. The build script probably broke with the xCode release that removed

Re: Compiling Apache adaptor on Mac OS X 10.8

2013-07-15 Thread Bastian Triller
$ sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/{XcodeDefault,OSX10.8}.xctoolchain $ cd ~/git/wonder/Utilities/Adaptors $ make ADAPTORS=Apache2.2 LTFLAGS='--tag CC' On Mon, Jul 15, 2013 at 9:36 PM, Chuck Hill ch...@global-village.netwrote: No help from me, but I ran into

Re: Unexplained WOSessionStore or NSProperties ClassNotFound Exceptions

2013-07-15 Thread Chuck Hill
I think that I am completely lost by now. :) Can you start again, and tell us what your specific goals are and how you are trying to accomplish them? Thanks Chuck On 2013-07-11, at 6:07 AM, Filippo Laurìa wrote: 2013/7/10 Henrique Prange hpra...@gmail.com: Hi Filippo, On 09/07/2013, at

Your slides from WOCommunity : Deployment of WebObjects applications on CentOS Linux

2013-07-15 Thread MAI NGUYEN
Hi Pascal, I am reviewing your slides about Deploying WebObjects on Linux (from WOWODC a while ago). I can either install Java JDK (or JRE) 32/64 bit on an Oracle Linux 5.8 machine. According to your slides, it seems like the 32 bit Java version is preferable as it would eat less Memory (if

Re: Your slides from WOCommunity : Deployment of WebObjects applications on CentOS Linux

2013-07-15 Thread Pascal Robert
Le 2013-07-15 à 20:19, MAI NGUYEN brightmornin...@gmail.com a écrit : Hi Pascal, I am reviewing your slides about Deploying WebObjects on Linux (from WOWODC a while ago). I can either install Java JDK (or JRE) 32/64 bit on an Oracle Linux 5.8 machine. According to your slides, it