Wonder JavaMonitor - No statistics for instance

2014-09-22 Thread Raymond NANEON

Hi,

I upgraded my old JavaMonitor by the latest wonder one and every time I go to view a detail of one 
my instances, I always have in red No statistics for appName -A or No statistics 
for appName-B, No statistics for appName-Z.

These messages are due to what? bad settings of the new JavaMonitor ?

Thanks for help
Envoyé depuis iCloud ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Fwd:

2014-09-22 Thread Raymond NANEON

Hi List,

Each time I send a message to webobjects-dev list, I get this error bellow 3 
times.

Where it comes from ?

Thanks
Envoyé depuis iCloud

Début du message réexpédié :

De : mailer_dae...@email.uscc.net
Date : 22 sept. 2014 à 16:28
À : rnan...@me.com
Objet : 


Message to 2533369...@email.uscc.net failed.

 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re:

2014-09-22 Thread Klaus Berkling

On Sep 22, 2014, at 7:35 AM, Raymond NANEON rnan...@me.com wrote:

 Each time I send a message to webobjects-dev list, I get this error bellow 3 
 times.
 
 Where it comes from ?

There is a bad address on the list and everyone gets this.  I have a 
server-side rule that deletes these.

 Début du message réexpédié :
 
 De : mailer_dae...@email.uscc.net
 Date : 22 sept. 2014 à 16:28
 À : rnan...@me.com
 Objet : 
 
 Message to 2533369...@email.uscc.net failed.
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/webobjects%40berkling.us
 
 This email sent to webobje...@berkling.us



kib

The trouble with normal is it always gets worse.
Bruce Cockburn

Klaus Berkling
www.berkling.us | @kiberkli | Photography






smime.p7s
Description: S/MIME cryptographic signature
 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: component advise?

2014-09-22 Thread Theodore Petrosky
ok where does this come from?

pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
(“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp”)

I am referring to the square brackets! I have never seen them used in a 
displayPropertyKeys array. 

Maybe I am thinking of this wrong. What I thought I wanted was that when I ask 
for a new line item, the attributes would be empty. If I chose a selection from 
inventory, this objects values would get copied into the line item. Of course I 
don’ t have to select from the inventory, I could just start filling in the 
fields.

On Sep 19, 2014, at 4:47 PM, Ramsey Gurley rgur...@smarthealth.com wrote:

 So you have
 
 Inventory
 -qty
 -cost
 -msrp
 -lineItems
 
 LineItem
 -cost
 -msrp
 -inventory
 
 You could set that up as a wizard creation page, something like
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp)
 
 Such that you have to choose the inventory item and then proceed with editing 
 the other values. Then do the validationKeys thing for Modern to copy your 
 values. (In ponder, you’d override the _nextStep method on your subclass of 
 R2DDefaultBranchDelegate.) 
 
 Then on save, you could adjust your inventory quantity in willInsert.. or 
 maybe not. I don’t remember if willInsert is called a second time after a 
 validation failure. (Or in ponder, you could override _save on your subclass 
 of R2DDefaultBranchDelegate.)
 
 On Sep 19, 2014, at 12:42 PM, Theodore Petrosky tedp...@yahoo.com wrote:
 
 I need to use a select from inventory” kind of component. I have inventory 
 that has some attributes (quantity on hand, sell price, purchase price, 
 etc). 
 
 I want to present the user with a popup that lists the inventory (obviously 
 this is a rather short list). When you select an inventory object, the 
 pertinent attributes are copied to the line item entity. I want to copy 
 these attributes to the line item as I may want to adjust (override) the 
 values on a single report. Or if the purchase price of an inventory item 
 changes, i do not want old reports (invoices) to show these new values.
 
 I am using this as an example to show a perspective client, and to push 
 myself to learn more D2W. I think if I were in a regular wonder app, I could 
 cobble something together, but I want to learn more in D2W.
 
 Ted
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com
 
 This email sent to rgur...@smarthealth.com
 


 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: component advise?

2014-09-22 Thread Fabian Peters
Hi Ted,

It's just a different format for specifying the tab: 
http://jenkins.wocommunity.org/job/Wonder/javadoc/er/directtoweb/pages/ERD2WPage.html

You could rewrite it as:

pageConfiguration = 'CreateLineItem' = displayPropertyKeys = 
((chooseInventory,inventory), (editValues,cost,msrp))

Fabian

Am 22.09.2014 um 19:43 schrieb Theodore Petrosky tedp...@yahoo.com:

 ok where does this come from?
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp”)
 
 I am referring to the square brackets! I have never seen them used in a 
 displayPropertyKeys array. 
 
 Maybe I am thinking of this wrong. What I thought I wanted was that when I 
 ask for a new line item, the attributes would be empty. If I chose a 
 selection from inventory, this objects values would get copied into the line 
 item. Of course I don’ t have to select from the inventory, I could just 
 start filling in the fields.
 
 On Sep 19, 2014, at 4:47 PM, Ramsey Gurley rgur...@smarthealth.com wrote:
 
 So you have
 
 Inventory
 -qty
 -cost
 -msrp
 -lineItems
 
 LineItem
 -cost
 -msrp
 -inventory
 
 You could set that up as a wizard creation page, something like
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp)
 
 Such that you have to choose the inventory item and then proceed with 
 editing the other values. Then do the validationKeys thing for Modern to 
 copy your values. (In ponder, you’d override the _nextStep method on your 
 subclass of R2DDefaultBranchDelegate.) 
 
 Then on save, you could adjust your inventory quantity in willInsert.. or 
 maybe not. I don’t remember if willInsert is called a second time after a 
 validation failure. (Or in ponder, you could override _save on your subclass 
 of R2DDefaultBranchDelegate.)
 
 On Sep 19, 2014, at 12:42 PM, Theodore Petrosky tedp...@yahoo.com wrote:
 
 I need to use a select from inventory” kind of component. I have inventory 
 that has some attributes (quantity on hand, sell price, purchase price, 
 etc). 
 
 I want to present the user with a popup that lists the inventory (obviously 
 this is a rather short list). When you select an inventory object, the 
 pertinent attributes are copied to the line item entity. I want to copy 
 these attributes to the line item as I may want to adjust (override) the 
 values on a single report. Or if the purchase price of an inventory item 
 changes, i do not want old reports (invoices) to show these new values.
 
 I am using this as an example to show a perspective client, and to push 
 myself to learn more D2W. I think if I were in a regular wonder app, I 
 could cobble something together, but I want to learn more in D2W.
 
 Ted
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com
 
 This email sent to rgur...@smarthealth.com
 
 
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/lists.fabian%40e-lumo.com
 
 This email sent to lists.fab...@e-lumo.com


 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: component advise?

2014-09-22 Thread Theodore Petrosky
thanks but I have a problem. this works as documented:

100 : pageConfiguration = 'CreatePerson' = displayPropertyKeys = ([Page1], 
(Name), firstName, lastName, [Page2], (Address), addressLine1, 
addressLine2, personCity, personState, personZip, login, password, 
email, startDate, endDate, current, security.canCreateInvoice, 
security.canEditPerson) [com.webobjects.directtoweb.Assignment]

however, with the edit page, it blows up:

100 : pageConfiguration = 'EditPerson' = displayPropertyKeys = ([Page1], 
(Name), firstName, lastName, [Page2], (Address), addressLine1, 
addressLine2, personCity, personState, personZip, login, password, 
email, startDate, endDate, current) 
[com.webobjects.directtoweb.Assignment]


Error:  com.webobjects.foundation.NSKeyValueCoding$UnknownKeyException message 
'com.eltek.model.Person 0x69e18938 valueForKey(): lookup of unknown key: 
'[Page1]'. This class does not have an instance variable of the name [Page1] or 
_[Page1], nor a method of the name [Page1], _[Page1], get[Page1], or 
_get[Page1]' object 'com.eltek.model.Person pk:2' key '[Page1]' 
Reason: com.eltek.model.Person 0x69e18938 valueForKey(): lookup of unknown 
key: '[Page1]'. This class does not have an instance variable of the name 
[Page1] or _[Page1], nor a method of the name [Page1], _[Page1], get[Page1], or 
_get[Page1]

I referenced the wiki and found:

http://wiki.wocommunity.org/display/documentation/Using+ERD2WWizardCreationPage

which seems to imply that this technique should work the same on create or edit 
pages. I thought it was a typo, so I duplicated the rule for CreatePerson 
(which is working) and reapplied it to EditPerson. Same problem.

any ideas?




On Sep 22, 2014, at 4:06 PM, Fabian Peters lists.fab...@e-lumo.com wrote:

 Hi Ted,
 
 It's just a different format for specifying the tab: 
 http://jenkins.wocommunity.org/job/Wonder/javadoc/er/directtoweb/pages/ERD2WPage.html
 
 You could rewrite it as:
 
 pageConfiguration = 'CreateLineItem' = displayPropertyKeys = 
 ((chooseInventory,inventory), (editValues,cost,msrp))
 
 Fabian
 
 Am 22.09.2014 um 19:43 schrieb Theodore Petrosky tedp...@yahoo.com:
 
 ok where does this come from?
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp”)
 
 I am referring to the square brackets! I have never seen them used in a 
 displayPropertyKeys array. 
 
 Maybe I am thinking of this wrong. What I thought I wanted was that when I 
 ask for a new line item, the attributes would be empty. If I chose a 
 selection from inventory, this objects values would get copied into the line 
 item. Of course I don’ t have to select from the inventory, I could just 
 start filling in the fields.
 
 On Sep 19, 2014, at 4:47 PM, Ramsey Gurley rgur...@smarthealth.com wrote:
 
 So you have
 
 Inventory
 -qty
 -cost
 -msrp
 -lineItems
 
 LineItem
 -cost
 -msrp
 -inventory
 
 You could set that up as a wizard creation page, something like
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp)
 
 Such that you have to choose the inventory item and then proceed with 
 editing the other values. Then do the validationKeys thing for Modern to 
 copy your values. (In ponder, you’d override the _nextStep method on your 
 subclass of R2DDefaultBranchDelegate.) 
 
 Then on save, you could adjust your inventory quantity in willInsert.. or 
 maybe not. I don’t remember if willInsert is called a second time after a 
 validation failure. (Or in ponder, you could override _save on your 
 subclass of R2DDefaultBranchDelegate.)
 
 On Sep 19, 2014, at 12:42 PM, Theodore Petrosky tedp...@yahoo.com wrote:
 
 I need to use a select from inventory” kind of component. I have 
 inventory that has some attributes (quantity on hand, sell price, purchase 
 price, etc). 
 
 I want to present the user with a popup that lists the inventory 
 (obviously this is a rather short list). When you select an inventory 
 object, the pertinent attributes are copied to the line item entity. I 
 want to copy these attributes to the line item as I may want to adjust 
 (override) the values on a single report. Or if the purchase price of an 
 inventory item changes, i do not want old reports (invoices) to show these 
 new values.
 
 I am using this as an example to show a perspective client, and to push 
 myself to learn more D2W. I think if I were in a regular wonder app, I 
 could cobble something together, but I want to learn more in D2W.
 
 Ted
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com
 
 This email sent to rgur...@smarthealth.com
 
 
 
 ___
 Do not post admin requests to the 

Re: component advise?

2014-09-22 Thread Ramsey Gurley
I think Modern requires you to specify the Edit page is a tabbed edit page. I 
think Ken Ishimoto pointed out once long ago that the Wizard/Tabbed page 
templates are always the superior choice in Modern. They work in either case 
where the simple edit page blows up with tabbed displayPropertyKeys. So when 
you make the rule to fix it, you may just want to make it *true* on the LHS.


On Sep 22, 2014, at 1:37 PM, Theodore Petrosky tedp...@yahoo.com wrote:

 thanks but I have a problem. this works as documented:
 
 100 : pageConfiguration = 'CreatePerson' = displayPropertyKeys = ([Page1], 
 (Name), firstName, lastName, [Page2], (Address), addressLine1, 
 addressLine2, personCity, personState, personZip, login, 
 password, email, startDate, endDate, current, 
 security.canCreateInvoice, security.canEditPerson) 
 [com.webobjects.directtoweb.Assignment]
 
 however, with the edit page, it blows up:
 
 100 : pageConfiguration = 'EditPerson' = displayPropertyKeys = ([Page1], 
 (Name), firstName, lastName, [Page2], (Address), addressLine1, 
 addressLine2, personCity, personState, personZip, login, 
 password, email, startDate, endDate, current) 
 [com.webobjects.directtoweb.Assignment]
 
 
 Error:com.webobjects.foundation.NSKeyValueCoding$UnknownKeyException 
 message 'com.eltek.model.Person 0x69e18938 valueForKey(): lookup of unknown 
 key: '[Page1]'. This class does not have an instance variable of the name 
 [Page1] or _[Page1], nor a method of the name [Page1], _[Page1], get[Page1], 
 or _get[Page1]' object 'com.eltek.model.Person pk:2' key '[Page1]' 
 Reason:   com.eltek.model.Person 0x69e18938 valueForKey(): lookup of 
 unknown key: '[Page1]'. This class does not have an instance variable of the 
 name [Page1] or _[Page1], nor a method of the name [Page1], _[Page1], 
 get[Page1], or _get[Page1]
 
 I referenced the wiki and found:
 
 http://wiki.wocommunity.org/display/documentation/Using+ERD2WWizardCreationPage
 
 which seems to imply that this technique should work the same on create or 
 edit pages. I thought it was a typo, so I duplicated the rule for 
 CreatePerson (which is working) and reapplied it to EditPerson. Same problem.
 
 any ideas?
 
 
 
 
 On Sep 22, 2014, at 4:06 PM, Fabian Peters lists.fab...@e-lumo.com wrote:
 
 Hi Ted,
 
 It's just a different format for specifying the tab: 
 http://jenkins.wocommunity.org/job/Wonder/javadoc/er/directtoweb/pages/ERD2WPage.html
 
 You could rewrite it as:
 
 pageConfiguration = 'CreateLineItem' = displayPropertyKeys = 
 ((chooseInventory,inventory), (editValues,cost,msrp))
 
 Fabian
 
 Am 22.09.2014 um 19:43 schrieb Theodore Petrosky tedp...@yahoo.com:
 
 ok where does this come from?
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp”)
 
 I am referring to the square brackets! I have never seen them used in a 
 displayPropertyKeys array. 
 
 Maybe I am thinking of this wrong. What I thought I wanted was that when I 
 ask for a new line item, the attributes would be empty. If I chose a 
 selection from inventory, this objects values would get copied into the 
 line item. Of course I don’ t have to select from the inventory, I could 
 just start filling in the fields.
 
 On Sep 19, 2014, at 4:47 PM, Ramsey Gurley rgur...@smarthealth.com wrote:
 
 So you have
 
 Inventory
 -qty
 -cost
 -msrp
 -lineItems
 
 LineItem
 -cost
 -msrp
 -inventory
 
 You could set that up as a wizard creation page, something like
 
 pageConfiguration = ‘CreateLineItem’ = displayPropertyKeys = 
 (“[chooseInventory]”,”inventory”,”[editValues]”,”cost”,”msrp)
 
 Such that you have to choose the inventory item and then proceed with 
 editing the other values. Then do the validationKeys thing for Modern to 
 copy your values. (In ponder, you’d override the _nextStep method on your 
 subclass of R2DDefaultBranchDelegate.) 
 
 Then on save, you could adjust your inventory quantity in willInsert.. or 
 maybe not. I don’t remember if willInsert is called a second time after a 
 validation failure. (Or in ponder, you could override _save on your 
 subclass of R2DDefaultBranchDelegate.)
 
 On Sep 19, 2014, at 12:42 PM, Theodore Petrosky tedp...@yahoo.com wrote:
 
 I need to use a select from inventory” kind of component. I have 
 inventory that has some attributes (quantity on hand, sell price, 
 purchase price, etc). 
 
 I want to present the user with a popup that lists the inventory 
 (obviously this is a rather short list). When you select an inventory 
 object, the pertinent attributes are copied to the line item entity. I 
 want to copy these attributes to the line item as I may want to adjust 
 (override) the values on a single report. Or if the purchase price of an 
 inventory item changes, i do not want old reports (invoices) to show 
 these new values.
 
 I am using this as an example to show a perspective client, and to push 
 myself to learn more D2W. I think if I were in a regular wonder app, 

Re:

2014-09-22 Thread Ramsey Gurley
D..did I just send a reply to the list without getting this garbage? Is it 
possible that this is really fixed now?

http://i.imgur.com/EqRJH.gif

Crossing my fingers!

On Sep 22, 2014, at 8:19 AM, Klaus Berkling webobje...@berkling.us wrote:

 
 On Sep 22, 2014, at 7:35 AM, Raymond NANEON rnan...@me.com wrote:
 
 Each time I send a message to webobjects-dev list, I get this error bellow 3 
 times.
 
 Where it comes from ?
 
 There is a bad address on the list and everyone gets this.  I have a 
 server-side rule that deletes these.
 
 Début du message réexpédié :
 
 De : mailer_dae...@email.uscc.net
 Date : 22 sept. 2014 à 16:28
 À : rnan...@me.com
 Objet : 
 
 Message to 2533369...@email.uscc.net failed.
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/webobjects%40berkling.us
 
 This email sent to webobje...@berkling.us
 
 
 
 kib
 
 The trouble with normal is it always gets worse.
 Bruce Cockburn
 
 Klaus Berkling
 www.berkling.us | @kiberkli | Photography
 
 
 
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com
 
 This email sent to rgur...@smarthealth.com

 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com