[00:05:20] *** tsurdilo has joined #seam-dev [00:16:42] *** edburns is now known as edburns_away [00:23:14] *** lightguard_jp has joined #seam-dev [00:23:14] *** ChanServ sets mode: +o lightguard_jp [00:24:20] <lightguard_jp> lincolnthree1: ping [00:24:27] *** kevinpollet has quit IRC [00:25:58] <lincolnthree1> lightguard_jp: pong [00:26:17] <lightguard_jp> lincolnthree1: Have you seen anything like http://seamframework.org/Community/SeamTransactionInterceptorCouldNotFindTransactionInJboss7#comment173157 in your apps? [00:26:22] <lightguard_jp> clerum: Or you [00:26:58] <lincolnthree1> I've seen this: error=Transaction is required to perform this operation (either use a transaction or extended persistence context): javax.persistence.TransactionRequiredException: Transaction is required to perform this operation (either use a transaction or extended persistence context) [00:27:29] <lincolnthree1> TBH I am trying to figure out how to use Seam Persistence right now [00:27:33] <lincolnthree1> and failing miserably [00:27:35] <lincolnthree1> this is not well documented [00:27:50] <lincolnthree1> I can't get simple CRUD to work [00:28:28] <lincolnthree1> Yep, I just got that error as we speak [00:29:18] <lincolnthree1> lightguard_jp: [00:33:23] <lightguard_jp> Hm [00:35:17] <clerum> looking [00:36:06] <lincolnthree1> do we have any persistence examples? [00:36:27] <clerum> I'm using it quite a bit [00:36:40] <clerum> https://github.com/codylerum/crm [00:36:52] <lightguard_jp> confbuzz also uses it [00:37:14] <lightguard_jp> I'm looking at confbuzz right now and trying to get it updated to Beta4 [00:37:27] <lightguard_jp> Security removed a class I was using in a test [00:42:11] <lightguard_jp> Seam Persistence needs some love in the doc area [00:43:08] <lincolnthree1> Persistence works fine until I try to scope the produced Entitymanager [00:44:34] <clerum> lincolnthree1: shouldn't it have to be conversation scoped? [00:44:56] <lincolnthree1> where is your producer in that app? [00:45:16] <clerum> https://github.com/codylerum/crm/blob/develop/src/main/java/org/jboss/seam/examples/seamcrm/core/SeamCRMRepositoryProducer.java [00:45:46] <lincolnthree1> you have a qualifier on it? [00:45:56] <clerum> the first one is the seam persistence one [00:46:04] <clerum> so when I use it it is just [00:46:11] <clerum> @Inject EntityManager em [00:46:38] <lightguard_jp> Yes, scoping the EM is a beast. [00:46:47] <lightguard_jp> Conversation seems to be the only one which really works well. [00:47:12] <lincolnthree1> gotta head to volleyball [00:50:21] <lincolnthree1> it's basically impossible to re-use service classes [00:50:26] <lincolnthree1> with a scoped persistence context [00:51:15] <lincolnthree1> unless you pass the entitymanager around [00:51:18] <lincolnthree1> that might be a better solution [00:51:44] <lincolnthree1> but truly aggravating [00:57:38] <lincolnthree1> because if you use the service outside of JSF sometimes, conversationscoped will not work at all [00:57:48] <clerum> ah [01:01:35] <lincolnthree1> thank CDI for that little doosie [01:02:33] <Diablo-D3> YES [01:02:38] <Diablo-D3> WHAT LINCOLN SAYS IS TRUE [01:02:42] <Diablo-D3> AND IT MAKES ME ANGRY [01:03:05] <lincolnthree1> In fact, it might be better to just re-implement an entirely new conversation scope that DOES work outside of JSF [01:03:20] <Diablo-D3> lincolnthree1: I dunno [01:03:25] <Diablo-D3> I quit using Java. [01:03:30] <lincolnthree1> that too [01:03:31] <lincolnthree1> gotta run [01:03:32] <Diablo-D3> I honestly couldn't take it anymore [01:03:57] <lincolnthree1> JPA is what really sucks [01:04:06] <Diablo-D3> I swear, Im just going to go insane one day [01:04:09] <Diablo-D3> and make my own language [01:04:13] <Diablo-D3> and it will summon the meteors [01:13:46] *** alesj has quit IRC [01:14:37] *** sgilda has joined #seam-dev [01:27:46] *** gastaldi has joined #seam-dev [01:27:47] *** ChanServ sets mode: +v gastaldi [01:30:29] *** sannegrinovero has quit IRC [01:41:53] *** sgilda is now known as sgilda_afk [01:52:31] *** gastaldi has quit IRC [01:53:33] *** jamezp has quit IRC [01:56:07] *** jamezp_afk has joined #seam-dev [01:56:07] *** ChanServ sets mode: +v jamezp_afk [01:56:18] *** jamezp_afk is now known as jamezp [02:07:37] <lightguard_jp> Wow [02:07:49] <lightguard_jp> There's a reason why PicketLink IDM is still alpha... [02:10:32] <sbryzak> lightguard_jp: we had a meeting last night to discuss picketlink [02:10:39] <sbryzak> it's going to be going through some big changes [02:11:01] <sbryzak> you can see some of the discussion here: http://community.jboss.org/thread/173886?tstart=0 [02:11:53] <lightguard_jp> Okay, how do I create a group and add a user to it?? [02:12:07] <lightguard_jp> I even have the creation and the association in different transactions! [02:12:09] <lightguard_jp> Gr [02:12:23] <sbryzak> you create a group with PersistenceManager [02:12:30] <sbryzak> then have to associate it to a user with the RelationshipManager [02:12:35] <sbryzak> i agree, it's bad [02:16:33] <lightguard_jp> Yeah, I'm trying that [02:16:36] <lightguard_jp> I'll gist what I have [02:18:08] <lightguard_jp> sbryzak: https://gist.github.com/1321262 [02:19:48] <sbryzak> i think the group type is wrong [02:19:51] <sbryzak> it should be "GROUP" [02:19:54] <lightguard_jp> When I get down to the association it blows up in the createRelationship method on the JpaIdentityStore [02:19:57] *** aslak has quit IRC [02:20:15] <lightguard_jp> Where are those defined? [02:20:24] <sbryzak> it's a hard coded value [02:20:58] <lightguard_jp> wow [02:21:06] <lightguard_jp> in Security it PicketLink? [02:23:10] <sbryzak> it's a hard coded value in PicketLink [02:23:17] <sbryzak> the group type will probably be going away too [02:23:28] <sbryzak> Bolek mentioned that no-one was really using it [02:24:22] <lightguard_jp> Currently, it seems like I need it, otherwise it doesn't work. [02:25:04] <lightguard_jp> Okay, so I died in the lookupRelationshipType method on the JpaIdentityStore [02:25:57] *** bleathem has quit IRC [02:27:29] <sbryzak> what's the exception? [02:27:50] <lightguard_jp> No entity found for query. [02:28:07] <sbryzak> hmm, perhaps you need to create the relationship type record [02:28:44] <sbryzak> ah yes [02:29:05] <sbryzak> https://github.com/seam/security/blob/develop/examples/idmconsole/src/main/java/org/jboss/seam/security/examples/idmconsole/model/PopulateDatabase.java [02:29:14] <sbryzak> lines 81 - 87 [02:30:12] <lightguard_jp> I assume I can drop the relationship type entity and just add a field to the relationship entity for the type? [02:30:38] <sbryzak> i think that should work [02:38:14] *** tkimura has joined #seam-dev [02:44:11] <lightguard_jp> I'll try it [02:45:33] *** jamezp is now known as jamezp_afk [02:48:01] *** jamezp_afk is now known as jamezp [02:48:31] *** jamezp is now known as jamezp_afk [03:04:57] *** hannelita has joined #seam-dev [03:10:22] <lightguard_jp> sbryzak: found a bug, just have to track down where. A criteria query seems to be assuming the object type incorrectly for relationships [03:10:37] <sbryzak> hmm, let me know what you find [03:19:46] *** jamezp_afk is now known as jamezp [03:19:58] *** jamezp is now known as jamezp_afk [03:27:08] <clerum> lightguard_jp: with hibernate search? [03:28:27] <clerum> https://hibernate.onjira.com/browse/HSEARCH-937 [03:28:28] <jbossbot> jira [HSEARCH-937] Search fails when loading associcated entity with different ID type [Open (Unresolved) Bug, Major, Unassigned] https://hibernate.onjira.com/browse/HSEARCH-937 [03:28:47] <clerum> lightguard_jp: ^^ check that [03:34:19] *** akazakov has quit IRC [03:44:29] *** tsurdilo has quit IRC [04:14:43] <lightguard_jp> clerum: No, it's in Security [04:15:03] <lightguard_jp> No, not the same. [04:15:07] <lightguard_jp> Need to dig [04:15:13] <lightguard_jp> sbryzak: I'll get back to you with what I find [04:19:04] *** bleathem has joined #seam-dev [04:19:05] *** ChanServ sets mode: +v bleathem [04:22:07] <clerum> ah [04:29:38] *** hannelita has quit IRC [04:33:36] *** lightguard_jp has quit IRC [04:37:17] *** tkimura_ has joined #seam-dev [04:40:26] *** tkimura has quit IRC [04:47:52] *** jamezp_afk has quit IRC [04:54:27] <jbossbot> git [social] push develop f0bee39.. Antoine Sabot-Durand Remove deprecation on the type of service [04:54:27] <jbossbot> git [social] push develop 2fdb1a0.. Antoine Sabot-Durand RESOLVED - issue SEAMSOCIAL-24: webClient - closing connection of active... [04:54:29] <jbossbot> jira [SEAMSOCIAL-24] webClient - closing connection of active profile fails [Resolved (Done) Bug, Major, Antoine Sabot-Durand] https://issues.jboss.org/browse/SEAMSOCIAL-24 [04:54:29] <jbossbot> git [social] push develop URL: http://github.com/seam/social/compare/fd0ad44...2fdb1a0 [05:10:51] *** jamezp_afk has joined #seam-dev [05:10:52] *** ChanServ sets mode: +v jamezp_afk [05:11:11] *** jamezp_afk is now known as jamezp [05:11:29] *** jamezp is now known as jamezp_afk [05:33:11] <lincolnthree1> sbryzak: the picketlink guys scare me [06:27:55] *** lightguard_jp has joined #seam-dev [06:27:55] *** ChanServ sets mode: +o lightguard_jp [06:31:48] *** clerum has quit IRC [06:35:48] <lightguard_jp> sbryzak: ping [06:36:24] *** jamezp_afk has quit IRC [06:39:51] *** lincolnthree1 has left #seam-dev [06:50:01] *** jamezp has joined #seam-dev [06:50:01] *** ChanServ sets mode: +v jamezp [06:53:19] *** jamezp is now known as jamezp_afk [06:55:51] <lightguard_jp> sbryzak: SEAMSECURITY-123 [06:55:53] <jbossbot> jira [SEAMSECURITY-123] JpaIdentityStore findIdentityObject has hardcoded entity classes in the query [Open (Unresolved) Bug, Critical, Unassigned] https://issues.jboss.org/browse/SEAMSECURITY-123 [07:31:26] *** rruss has joined #seam-dev [07:31:29] *** rruss has quit IRC [07:42:04] <lightguard_jp> sbryzak: I tried to take a stab at it, but I'm too tired to think through it all correctly atm. [07:42:27] <lightguard_jp> sbryzak: I think as soon as you see it you'll know what to do. [08:03:47] *** jamezp_afk has quit IRC [08:04:02] *** jamezp has joined #seam-dev [08:04:02] *** ChanServ sets mode: +v jamezp [08:13:37] *** jamezp is now known as jamezp_afk [08:19:08] *** lightguard_jp has quit IRC [08:37:44] *** koentsje has joined #seam-dev [09:01:10] *** tremes has joined #seam-dev [09:20:00] *** epbernard has joined #seam-dev [09:20:00] *** epbernard is now known as emmanuel [09:21:58] *** oskutka has joined #seam-dev [09:46:11] *** Diablo-D3 has quit IRC [09:54:02] *** mgoldmann has joined #seam-dev [10:12:56] *** tkimura_ has quit IRC [10:33:37] *** koentsje has quit IRC [11:07:52] *** sgilda_afk has quit IRC [11:14:02] *** tkimura has joined #seam-dev [11:14:02] *** tkimura has joined #seam-dev [11:15:55] *** koentsje has joined #seam-dev [11:23:18] *** tkimura has quit IRC [11:23:40] *** amitev has quit IRC [11:24:02] *** amitev has joined #seam-dev [11:43:12] *** tremes has quit IRC [11:46:59] *** emmanuel has quit IRC [12:08:18] *** sannegrinovero has joined #seam-dev [12:09:36] *** epbernard has joined #seam-dev [12:09:36] *** epbernard is now known as emmanuel [12:32:51] *** alesj has joined #seam-dev [12:38:55] *** sannegrinovero has quit IRC [12:56:01] *** bleathem has quit IRC [13:12:27] *** bleathem has joined #seam-dev [13:12:27] *** ChanServ sets mode: +v bleathem [13:17:31] *** sgilda has joined #seam-dev [13:37:59] *** tremes has joined #seam-dev [13:42:28] *** emmanuel has quit IRC [13:47:25] *** epbernard has joined #seam-dev [13:47:25] *** epbernard is now known as emmanuel [14:13:35] *** emmanuel has quit IRC [14:14:27] *** epbernard has joined #seam-dev [14:14:27] *** epbernard is now known as emmanuel [14:15:39] *** edburns_away is now known as edburns [14:36:57] *** amitev has quit IRC [14:41:16] *** tremes has quit IRC [15:22:23] *** amitev has joined #seam-dev [15:22:38] *** jharting has joined #seam-dev [15:22:38] *** ChanServ sets mode: +v jharting [15:32:22] *** emmanuel has quit IRC [15:39:45] *** oranheim_ has joined #seam-dev [15:42:14] *** oranheim has quit IRC [15:42:14] *** oranheim_ is now known as oranheim [15:44:21] *** gabrielrodrigues has quit IRC [15:52:15] *** epbernard has joined #seam-dev [15:52:15] *** epbernard is now known as emmanuel [15:55:42] *** oranheim_ has joined #seam-dev [15:58:02] *** oranheim has quit IRC [15:58:02] *** oranheim_ is now known as oranheim [16:02:14] *** jose_freitas has joined #seam-dev [16:11:20] *** clerum has joined #seam-dev [16:11:20] *** ChanServ sets mode: +v clerum [16:24:27] *** pmuir has joined #seam-dev [16:24:28] *** pmuir has quit IRC [16:24:28] *** pmuir has joined #seam-dev [16:38:45] *** pmuir has quit IRC [16:39:03] *** pmuir has joined #seam-dev [16:39:03] *** pmuir has quit IRC [16:39:03] *** pmuir has joined #seam-dev [16:40:16] *** tsurdilo has joined #seam-dev [16:54:46] *** oranheim_ has joined #seam-dev [16:57:55] *** oranheim has quit IRC [16:57:56] *** oranheim_ is now known as oranheim [16:58:58] *** tsurdilo1 has joined #seam-dev [17:01:00] *** tsurdilo has quit IRC [17:01:08] *** oranheim has quit IRC [17:19:17] *** tsurdilo has joined #seam-dev [17:20:50] *** sannegrinovero has joined #seam-dev [17:21:56] *** hannelita has joined #seam-dev [17:38:36] *** jamezp_afk is now known as jamezp [17:43:40] *** jamezp has quit IRC [17:44:16] *** jamezp has joined #seam-dev [17:44:28] *** ChanServ sets mode: +v jamezp [17:45:45] <tsurdilo> hi all, has anyone attempted to run a seam2 app on openshift express? [17:46:36] <tsurdilo> i am trying and dont see seam2 getting initialized at all [17:46:44] <tsurdilo> maybe there is some setting or something im missing [17:51:13] <jharting> tsurdilo: can you run the app on AS7 locally? [17:51:21] <tsurdilo> yap [17:51:46] <tsurdilo> i get this very ugly exception: [17:51:55] <tsurdilo> An exception or error occurred in the [17:51:55] <tsurdilo> container during the request processing: [17:51:55] <tsurdilo> java.lang.IllegalArgumentException: n must be positive [17:51:55] [17:51:55] [17:51:55] *** tsurdilo has quit IRC [17:52:30] *** tsurdilo has joined #seam-dev [17:56:59] *** akazakov has joined #seam-dev [17:59:16] *** sannegrinovero has quit IRC [18:06:26] *** koentsje has quit IRC [18:08:18] *** koentsje has joined #seam-dev [18:13:09] *** koentsje has quit IRC [18:19:52] *** rruss has joined #seam-dev [18:29:58] *** hannelita has quit IRC [18:38:54] *** emmanuel has quit IRC [18:41:02] *** koentsje has joined #seam-dev [18:51:49] *** koentsje has quit IRC [19:24:14] *** daniel_hinojosa1 has joined #seam-dev [19:25:07] *** daniel_hinojosa1 has quit IRC [19:40:37] *** alesj has quit IRC [19:48:13] *** edburns is now known as edburns_away [19:53:44] *** alesj has joined #seam-dev [20:00:09] *** lightguard_jp has joined #seam-dev [20:00:10] *** ChanServ sets mode: +o lightguard_jp [20:05:57] *** Diablo-D3 has joined #seam-dev [20:20:57] <lightguard_jp> Wow, some of the things that get post to the core [20:22:27] <lightguard_jp> bleathem: Any thoughts on http://seamframework.org/Community/AroundInvokeTypeSafe ? [20:22:41] <lightguard_jp> Seems like something in his code because EL does all the type conversion anyway. [20:22:54] *** daniel_hinojosa has joined #seam-dev [20:32:07] <bleathem> what subject line in the core should I be looking for lightguard_jp? ;) [20:32:55] <bleathem> Re: AroundInvokeTypeSafe, jsp page? [20:33:06] <lightguard_jp> jsf I think [20:33:12] <lightguard_jp> Should be facelets based [20:33:59] <lightguard_jp> About Jobs and Stallman [20:36:01] *** clerum has quit IRC [20:43:08] <lightguard_jp> Well, I've got my boys right now, can't work with them crawling all over me. I'll be back later today. [20:43:16] *** mgoldmann has quit IRC [20:44:09] *** jamezp has quit IRC [20:45:19] *** jamezp has joined #seam-dev [20:45:19] *** ChanServ sets mode: +v jamezp [20:46:50] *** lightguard_jp has quit IRC [20:52:21] *** pmuir has quit IRC [21:17:02] *** jamezp is now known as jamezp_afk [21:17:47] *** jamezp_afk has quit IRC [21:19:19] *** jamezp_afk has joined #seam-dev [21:19:34] *** ChanServ sets mode: +v jamezp_afk [21:43:30] *** rruss has quit IRC [21:45:23] *** jamezp_afk is now known as jamezp [22:19:06] *** edburns_away is now known as edburns [22:35:09] *** jose_freitas has quit IRC [22:45:11] *** sgilda is now known as sgilda_afk [22:58:37] <edburns> I'm about to commit the fix for http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-763 which will make all artifacts that are created by JSF fully CDI injectable. [22:58:56] <edburns> When the tests complete, I'll commit it. [22:59:16] <edburns> Also, I have re-activated nightly builds so you'll be able to try it out right away! [23:09:34] <jbossbot> git [core] push master bc19ff4.. Lincoln Baxter, III Cleaned up event bus. FORGE-159 [23:09:35] <jbossbot> jira [FORGE-159] Plugins plugin should have a command to create a new blank forge test-harness class [Closed (Done) Enhancement, Major, Lincoln Baxter III] https://issues.jboss.org/browse/FORGE-159 [23:09:36] <jbossbot> git [core] push master 156c81d.. Lincoln Baxter, III FORGE-272 [23:09:37] <jbossbot> jira [FORGE-272] NPE when runing "plugins new-plugin" [Closed (Done) Feature Request, Major, Lincoln Baxter III] https://issues.jboss.org/browse/FORGE-272 [23:09:37] <jbossbot> git [core] push master URL: http://github.com/forge/core/compare/6ea16ed...156c81d [23:22:29] <jbossbot> git [core] push master 293e872.. Lincoln Baxter, III FORGE-207 [23:22:30] <jbossbot> jira [FORGE-207] Create a "Test" plugin to execute test build/test step [Closed (Done) Feature Request, Major, Lincoln Baxter III] https://issues.jboss.org/browse/FORGE-207 [23:22:30] <jbossbot> git [core] push master URL: http://github.com/forge/core/compare/156c81d...293e872 [23:28:50] *** edburns is now known as edburns_away [23:53:44] *** alesj has quit IRC [23:57:01] *** lightguard_jp has joined #seam-dev [23:57:01] *** ChanServ sets mode: +o lightguard_jp [23:58:03] *** alesj has joined #seam-dev