Re: where to file wolips eclipse plugin bugs?

2010-03-01 Thread Pascal Robert
Funny thing is that since January 1th, 26 visits that landed on wocommunity.org 
are people who searched for "wolips bugreporting" on Google.

> http://issues.objectstyle.org/jira/secure/Dashboard.jspa
> 
> If you don't have an account, you can just sign up. Everyone is welcome!
> 
> That login will also give you priveleges to add to the Confluence wiki for 
> WO, WOLips and Wonder.
> 
> Dave
> 
> 
> On Feb 26, 2010, at 7:38 PM, Joelle Lam wrote:
> 
>> Hello,
>> 
>> Where can I file bugs for the WObjects Eclipse Plugin?
>> 
>> Thanks!
>> Joelle
>> ___
>> 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:
>> http://lists.apple.com/mailman/options/webobjects-dev/webobjects%40avendasora.com
>> 
>> This email sent to webobje...@avendasora.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:
> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
> 
> This email sent to prob...@macti.ca

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

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


Re: where to file wolips eclipse plugin bugs?

2010-03-01 Thread David Avendasora
http://issues.objectstyle.org/jira/secure/Dashboard.jspa

If you don't have an account, you can just sign up. Everyone is welcome!

That login will also give you priveleges to add to the Confluence wiki for WO, 
WOLips and Wonder.

Dave


On Feb 26, 2010, at 7:38 PM, Joelle Lam wrote:

> Hello,
> 
> Where can I file bugs for the WObjects Eclipse Plugin?
> 
> Thanks!
> Joelle
> ___
> 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:
> http://lists.apple.com/mailman/options/webobjects-dev/webobjects%40avendasora.com
> 
> This email sent to webobje...@avendasora.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:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


where to file wolips eclipse plugin bugs?

2010-03-01 Thread Joelle Lam
Hello,

Where can I file bugs for the WObjects Eclipse Plugin?

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

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

Re: Consuming web service: Any WOWebServices best practices?

2010-03-01 Thread Travis Britt
On Mar 1, 2010, at 11:07 AM, Kieran Kelleher wrote:
> So is there any possibility that you might be submitting a 
> ERSalesForce.framework in Wonder?  ;-)

Heh. There actually has been some consideration of what can be done for the 
general case. For now it needs more time in the oven.

tb

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

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


Re: Derived Attributes

2010-03-01 Thread John Huss
My model also has:

 columnName = "";

for my derived attributes - maybe that matters?

John

On Fri, Feb 26, 2010 at 1:51 PM, Kieran Kelleher wrote:

> Hi all,
>
> I tried adding a simple derived attribute to a model, as shown here:
>
>
> http://idisk.me.com/kelleherk/Public/Pictures/Skitch/derived_attribute-20100226-125124.jpg
>
> However EOF falls over as soon as I touch that entity with an error like
> the following. This is WO 5.3.3 btw.  Looking at the source in
> EOSQLExpression, it would seem that the attribute_definitionArray is null,
> because if it is null, then the method tries to get a column name and throws
> this exception when there is no column name.. The eomodel itself shows the
> attribute like this in the plist:
>
> {
> allowsNull = Y;
> definition = oid;
> externalType = INT;
> name = uniqueID;
> valueClassName = NSNumber;
> valueType = i;
> }
>
>
>
> So now I put a few statements in didFinishLaunhcing to grab that
> EOAttribute and check in the debugger and I find that the _definitionArray
> is empty. That does not seem right, does it?
>
>
> http://idisk.me.com/kelleherk/Public/Pictures/Skitch/emptydefinitionarray-20100226-131150.jpg
>
> Any ideas why this would not work, or how to troubleshoot it if it should
> work?
>
> I know Wonder uses programmatically created derived attributes for COUNT(*)
>  and aggregate functions, but is there anyone out there using model-defined
> derived attributes successfully?
>
> java.lang.IllegalStateException: sqlStringForAttribute: attempt to
> generate SQL for attribute 'uniqueID' on entity 'CTMessage' with undefined
> column name. You must define a column name for this attribute before
> attempting a database operation.
>   at com.webobjects.eoaccess.EOSQLExpression.sqlStringForAttribute(
> EOSQLExpression.java:2064)
>   at com.webobjects.jdbcadaptor.JDBCExpression.addSelectListAttribute(
> JDBCExpression.java:362)
>   at
> com.webobjects.eoaccess.EOSQLExpression.prepareSelectExpressionWithAttributes(
> EOSQLExpression.java:1006)
>   at
> com.webobjects.jdbcadaptor.JDBCExpression.prepareSelectExpressionWithAttributes(
> JDBCExpression.java:273)
>   at
> com.webobjects.eoaccess.EOSQLExpressionFactory.selectStatementForAttributes(
> EOSQLExpressionFactory.java:226)
>   at er.extensions.jdbc.ERXSQLHelper.sqlExpressionForFetchSpecification(
> ERXSQLHelper.java:635)
>   at er.extensions.jdbc.ERXSQLHelper.sqlExpressionForFetchSpecification(
> ERXSQLHelper.java:569)
>   at er.extensions.jdbc.ERXSQLHelper.rowCountForFetchSpecification(
> ERXSQLHelper.java:1110)
>   at er.extensions.eof.ERXEOAccessUtilities.rowCountForFetchSpecification(
> ERXEOAccessUtilities.java:458)
>   at er.extensions.batching.ERXBatchingDisplayGroup.rowCount(
> ERXBatchingDisplayGroup.java:292)
>   at er.extensions.batching.ERXBatchingDisplayGroup.refetch(
> ERXBatchingDisplayGroup.java:362)
>   at er.extensions.batching.ERXBatchingDisplayGroup.fetch(
> ERXBatchingDisplayGroup.java:438)
>   at wk.eofextensions.WKEOUtils.displayGroupWithFetchSpecification(
> WKEOUtils.java:1061)
>   at wk.cheetah.wocomponents.MessagesPage.dg(MessagesPage.java:52)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:39)
>   at sun.reflect.DelegatingMethodAccessorImpl.invoke(
> DelegatingMethodAccessorImpl.java:25)
>   at java.lang.reflect.Method.invoke(Method.java:592)
>   at
> com.webobjects.foundation.NSKeyValueCoding$ValueAccessor$1.methodValue(
> NSKeyValueCoding.java:684)
>   at
> com.webobjects.foundation.NSKeyValueCoding$_MethodBinding.valueInObject(
> NSKeyValueCoding.java:1160)
>   at
> com.webobjects.foundation.NSKeyValueCoding$DefaultImplementation.valueForKey(
> NSKeyValueCoding.java:1268)
>   at com.webobjects.appserver.WOComponent.valueForKey(
> WOComponent.java:1539)
>   at com.webobjects.foundation.NSKeyValueCoding$Utility.valueForKey(
> NSKeyValueCoding.java:498)
>   at
> com.webobjects.foundation.NSKeyValueCodingAdditions$DefaultImplementation.valueForKeyPath(
> NSKeyValueCodingAdditions.java:212)
>   at com.webobjects.appserver.WOComponent.valueForKeyPath(
> WOComponent.java:1600)
>   at
> com.webobjects.appserver._private.WOKeyValueAssociation.valueInComponent(
> WOKeyValueAssociation.java:46)
>   at com.webobjects.appserver.WOComponent.valueForBinding(
> WOComponent.java:735)
>   at er.extensions.batching.ERXFlickrBatchNavigation.displayGroup(
> ERXFlickrBatchNavigation.java:82)
>   at er.extensions.batching.ERXFlickrBatchNavigation.batchCount(
> ERXFlickrBatchNavigation.java:285)
>   at er.extensions.batching.ERXFlickrBatchNavigation.hasMultiplePages(
> ERXFlickrBatchNavigation.java:94)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:39)
>   at sun.reflect.DelegatingMethodAccessorImpl.invoke(

Re: Consuming web service: Any WOWebServices best practices?

2010-03-01 Thread Kieran Kelleher
So is there any possibility that you might be submitting a 
ERSalesForce.framework in Wonder?  ;-)

On Mar 1, 2010, at 10:46 AM, Travis Britt wrote:

> I just finished integrating a WO app with SalesForce.com's SOAP service and 
> was very pleasantly surprised with Metro.
> 
> 
> 
> tb
> 
> On Mar 1, 2010, at 8:02 AM, Amiel Montecillo wrote:
>> Thanks for the input Kieran,
>> 
>> I am using WO 5.4.3. I think I'll give myself a day to see if I can go the 
>> WO way.
>> 
>> Amiel
>> 
>> On Mon, Mar 1, 2010 at 7:52 PM, Kieran Kelleher  wrote:
>> I just use Apache AXIS and wsdl2Java.
>> 
>> Note that WO 5.3.3 and WO 5.4.3 require different versions of AXIS.
>> 
>> 
>> On Mar 1, 2010, at 12:36 AM, Amiel Montecillo wrote:
>> 
>>> Hi everyone,
>>> 
>>> I am trying to consume a SOAP web service. I tried to look for any good 
>>> reference for using WOWebServices but ended in vain.
>>> 
>>> Can anyone suggest any good reference material on building a 
>>> WoWebServiceClient? Or am I better off using Apache AXIS and have WSDL2Java 
>>> do the work for me?
>>> 
>>> Thanks in advance,
>>> Amiel
> 
> ___
> 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:
> http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists%40mac.com
> 
> This email sent to kieran_li...@mac.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:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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


WOWODC 2010 : still have some room for more presentations

2010-03-01 Thread Pascal Robert

Hey,

It's your favorite WOWODC spammer again. WOWODC preparations are  
coming along well, but we still have some room for more presentations!  
What's missing so far is advanced deployment (in-db session store,  
load balancing in front of Apache, etc.) and advanced EOF sessions  
(inheritance, optimization, etc.), but we are open to any topics.


If you would like to present, or know someone that could present,  
please contact me. Registration and first list of presentations will  
be available in two weeks!



Pascal Robert
prob...@macti.ca

AIM: MacTICanada
Twitter : MacTICanada
LinkedIn : http://www.linkedin.com/in/macti
WO Community profile : http://wocommunity.org/page/member?name=probert

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

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


Re: Consuming web service: Any WOWebServices best practices?

2010-03-01 Thread Travis Britt
I just finished integrating a WO app with SalesForce.com's SOAP service and was 
very pleasantly surprised with Metro.



tb

On Mar 1, 2010, at 8:02 AM, Amiel Montecillo wrote:
> Thanks for the input Kieran,
> 
> I am using WO 5.4.3. I think I'll give myself a day to see if I can go the WO 
> way.
> 
> Amiel
> 
> On Mon, Mar 1, 2010 at 7:52 PM, Kieran Kelleher  wrote:
> I just use Apache AXIS and wsdl2Java.
> 
> Note that WO 5.3.3 and WO 5.4.3 require different versions of AXIS.
> 
> 
> On Mar 1, 2010, at 12:36 AM, Amiel Montecillo wrote:
> 
> > Hi everyone,
> >
> > I am trying to consume a SOAP web service. I tried to look for any good 
> > reference for using WOWebServices but ended in vain.
> >
> > Can anyone suggest any good reference material on building a 
> > WoWebServiceClient? Or am I better off using Apache AXIS and have WSDL2Java 
> > do the work for me?
> >
> > Thanks in advance,
> > Amiel

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

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


Re: Consuming web service: Any WOWebServices best practices?

2010-03-01 Thread Amiel Montecillo
Thanks for the input Kieran,

I am using WO 5.4.3. I think I'll give myself a day to see if I can go the
WO way.

Amiel

On Mon, Mar 1, 2010 at 7:52 PM, Kieran Kelleher wrote:

> I just use Apache AXIS and wsdl2Java.
>
> Note that WO 5.3.3 and WO 5.4.3 require different versions of AXIS.
>
>
> On Mar 1, 2010, at 12:36 AM, Amiel Montecillo wrote:
>
> > Hi everyone,
> >
> > I am trying to consume a SOAP web service. I tried to look for any good
> reference for using WOWebServices but ended in vain.
> >
> > Can anyone suggest any good reference material on building a
> WoWebServiceClient? Or am I better off using Apache AXIS and have WSDL2Java
> do the work for me?
> >
> > Thanks in advance,
> > Amiel
> >
> > --
> > socket error: unable to connect to 127.0.0.1
> > ___
> > 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:
> >
> http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists%40mac.com
> >
> > This email sent to kieran_li...@mac.com
>
>


-- 
socket error: unable to connect to 127.0.0.1
 ___
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:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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

Re: Strange localContext error for my d2w component

2010-03-01 Thread James Cicenia
Ah,,, nothing like a goodnights sleep to debug conflicting rules.

- j-

On Feb 28, 2010, at 9:54 PM, James Cicenia wrote:

> Hello -
> 
> I am simply subclassing:
> 
> public class SponsorEditToManyFaultList extends ERD2WEditToManyFaultList {
> public SponsorEditToManyFaultList(WOContext context) {
> super(context);
> }
> }
> 
> I have another component where I do the same thing and it works.
> However, when the page tries to load this component I get:
> 
> takeValueForKey()]: attempt to assign value to unknown key: 'localContext'. 
> This WOComponent does not have an instance variable of the name localContext 
> or _localContext, nor a method of the name setLocalContext or 
> _setLocalContext' object '' key 'localContext'>
> 
> I checked my rules and they look the same as the other component that works.
> 
> Ideas?
> 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 your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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

Re: Consuming web service: Any WOWebServices best practices?

2010-03-01 Thread Kieran Kelleher
I just use Apache AXIS and wsdl2Java.

Note that WO 5.3.3 and WO 5.4.3 require different versions of AXIS.


On Mar 1, 2010, at 12:36 AM, Amiel Montecillo wrote:

> Hi everyone,
> 
> I am trying to consume a SOAP web service. I tried to look for any good 
> reference for using WOWebServices but ended in vain.
> 
> Can anyone suggest any good reference material on building a 
> WoWebServiceClient? Or am I better off using Apache AXIS and have WSDL2Java 
> do the work for me?
> 
> Thanks in advance,
> Amiel
> 
> -- 
> socket error: unable to connect to 127.0.0.1
> ___
> 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:
> http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists%40mac.com
> 
> This email sent to kieran_li...@mac.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:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

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