Re: WO Components

2015-04-23 Thread Chuck Hill
That name spacing is likely a hold-over from Objective-C days. In Java, if you don't specify the package, it just guesses. Most of the time that is OK, but there can be clashes. Chuck On 2015-04-23, 4:54 PM, "Paul Hoadley" wrote: On 24 Apr 2015, at 4:19 am, Chuck Hill mailto:ch...@gevityin

Re: WO Components

2015-04-23 Thread Paul Hoadley
On 24 Apr 2015, at 4:19 am, Chuck Hill wrote: > How are you calling the WOComponent? You want to use the full package name > otherwise you can get the wrong class. I never knew you could do that. I had always assumed that the (at times quite awkward) ERXFOO-pseudonamespacing was precisely be

Re: ERXExistsQualifier

2015-04-23 Thread Paul Hoadley
I haven't got anything significant to say about Thomas's original post, but just to add a couple of data points: On 24 Apr 2015, at 5:36 am, Fabian Peters wrote: > AFAIK, it should work for multiple tables, except if any of them use compound > primary keys. This seems to be the received wisdo

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

Abwesenheitsnachricht / out of office notice

2015-04-23 Thread Susanne.schneider
Vielen Dank für Ihre Nachricht. / Thank you for your e-mail. Ich bin wieder im Büro am: / I'll be back in the office at: 28.4.2015 In dringenden Fällen wenden Sie sich bitte an: / In urgent cases please contact: service.secutr...@interactive-systems.de Freundliche Grüße / Best regards

Re: Practical Webobject example's

2015-04-23 Thread Chuck Hill
Hi Ronald, Please make sure that you are following the directions in the Appendix "Setting Up The Code". For the missing jars, you need to follow the instructions on downloading them in the Chapter 11 section of that Appendix: [cid:342B2139-203F-4269-BCB9-32F25F2AA220] The other problem appe

Re: WO Components

2015-04-23 Thread Chuck Hill
That should be OK, it is unlikely that something else will be named AdresseWO. Did you add the .wo folder under the Components folder in the framework? Is the framework project getting built? Chuck On 2015-04-23, 11:58 AM, "HOUNKPONOU Ronald" wrote: It is a custom Page that extends WOCompon

Re: WO on a Windows machine

2015-04-23 Thread Markus Ruggiero
I currently teach programming subjects by using Wonder. Of 20 students 5 or 6 use Macs (as I do), 2 installed on Linux, the rest uses assorted versions of Windows (7 and 8). Works like a champ. We use Eclipse 4.4 with the WOLips plugin from http://buero-sde.de/downloads/wolips4_4_0/

Re: ERXExistsQualifier

2015-04-23 Thread Fabian Peters
Hi Thomas, AFAIK, it should work for multiple tables, except if any of them use compound primary keys. You may want to try the ExistsInRelationshipQualifier from the Houdah frameworks, which does handle flattened many-to-many relations.

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: WO Components

2015-04-23 Thread HOUNKPONOU Ronald
It is a custom Page that extends WOComponent class. in my app WOO : Ajouter Adresse in my app WOD: Adresse : WOHyperlink { pageName="AdresseWO"; } AdresseWO is the name of my page that is located in my framework. 2015-04-23 19:49 GMT+01:00 Chuck Hill : > How are you calling the WOComponent?

Re: WO Components

2015-04-23 Thread Chuck Hill
How are you calling the WOComponent? You want to use the full package name otherwise you can get the wrong class. Chuck On 2015-04-23, 11:44 AM, "HOUNKPONOU Ronald" wrote: Hi, I have an issue with wocomponents. How can i call from my app a WOComponent that is located in a framework? I try by

Re: WO Components

2015-04-23 Thread David Holt
Looks like you are doing it right. What WOComponent are you trying to use? Sent from my iPad > On Apr 23, 2015, at 11:44 AM, HOUNKPONOU Ronald > wrote: > > Hi, > > I have an issue with wocomponents. > How can i call from my app a WOComponent that is located in a framework? > I try by adding t

WO Components

2015-04-23 Thread HOUNKPONOU Ronald
Hi, I have an issue with wocomponents. How can i call from my app a WOComponent that is located in a framework? I try by adding the framework as a dependencie and call the concerned WOComponent but i got a blank page instead of the components. Thanks _

Re: Practical Webobject example's

2015-04-23 Thread HOUNKPONOU Ronald
theses are screenshoots of missing dependencies. 2015-04-23 18:37 GMT+01:00 Chuck Hill : > What are the errors on the PracticalUtilities framework project? > > > > On 2015-04-23, 10:21 AM, "HOUNKPONOU Ronald" wrote: > >I have done it but without success. > > The problem seems to be relati

Re: Practical Webobject example's

2015-04-23 Thread Chuck Hill
What are the errors on the PracticalUtilities framework project? On 2015-04-23, 10:21 AM, "HOUNKPONOU Ronald" wrote: I have done it but without success. The problem seems to be relative to missing JARs dependencies. But those JARs have too be build from the sources !!! 2015-04-23 18:07 GMT+01

Re: Practical Webobject example's

2015-04-23 Thread HOUNKPONOU Ronald
I have done it but without success. The problem seems to be relative to missing JARs dependencies. But those JARs have too be build from the sources !!! 2015-04-23 18:07 GMT+01:00 Chuck Hill : > It looks like Eclipse is confused on state. Restart Eclipse, refresh > all projects, clean all proj

Re: Practical Webobject example's

2015-04-23 Thread Chuck Hill
It looks like Eclipse is confused on state. Restart Eclipse, refresh all projects, clean all projects, build all projects. On 2015-04-23, 9:56 AM, "HOUNKPONOU Ronald" wrote: I've imported the example with errors except 2 of them. I attached here an image that show up errors. How can i solve tha

Re: Practical Webobject example's

2015-04-23 Thread HOUNKPONOU Ronald
Thanks Xavier. 2015-04-23 17:02 GMT+01:00 Dev WO : > http://www.apress.com/downloadable/download/sample/sample_id/1020/ > > Xavier > > On 23 avr. 2015, at 18:00, HOUNKPONOU Ronald > wrote: > > Hi everyone. > I bought the practical webobject on amazon but i not able to find the > examples they ta

Re: Practical Webobject example's

2015-04-23 Thread Dev WO
http://www.apress.com/downloadable/download/sample/sample_id/1020/ Xavier > On 23 avr. 2015, at 18:00, HOUNKPONOU Ronald > wrote: > > Hi everyone. > I bought the practical webobject on amazon but i not able to find the > ex

Practical Webobject example's

2015-04-23 Thread HOUNKPONOU Ronald
Hi everyone. I bought the practical webobject on amazon but i not able to find the examples they talk about inside the book. Can someone help please? Ronald ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

ERXExistsQualifier

2015-04-23 Thread Thomas LATTER
Hi, The ERXExistsQualifier currently doesn't seem to work when multiple tables are referenced in the 'exists' condition. I think a few people are already aware of this but could anyone tell be if they know a way to work around this ? Because the only alternatives I see are either redesigning table

Re: Expired GPG-Key for Debian or Ubuntu deployment installation

2015-04-23 Thread Dennis Bliefernicht
Hi everyone, > On 13 Feb 2015, at 17:27, CHRISTOPH WICK | i4innovation GmbH, Bonn > wrote: > > there is this wonderful description on "Installing a deployment environment > on Debian or Ubuntu" on > https://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+Debi