Re: Runtime error after updating to Isis 1.6.0 simpleapp-archetype

2014-08-04 Thread Dileepa Jayakody
isis.services.ServicesInstallerFromAnnotation.packagePrefix=org.nic.isis When I remove these properties, I can view the page fine. Can some missing dependency be the reason for this issue? Thanks, Dileepa On Mon, Aug 4, 2014 at 3:29 PM, Dileepa Jayakody wrote: > Above error is now resolved,(I'm not sure how)

Re: Runtime error after updating to Isis 1.6.0 simpleapp-archetype

2014-08-04 Thread Dileepa Jayakody
Above error is now resolved,(I'm not sure how) but as I updated the poms back to 1.6.0 version, I'm not seeing above error in wicketviewer now. I'm proceeding to integration tests for the application now with 1.6.0. Thanks, Dileepa On Wed, Jul 30, 2014 at 11:25 PM, D

Re: Runtime error after updating to Isis 1.6.0 simpleapp-archetype

2014-07-30 Thread Dileepa Jayakody
tests using Isis 1.6.0 Thanks, Dileepa On Wed, Jul 30, 2014 at 2:06 AM, Dileepa Jayakody wrote: > Will do Dan. > > Thanks, > Dileepa > > > On Wed, Jul 30, 2014 at 1:38 AM, Dan Haywood > wrote: > >> Hi Dileepa, >> Won't get a chance to look at this until

Re: Runtime error after updating to Isis 1.6.0 simpleapp-archetype

2014-07-29 Thread Dileepa Jayakody
Will do Dan. Thanks, Dileepa On Wed, Jul 30, 2014 at 1:38 AM, Dan Haywood wrote: > Hi Dileepa, > Won't get a chance to look at this until tomorrow evening so if it's > blocking you, suggest you fallback to previous version. > Dan > Hi All, > > I successfully updated my existing simpleapp archet

Runtime error after updating to Isis 1.6.0 simpleapp-archetype

2014-07-29 Thread Dileepa Jayakody
Hi All, I successfully updated my existing simpleapp archetype 1.4.1 based application to 1.6.0 latest release and built the project with no errors. Currently I'm running into a NoClassDefFound error for: org/datanucleus/state/ObjectProvider class when I access the wicket viewer of my project. Be

Re: Build error with Quartz scheduler in webapp after migrating poms to Isis 1.6.0

2014-07-28 Thread Dileepa Jayakody
Hi All, After adding below quartz dependency in the webapp/pom.xml the build error is resolved. org.quartz-scheduler quartz 2.0.2 Sorry for the noise. Thanks, Dileepa On Tue, Jul 29, 2014 at 1:50 AM, Dileepa Jayakody wrote: > Please note that

Re: Build error with Quartz scheduler in webapp after migrating poms to Isis 1.6.0

2014-07-28 Thread Dileepa Jayakody
Thanks, Dileepa On Tue, Jul 29, 2014 at 1:46 AM, Dileepa Jayakody wrote: > Hi All, > > In my application I'm implementing a Quartz scheduler job to perform a > task periodically. > After I migrated the poms as per simpleapp-archetype 1.6.0, i get below > build er

Build error with Quartz scheduler in webapp after migrating poms to Isis 1.6.0

2014-07-28 Thread Dileepa Jayakody
Hi All, In my application I'm implementing a Quartz scheduler job to perform a task periodically. After I migrated the poms as per simpleapp-archetype 1.6.0, i get below build error [1] in webapp build. Seems like I'm missing some classes related to org.quartz (org.quartz.Job, JobExecutionContext

Re: Can I increase max.length of String columns in Isis JDO ?

2014-07-25 Thread Dileepa Jayakody
> request/thread. > > One other point: an alternative option is to serialize these data > structures to strings or similar and store in a blob. > > HTH > Dan > > > [1] > > http://www.datanucleus.org/products/datanucleus/jdo/orm/one_to_many_map.html > > &

Re: Can I increase max.length of String columns in Isis JDO ?

2014-07-25 Thread Dileepa Jayakody
startup, I notice that above properties in my entity class are not mapped to any db_schema by jdo. Thanks, Dileepa On Wed, Jul 23, 2014 at 4:44 PM, Dileepa Jayakody wrote: > Thanks Oscar and Dan. > > I tried using @Column(length=1000), the max.length error is gone, but now > I&

Re: Can I increase max.length of String columns in Isis JDO ?

2014-07-23 Thread Dileepa Jayakody
:39:01,440 [IsisTransaction qtp1065406375-36 INFO ] abort transaction IsisTransaction@31117256[state=MUST_ABORT,commands=0] On Wed, Jul 23, 2014 at 4:34 PM, Dan Haywood wrote: > On 23 July 2014 11:58, Dileepa Jayakody wrote: > > > Hi All, > > > > In my project developed u

Can I increase max.length of String columns in Isis JDO ?

2014-07-23 Thread Dileepa Jayakody
Hi All, In my project developed using Isis, I'm persisting an email entity in which emailHeader is stored as a String. When trying to persist the entities I get following error indicating the value of emailHeaders exceed the default max.length of JDO/datanucleus. Can I increase this max.length? Do

Re: How to start Isis in debug mode

2014-07-09 Thread Dileepa Jayakody
Thanks a lot Dan and Martin. On Wed, Jul 9, 2014 at 1:01 PM, Dan Haywood wrote: > On 9 July 2014 08:08, Dileepa Jayakody wrote: > > > Hi Dan, > > > > Can I run the server from console in debug mode? and connect the project > > from eclipse as a Remote applicati

Re: How to start Isis in debug mode

2014-07-09 Thread Dileepa Jayakody
use the ide/eclipse/launch/xxx.launch file with > --type=SERVER_PROTOTYPE to flip Isis into prototype mode too; this will > render any @Prototype actions and also runs Wicket in DEVELOPMENT mode. > > Dan > > > > On 9 July 2014 07:38, Dileepa Jayakody wrote: > > > Hi

How to start Isis in debug mode

2014-07-08 Thread Dileepa Jayakody
Hi Devs, Can I please know how to start Isis server in debug mode? I need to debug from Eclipse. Thanks, Dileepa

Re: Error when running ReputationBox mock app

2014-05-25 Thread Dileepa Jayakody
licationSettingsService that you'll find in Isis' applib. > > Thus: > EmailService -> ContextIO -> ApplicationSettingsService. > > HTH > Dan > > > > > On 23 May 2014 12:35, Dileepa Jayakody wrote: > >> Hi all, >> >> I have been work

Error when running ReputationBox mock app

2014-05-23 Thread Dileepa Jayakody
Hi all, I have been working on my GSOC project : ReputationBox using the simple_wicket_restful_jdo-archetype. I have defined some of the domain classes for the application and setup a mock EmailService and EmailViewModel to display email data on the web app. The project code @github : https://gith

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-21 Thread Dileepa Jayakody
> > Really helpful. > > HTH, > > Oscar > > > > El 09/04/2014, a las 07:23, Dileepa Jayakody > escribió: > > Thanks guys. > I'm new to BDD scenarios, so I will go through the Isis documentation > pointed out by Oscar to get an idea about it. > >

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-08 Thread Dileepa Jayakody
Thanks guys. I'm new to BDD scenarios, so I will go through the Isis documentation pointed out by Oscar to get an idea about it. Regards, Dileepa On Wed, Apr 9, 2014 at 8:35 AM, David Tildesley wrote: > Hi Oscar, > > Thanks - I want to have a go at using the BDD integration - good to know > th

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-07 Thread Dileepa Jayakody
e > chosen > > to collapse the user (Party) onto that - which may be fine if all you > want > > to know about the user is say an identifier and name so that you can > locate > > the logged in principal's UserInbox. > > > > If it were an email cli

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-04 Thread Dileepa Jayakody
ationValue has a uni-direction association to the criteria used for the computation. See : http://yuml.me/17514278 Something like this: >> >> http://yuml.me/3aa65a6f >> >> HTH, >> >> Oscar >> >> >> >> El 04/04/2014, a las 17:56, Dileepa J

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-04 Thread Dileepa Jayakody
a is > redundant, as it can be obtained through the ReputationValue. It could be > modeled as a derived relationship in Isis. > > Yes, Thanks for pointing out. Removed this relationship between Reputation and Criteria > HTH, > > Oscar > > > > El 03/04/2014, a las 09:59

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-03 Thread Dileepa Jayakody
Hi Dan and all, I modified the diagram and the latest is : http://yuml.me/75c87f26 On Thu, Apr 3, 2014 at 12:50 PM, Dileepa Jayakody wrote: > Thanks Dan, > > I will modify the diagram with proper notations and reply with > explanations.. > > > On Thu, Apr 3, 2014 at

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-03 Thread Dileepa Jayakody
Thanks Dan, I will modify the diagram with proper notations and reply with explanations.. On Thu, Apr 3, 2014 at 12:31 PM, Dan Haywood wrote: > On 2 April 2014 08:09, Dileepa Jayakody wrote: > > > Hi All, > > > > After doing some background reading on Reput

Re: Comments on GSOC2014 ReputationBox proposal

2014-04-01 Thread Dileepa Jayakody
shape is behaviour. > > Regards, > David. > > > On Thursday, 27 March 2014 9:15 AM, Dileepa Jayakody < > dileepajayak...@gmail.com> wrote: > > Hi David, > > On Thu, Mar 27, 2014 at 1:13 AM, David Tildesley >wrote: > > > Now we are getting somewhere. Wh

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
r email scores > then what holds this history? (hopefully you are going to tell me that > Mahout/Hadoop) does and therefore the domain does not care. > > David. > > > > > On Thursday, 27 March 2014 12:24 AM, Dileepa Jayakody < > dileepajayak...@gmail.com> wrote

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
t; project. > Thanks Dan, and yes prioritization of features is important with effort estimations. Currently I'm testing out Mahout for my usecase. Another ML java project is Weka [1]. I will have a quick look on both libraries to select one to implement the ReputationAnalysis process.

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
om), topic and actions (keywords such as meeting, project, important etc) mentioned in the email to perform reputation calculation. > David. > > > > On Wednesday, 26 March 2014 11:09 PM, Dileepa Jayakody < > dileepajayak...@gmail.com> wrote: > > Hi David, > >

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
Hi David, On Wed, Mar 26, 2014 at 3:22 PM, David Tildesley wrote: > > Hi David, > > On Wednesday, 26 March 2014 8:49 PM, Dileepa Jayakody < > dileepajayak...@gmail.com> wrote: > > > Hi Dan, David and all, > > > Above class diagram only contains the domain

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
Hi Dan and all, On Wed, Mar 26, 2014 at 1:38 PM, Dan Haywood wrote: > > On 26 March 2014 07:48, Dileepa Jayakody wrote: > >> >> @Dan, >> EmailContact's reputation is an aggregated and normalized reputation >> score calculated based on the overall reputation

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-26 Thread Dileepa Jayakody
I'm starting to wonder if its a value object rather than an entity. > > Thx > Dan > > > > > On 26 March 2014 06:08, Dileepa Jayakody wrote: > >> Hi Oscar, >> >> Thanks for your suggestions. Yes there should be a 1..n relationship >> between Ema

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-25 Thread Dileepa Jayakody
EmailContact) so, unless you're explicitly modeling that derived > relationship, it shouldn't appear. > > > > HTH, > > > > Oscar > > > > > > > > > > El 25/03/2014, a las 21:20, Dileepa Jayakody > escribió: > > > >&

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-25 Thread Dileepa Jayakody
tions are most welcome. Thanks, Dileepa On Tue, Mar 25, 2014 at 3:42 PM, Dileepa Jayakody wrote: > Hi Dan, > > Thanks a lot for your insight. Please see my comments inline below. > > > On Tue, Mar 25, 2014 at 1:21 PM, Dan Haywood > wrote: > >> Hi Dileepa, >>

Re: Comments on GSOC2014 ReputationBox proposal

2014-03-25 Thread Dileepa Jayakody
Hi Dan, Thanks a lot for your insight. Please see my comments inline below. On Tue, Mar 25, 2014 at 1:21 PM, Dan Haywood wrote: > Hi Dileepa, > > I've just posted the comments below on your GSOC proposal. I know that > you can't make further changes to the proposal, so I'm posting them here on

[jira] [Commented] (ISIS-736) For GSOC, - build a "real-life" app in some suitable domain, along with a semi-academic write-up of their learnings

2014-03-23 Thread Dileepa Jayakody (JIRA)
[ https://issues.apache.org/jira/browse/ISIS-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13944365#comment-13944365 ] Dileepa Jayakody commented on ISIS-736: --- Thanks Dan and Sunand for the det

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-21 Thread Dileepa Jayakody
:) Thanks, Dileepa On Fri, Mar 21, 2014 at 2:21 PM, Dileepa Jayakody wrote: > I have submitted a draft proposal to the google-melange system. > I still have to complete the implementation and timeline parts of it. > Will ping the dev list once I have completed them so you can

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-21 Thread Dileepa Jayakody
I have submitted a draft proposal to the google-melange system. I still have to complete the implementation and timeline parts of it. Will ping the dev list once I have completed them so you can give more feedback. Thanks, Dileepa On Fri, Mar 21, 2014 at 1:12 PM, Dileepa Jayakody wrote: >

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-21 Thread Dileepa Jayakody
soon. Google won't allow any late > submissions. > Thx > Dan > > > > On 20 March 2014 16:48, Dan Haywood wrote: > > > > > On 20 March 2014 10:15, Dileepa Jayakody >wrote: > > > >> > >> In the ReputationBox, another main c

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-20 Thread Dileepa Jayakody
ation will be greatly appreciated. Thanks, Dileepa On Thu, Mar 20, 2014 at 2:37 PM, Dan Haywood wrote: > On 20 March 2014 06:07, Dileepa Jayakody > wrote: > > > Hi Dan and All, > > > > I was reading Isis JDO documentation to get an idea of how to implement > the &

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-19 Thread Dileepa Jayakody
Isis to GAE and would like to seek your feedback on implementing my application as AppEngine compatible to deploy. Thanks, Dileepa [1] http://isis.apache.org/components/objectstores/jdo/deploying-on-the-google-app-engine.html On Thu, Mar 20, 2014 at 10:46 AM, Dileepa Jayakody < dile

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-19 Thread Dileepa Jayakody
Hi Dan, On Wed, Mar 19, 2014 at 2:32 PM, Dileepa Jayakody wrote: > Thanks Dan, I will take a look at it. I'm currently drafting a proposal, > will send to the list asap for comments. > > > On Wed, Mar 19, 2014 at 12:57 PM, Dan Haywood < > d...@haywood-associates.

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-19 Thread Dileepa Jayakody
hen the "real" > > context.io based impl can live externally up on github, as a third-party > > contribution. > > > > If there are any other commercial dependencies, we would also need to > have > > these abstracted away similarly. > > &g

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-18 Thread Dileepa Jayakody
Hi Dan, Thanks for your valuable input. Please see my comments inline. On Tue, Mar 18, 2014 at 2:03 PM, Dan Haywood wrote: > On 14 March 2014 11:09, Dileepa Jayakody > wrote: > > > > > My current idea is that it will follow below flow of operations. > > > > 1.

Re: OAuth2 support in Isis

2014-03-17 Thread Dileepa Jayakody
ith my application ReputationBox as the sample "real-life" application for the ISIS-736 GSOC project? Thanks, Dileepa On Mon, Mar 17, 2014 at 5:03 PM, Dan Haywood wrote: > On 17 March 2014 10:58, Dileepa Jayakody > wrote: > > > Hi All, > > > > Does Isis supp

OAuth2 support in Isis

2014-03-17 Thread Dileepa Jayakody
Hi All, Does Isis support OAuth2? In my application I require my users to authorize the webapp to connect to the user's mailbox(gmail). And I intend to use OAuth2. Does Isis authorization support OAuth2 consumer profile? Since Isis uses Apache Shiro as the security framework, I assume OAuth2 is i

Re: [jira] [Updated] (ISIS-736) For GSOC, - build a "real-life" app in some suitable domain, along with a semi-academic write-up of their learnings

2014-03-17 Thread Dileepa Jayakody
http://docs.jboss.org/drools/release/6.0.1.Final/drools-docs/html_single/index.html#d0e9394 > [5] https://issues.apache.org/jira/browse/ISIS-738 > [6] > http://www.datanucleus.org/products/accessplatform/datastores/hbase.html > > El 14/03/2014, a las 20:26, Dileepa Jayakody (JIRA) > es

[jira] [Updated] (ISIS-736) For GSOC, - build a "real-life" app in some suitable domain, along with a semi-academic write-up of their learnings

2014-03-14 Thread Dileepa Jayakody (JIRA)
[ https://issues.apache.org/jira/browse/ISIS-736?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dileepa Jayakody updated ISIS-736: -- Attachment: EmailReputationSystem_v2.png Continuing the discussion on the mailing thread

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-14 Thread Dileepa Jayakody
Hi Dan, I have attached the architecture diagram to the Jira. Suggestions, ideas are welcome. Regards, Dileepa On Sat, Mar 15, 2014 at 12:45 AM, Dan Haywood wrote: > On 14 March 2014 11:09, Dileepa Jayakody > wrote: > > > > > Please see the high-level architecture dia

Re: [GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-14 Thread Dileepa Jayakody
he users' meil > client. For example: how does the app get hold of these emails to assess > reputation; is it a batch import, real-time, something else; and how does > the Isis app then add in reputation scores later (does it interact with the > email server, perhaps). > > Th

[GSOC] Building a "real-life" app in a suitable domain using Isis framework

2014-03-14 Thread Dileepa Jayakody
Hi All, I'm Dileepa Jayakody a MSc research student from University of Moratuwa, Sri Lanka. I'm doing my research project on the topic : reputation assessment in emails. My project goal is to introduce reputation data as a attribute to emails, which could be used for various applicatio

[jira] [Comment Edited] (ISIS-736) For GSOC, - build a "real-life" app in some suitable domain, along with a semi-academic write-up of their learnings

2014-03-13 Thread Dileepa Jayakody (JIRA)
[ https://issues.apache.org/jira/browse/ISIS-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13934014#comment-13934014 ] Dileepa Jayakody edited comment on ISIS-736 at 3/13/14 8:3

[jira] [Commented] (ISIS-736) For GSOC, - build a "real-life" app in some suitable domain, along with a semi-academic write-up of their learnings

2014-03-13 Thread Dileepa Jayakody (JIRA)
[ https://issues.apache.org/jira/browse/ISIS-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13934014#comment-13934014 ] Dileepa Jayakody commented on ISIS-736: --- Hi All, I'm Dileepa Jayakody a MSc