[01:51:40 EDT(-0400)] * Guest10600 (n=root@222.124.87.49) has joined ##uportal
[08:46:15 EDT(-0400)] * anastasiac (n=team@142.150.154.160) has joined ##uportal
[09:03:28 EDT(-0400)] * michelled (n=michelle@142.150.154.197) has joined ##uportal
[09:27:31 EDT(-0400)] * EricDalquist (n=dalquist@bohemia.doit.wisc.edu) has joined ##uportal
[09:27:47 EDT(-0400)] * athena7 (n=athena7@99.146.184.206) has joined ##uportal
[09:29:47 EDT(-0400)] <EricDalquist> uhoh ... laptop harddrive is making funny sounds this morning :/
[09:32:35 EDT(-0400)] <athena7> oh no
[09:33:00 EDT(-0400)] <athena7> i think something bad happened while i was gone - came home to a dead dsl modem and dvr
[09:33:10 EDT(-0400)] <EricDalquist> lightning?
[09:33:28 EDT(-0400)] <athena7> probably
[09:33:49 EDT(-0400)] <athena7> hadn't finished setting up the new place yet and the surge protectors were still in boxes
[09:33:55 EDT(-0400)] <EricDalquist> :/
[09:34:56 EDT(-0400)] <athena7> well, the dsl guys just showed up and gave us a replacement
[09:35:00 EDT(-0400)] <athena7> so now at least i have internet
[09:35:04 EDT(-0400)] <EricDalquist> that's good
[09:35:12 EDT(-0400)] <athena7> working from home with no internet isn't quite so effective
[09:35:17 EDT(-0400)] <athena7> yes, i appreciated it
[09:36:36 EDT(-0400)] <athena7> i was gone all last week - anything interesting going on?
[09:36:45 EDT(-0400)] <EricDalquist> not really
[09:37:10 EDT(-0400)] <EricDalquist> I have some stuff to write up and email around today about adding user lookup features to person directory
[09:37:19 EDT(-0400)] <EricDalquist> it involves a change in the APIs and configuration though
[09:37:26 EDT(-0400)] <EricDalquist> so I want to get some feedback
[09:37:32 EDT(-0400)] <athena7> oh cool
[09:37:44 EDT(-0400)] <EricDalquist> it adds an IPerson interface that is returned
[09:37:51 EDT(-0400)] <EricDalquist> and you could search for multiple entries
[09:38:00 EDT(-0400)] <EricDalquist> and get attributes back from the searches
[09:38:04 EDT(-0400)] <athena7> oh interesting
[09:38:09 EDT(-0400)] <EricDalquist> same aggreation/multi-source features as before
[09:38:16 EDT(-0400)] <athena7> is this related to the switcher portlets?
[09:38:19 EDT(-0400)] <EricDalquist> yeah
[09:38:27 EDT(-0400)] <EricDalquist> we had stand-alone person search API
[09:41:19 EDT(-0400)] <athena7> sounds good
[09:44:09 EDT(-0400)] * athena7_ (n=athena7@76.252.203.132) has joined ##uportal
[10:01:36 EDT(-0400)] * colinclark (n=colin@142.150.154.101) has joined ##uportal
[10:16:34 EDT(-0400)] * bulloche (n=bulloche@134.250.4.77) has joined ##uportal
[10:21:08 EDT(-0400)] <athena7_> EricDalquist: you have a minute for some jpa questions?
[10:21:15 EDT(-0400)] <EricDalquist> sure
[10:21:44 EDT(-0400)] <athena7_> i'm trying to set up some stuff and had used the portlet code as an example
[10:22:07 EDT(-0400)] <athena7_> it looks like the entityManager isn't getting injected into the dao bean
[10:22:21 EDT(-0400)] <athena7_> is that supposed to happen automagically through annotations, or did i miss a step somewhere?
[10:22:46 EDT(-0400)] <EricDalquist> annotations and a spring bean to process those annotations
[10:23:18 EDT(-0400)] <EricDalquist> <tx:annotation-driven transaction-manager="transactionManager" />
[10:23:28 EDT(-0400)] <EricDalquist> that is in persistenceContext.xml
[10:24:52 EDT(-0400)] <athena7_> ah ok, i think i might have missed that part
[10:24:57 EDT(-0400)] <athena7_> i don't really need to use transactions
[10:25:04 EDT(-0400)] <athena7_> do i need to configure them anyway?
[10:26:04 EDT(-0400)] <athena7_> hm, guess i do have that line in there
[10:26:14 EDT(-0400)] <EricDalquist> yeah
[10:26:27 EDT(-0400)] <EricDalquist> you need a transaction manager to deal with flushing the context
[10:26:32 EDT(-0400)] <EricDalquist> and ensuring things get committed
[10:26:42 EDT(-0400)] <athena7_> ok
[10:26:46 EDT(-0400)] <athena7_> this is read-only
[10:26:50 EDT(-0400)] <EricDalquist> oh and you need <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" lazy-init="false">
[10:26:50 EDT(-0400)] <EricDalquist> <property name="defaultPersistenceUnitName" value="uPortalPersistence" />
[10:26:50 EDT(-0400)] <EricDalquist> </bean>
[10:26:55 EDT(-0400)] <EricDalquist> sorry
[10:27:01 EDT(-0400)] <athena7_> ah! that's the piece i missed
[10:27:02 EDT(-0400)] <athena7_> thanks
[10:27:08 EDT(-0400)] <EricDalquist> that first one is for dealing the the @Transactional annotations
[10:27:19 EDT(-0400)] <EricDalquist> the second one is for the @PersistenceContext
[10:27:22 EDT(-0400)] <athena7_> gotcha
[10:27:23 EDT(-0400)] <athena7_> thanks
[10:27:29 EDT(-0400)] <EricDalquist> you don't need the defaultPersistenceUnitName though
[10:27:39 EDT(-0400)] <athena7_> oh ok
[10:27:39 EDT(-0400)] <EricDalquist> unless you have multiple persistence contexts
[10:27:51 EDT(-0400)] <athena7_> yeah, i figured that must be how you dealt w/ multiple contexts
[10:27:56 EDT(-0400)] <EricDalquist> yup
[10:28:12 EDT(-0400)] <athena7_> i may leave that part since there's a good chance we may need more than one eventually
[10:28:22 EDT(-0400)] <athena7_> calendar portlet could talk to a lot of different systems
[10:39:56 EDT(-0400)] <athena7_> odd, now it's claiming No bean named 'entityManager' is defined
[10:41:03 EDT(-0400)] <athena7_> oh
[10:41:06 EDT(-0400)] <athena7_> i see, never mind
[11:11:45 EDT(-0400)] * dstn (n=dstn@unaffiliated/dstn) has joined ##uportal
[11:39:55 EDT(-0400)] * EricDalquist (n=dalquist@bohemia.doit.wisc.edu) has joined ##uportal
[11:40:28 EDT(-0400)] * EiNZTEiN (n=einztein@205.241.143.3) has joined ##uportal
[11:51:49 EDT(-0400)] * awills (n=awills@ip72-201-156-173.ph.ph.cox.net) has joined ##uportal
[11:53:57 EDT(-0400)] * holdorph (n=holdorph@wsip-98-174-242-39.ph.ph.cox.net) has joined ##uportal
[12:17:57 EDT(-0400)] <EricDalquist> http://erics-notes.blogspot.com/2008/07/unit-testing-spring-ldap-code-with.html
[12:45:28 EDT(-0400)] * agherna (n=agherna@ras68.admin.uillinois.edu) has joined ##uportal
[12:50:25 EDT(-0400)] <awills> cool eric
[13:05:51 EDT(-0400)] <athena7_> oh nice
[13:15:48 EDT(-0400)] * colinclark (n=colin@142.150.154.101) has joined ##uportal
[13:31:18 EDT(-0400)] <awills> hey folks... wrapping up the LAYOUT_CACHE for 3.1... here's what I have for default settings in ehcache.xml: http://uportal.pastebin.com/m77b4f197
[13:31:27 EDT(-0400)] <awills> anyone want to hime in and tweek this?
[13:31:32 EDT(-0400)] <awills> chime*
[13:32:42 EDT(-0400)] <EricDalquist> will after done with this phone meeting
[13:33:00 EDT(-0400)] <awills> np, writting up a jira atm
[14:01:21 EDT(-0400)] <EricDalquist> awills: looks good
[14:01:32 EDT(-0400)] <EricDalquist> were you able to include the profile id in the cache key?
[14:01:51 EDT(-0400)] <EricDalquist> ah yes
[14:02:03 EDT(-0400)] <EricDalquist> just got to your email
[14:03:24 EDT(-0400)] <awills> yeah, exactly
[14:03:57 EDT(-0400)] <awills> i used the layoutId... 2 profiles can (i suppose) have the same layout, and it would be identical from DLM's perspective i think
[14:04:27 EDT(-0400)] <EricDalquist> great
[14:04:34 EDT(-0400)] <EricDalquist> just replied to your email
[14:04:49 EDT(-0400)] <awills> cool
[14:11:37 EDT(-0400)] <awills> EricDalquist do you want to tweek the ehcache settings before i check in?
[14:11:53 EDT(-0400)] <EricDalquist> nope, those look good too
[14:12:09 EDT(-0400)] <awills> great, good to go
[14:12:15 EDT(-0400)] <EricDalquist> sounds good
[14:24:43 EDT(-0400)] * anastasiac (n=team@142.150.154.160) has joined ##uportal
[16:07:49 EDT(-0400)] * michelled (n=michelle@142.150.154.197) has left ##uportal
[16:55:28 EDT(-0400)] * colinclark (n=colin@142.150.154.101) has joined ##uportal
General
Content
Integrations