RE: object based security (owner)

2014-03-18 Thread Ken in Nashua
Thanks Kalle, thats the answer I was seeking. Which persistence Service wold in order to ORM o MySQL ? Does that JPA construct do it itself somehow like javabeans or can I use the existing hibernate persistence service that comes with your suite ? Thanks for the solution, appreciate that. Ken

object based security (owner)

2014-03-14 Thread Ken in Nashua
Hi Folks, I want to create a web site data model whereby... whatever a user creates... they own. And when they come back to the website to operate again... they will see only what they own. Its not as much as page based security as it is object based security... as in model object. Are there

How to make login to database virtual mutually exclusive per user

2013-10-23 Thread Ken in Nashua
is a tech sheet on the dos and dont's about this and ramifications of cluster safe too. Thanks for any tips, best practices or current trends on this topic. I hope this isn't the wrong forum. If it is I could use a friendly push to the proper one... Thank you for your kindness Ken

How to make login to database virtual mutually exclusive per user

2013-10-23 Thread Ken in Nashua
ramifications of cluster safe too. Thanks for any tips, best practices or current trends on this topic. I hope this isnt the wrong forum. If it is I could use a friendly push to the proper one... - cheers Ken

RE: npe on simple type usage

2013-05-29 Thread Ken in Nashua
etA(4);kstats.setGp(4); kstats.setPts(kstats.getA()+kstats.getG()); kstats.setPpa(kstats.getPts() > 0 ? kstats.getGp() / kstats.getPts() : 0); kstats.setPlayer(ken); PlayerStats dstats = statsb.build(); dstats.setLeague(ELeague.A); dstats.s

RE: npe on simple type usage

2013-05-29 Thread Ken in Nashua
I use these types to get padding and comfort. It doesnt make sense to me. Sorry to keep posting. Just trying to click and go. What could be causing an NPE? @Entity @ClassDescriptor(hasCyclicRelationships = true) @BeanModels( { @BeanModel(pageType = PageType.LIST, include = "player, gp, g

RE: npe on simple type usage

2013-05-29 Thread Ken in Nashua
Caused by: java.lang.NullPointerException at org.tynamo.examples.pphl.model.PlayerStats.getPts(PlayerStats.java:137) at org.tynamo.examples.pphl.model.PlayerStats.getPpa(PlayerStats.java:125) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMetho

npe on simple type usage

2013-05-29 Thread Ken in Nashua
Folks, I keep getting NPE on simple calculations. Is there something here that tapestry doesnt like ? public Float getPpa() { Float result = new Float(getPts() > 0 ? getGp() / getPts() : 0); return result; } @PropertyDescriptor(nonVisual = false) public Float get

RE: property bindings

2013-05-28 Thread Ken in Nashua
alright... i hate doing null checks... because if you get into the habit of it... you never know if your actually writing a legit piece of code So I did it anyway public GridDataSource getSource() { if (collection != null ) return new CollectionGridDataSource(collection

property bindings

2013-05-28 Thread Ken in Nashua
Hi Folks, I am tearing thru the docs and mail list searching for "when do properties bind" tapestry No luck yet. But I will continue. I have two scenarios of bindings. Simple Enum static Simple Enum dynamic queried out of my database using hibernate I am setting up a query form/page kinda

RE: query a collection for a page

2013-05-28 Thread Ken in Nashua
oops... I meant to say year, league, season are all null at the time of the query in getSource()

RE: query a collection for a page

2013-05-28 Thread Ken in Nashua
Well my code is based on the hope that my properties year, league, season will bind in time in order to perform a successful query. Am I performing the query in the wrong place?

Re: 5.4-alpha-4 preview release

2013-05-28 Thread Ken in Nashua
nice... and thanks... I will see if I can run with it

query a collection for a page

2013-05-28 Thread Ken in Nashua
Hi Folks, I have a page that renders a collection in a grid. A hibernate collection... @Persist @Property private Collection collection; @SetupRender public void setupRender() { beanType = PlayerStats.class; collection = playerStats = new ArrayList(

RE: beanmodel ques

2013-05-28 Thread Ken in Nashua
Sorry folks... if I got this @Entity @ClassDescriptor(hasCyclicRelationships = true) @BeanModels( { @BeanModel(pageType = PageType.LIST, include = "player, gp, g, a, pts", exclude="") }) public class PlayerStats implements Cloneable, Serializable { private static final Log l

RE: beanmodel ques

2013-05-28 Thread Ken in Nashua
Maybe I should be doing the bean model on PlayerStats public class PlayerStats implements Cloneable, Serializable { private static final Log log = LogFactory.getLog(PlayerStats.class); private Integer id = null; private Player player = null; ...can I refer to the player from there ?

RE: beanmodel ques

2013-05-28 Thread Ken in Nashua
Players and stats are keyed by Season.class so there could be at any given time one Player instance and one PlayerStats instance to deal with. Its not immediately apparent to me how to combine properties from both classes into the grid bveanmodel

beanmodel ques

2013-05-28 Thread Ken in Nashua
myModel.get("lastName").label("Surname"); How do I get the stats into the bean model? They are of a different class PlayerStat.class I want to include both player info and player stats in the same bean model. Any tips are appreciated. Ken

RE: HibernateSessionSource - error - thx for any assistance

2013-05-27 Thread Ken in Nashua
strange... I can run fine on eclipse in a reverted source code branch... but if I deploy love... it quits with the hibernate session creation failure Seems I need to wait for the release to deploy live again ouch

Re: Can tapestry run on Android

2013-05-27 Thread Ken in Nashua
http://powerplayhockey.noip.us:9011/pphl/home my tapestry app runs fine on my droid III kinda cramped though

RE: how to inject an environment variable

2013-05-27 Thread Ken in Nashua
Thanks Dmitry, I am able to keep developing. I reverted back to hibernate 3. And making more progress. I stepped too fast into the hibernate revisions and got bit. Appreciate the help. Its a great forum to share and I hope to give back for others when I see too. - cheers

how to inject an environment variable

2013-05-26 Thread Ken in Nashua
Hi Folks, Is there a way to inject an environment variable into my page somehow ? I would like to automate production mode to anchor off of a OS env var. been searching for this without luck Thanks for any tips. Ken

RE: HibernateSessionSource - error - thx for any assistance

2013-05-25 Thread Ken in Nashua
Thank You Boris, Any time frame ? I am hard for feedback. Already caught. Burned out from trying to back tread. Wish I knew of it sooner. But not sure if it would have helped me anyway. I will be happy when it happens. Thanks for any info

RE: HibernateSessionSource - error - thx for any assistance

2013-05-25 Thread Ken in Nashua
Here is my dependency tree tapestry-hibernate I think might be tripping up my whole project by anchoring to 3.X hibernate as shown here [INFO] | +- org.apache.tapestry:tapestry-hibernate:jar:5.3.7:compile [INFO] | | \- org.apache.tapestry:tapestry-hibernate-core:jar:5.3.7:compile [INFO] | |

RE: HibernateSessionSource - error - thx for any assistance

2013-05-25 Thread Ken in Nashua
well it didnt does anyone know a way out of this hole ? 2013-05-25 17:29:18.142:WARN:oejw.WebAppContext:Failed startup of context o.m.j.p.JettyWebAppContext{/,file:/C:/Prototype/Mavenized/Product/kwc/pphl/src/main/webapp/},file:/C:/Prototype/Mavenized/Product/kwc/pphl/src/main/webapp/ java.lang.

RE: HibernateSessionSource - error - thx for any assistance

2013-05-25 Thread Ken in Nashua
Hi Folks, I determined this guy org.apache.tapestry tapestry-hibernate ${tapestry-release-version} provided org.hibernate hibernate-commons-annotations

RE: best way to integrate a page or component to keep modular

2013-05-25 Thread Ken in Nashua
Well it looks like... if I get to it... I will write a MyShineyNewComponent to do the job. right now I have some jar file hidden deep in my build somehow dragging in an early version of hibernate and taking me out cold.

RE: HibernateSessionSource - error - thx for any assistance

2013-05-25 Thread Ken in Nashua
Sorry folks, I think its fair that this is the problem. http://stackoverflow.com/questions/8799121/java-lang-nosuchmethoderror-org-hibernate-sessionfactory-opensessionlorg-hibe But I still have no solution to the framework am using.

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
doing it like that. Dmitry's suggestion to use blocks to compose all the pages by referential connecting worked. It does reduce code bloat. Can I do anything to make it better ? Thanks Ken

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
setupRender gets invoked (ever since I added public modifier)... but not until I clock GO for a submit event and even after that I lose context of the whole JQuery tab... and my page RosterQuery comes into Home.tml and blows away the whole context of the JQueryTab only showing the RosterQuery p

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
I noticed that my setupRender didnt have public @SetupRender public void setupRender() { But after adding public ... it made no difference. Still cannot get setupRender to invoke. Thanks for any tips. Ken

RE: best way to integrate a page or component to keep modular

2013-05-21 Thread Ken in Nashua
Thanks Dimitri, Exactly... you hit the nail right on the head. I dont think i should have to write a component for every tab on a tab control just to reduce code bloat. Does anyone disagree with Dimitri ? If so i would like to hear it. There is no religion here... just common sense. : )

RE: help constructing a page activation context

2013-05-21 Thread Ken in Nashua
Thanks Dimitri : ) I didnt think I physically had to make the match happen in code. I thought the formal parameter spec was optional. I will give that a shot. So it seems signature counts. Thanks a bunch !!!

RE: best way to integrate a page or component to keep modular

2013-05-20 Thread Ken in Nashua
cant I use the ?

RE: best way to integrate a page or component to keep modular

2013-05-20 Thread Ken in Nashua
ok good answers guys... thanks... I cant say I am happy about it. I have to write a component just to embed a page ? Shouldn't there be a generic tapestry component to already do this ? ░▒█▓░ ░░░▓██▒░░ ░▒

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
tHANKS gEOFF... bUT it tell sme I have a serious problem onmy hands the output is not matching the input I dont know what to do I have seen this months ago tryign to create CRUD pages. Maybe it has to do with the routing features of tynamo? I dont know... Here is the routing feature @At("/{2

Re: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
Thanks Thiago... The usage of THIS... is because I am operating exclusively out of RosterQuery.JAVA and RosterQuery.tml This module renders ... = | criteria form GO | = | table| = I select my criteria and hit GO. The

RE: best way to integrate a page or component to keep modular

2013-05-20 Thread Ken in Nashua
you might be thinking I am inside my layout.tml... or my home.tml... almost... the case... My block is within my home.tml... which is already being laid thru to layout.tml and is used in layout.tml my issue is just a surrogate tab block inside my home.tml all I want to do is embed the renderi

Re: best way to integrate a page or component to keep modular

2013-05-20 Thread Ken in Nashua
Guys, I stillk dont get it though... if I have a block like How do I get a page rendered inside this block? I mean I have a page called RosterQuery.tml RosterQuery.java there is How do i put this together... I still dont know how to reference my page into the above block so it will em

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
This seems to help me stay on the same page... /* @OnEvent(EventConstants.ACTIVATE) Object onActivate(Class clazz) { if (clazz == null) return Utils.new404(messages); this.beanType = clazz; return null; } */ @OnEvent(EventConstants.PASSIVATE)

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
I tried the context specified below but clazz during activation always comes in as null. is this a tapestry bug ? @OnEvent(EventConstants.ACTIVATE) Object onActivate(Class clazz) { if (clazz == null) return Utils.new404(messages); this.beanType = clazz;

help constructing a page activation context

2013-05-20 Thread Ken in Nashua
t. I wuold like to return to the same page http://localhost:8080/pphl/rosterquery but when I return this from my submit it doesnt work. any ideas ? Thank You Ken @OnEvent(EventConstants.PASSIVATE) Object[] passivate() { return new Object[] { beanType }; }

RE: trying to avoid code bloat

2013-05-20 Thread Ken in Nashua
Thanks Joakim... I noticed that. I didnt believe the error... but its good to have a confirmation. I will try it again in that pages dir.

RE: Re : is openJDK compatible with Tapestry 5?

2013-05-19 Thread Ken in Nashua
Sorry Angela... for the dyslexic answer. i meant to say... yes your code should run as platform safe. Ken

trying to avoid code bloat

2013-05-19 Thread Ken in Nashua
Hi Folks, Can i construct an abstract page and inject a bunch of services and then have derived instances extend from that ? I tried it and seeing some weird class format errors. I did it with my model entities. trying to do it with pages and injectables. public abstract class AbstractPage im

Re : is openJDK compatible with Tapestry 5?

2013-05-19 Thread Ken in Nashua
Hi Angela, Off the top of my head form looking at your specs... I would guess to say based on my experience with java which dates back to 1998... no. 64bit should accommodate 32bit apps forward revs should accommodate previous revs. byte codes that is I say go for it Funny when I think ab

RE: best way to integrate a page or component to keep modular

2013-05-19 Thread Ken in Nashua
For instance... given this block of code.. add INFORMATION description here ROSTERS please select a team

best way to integrate a page or component to keep modular

2013-05-19 Thread Ken in Nashua
s together but still unsure if its the best way or not. I prefer to keep code modularized as much as possible. Thanks for your assistance. Ken

RE: how to use HibernateEntityValueEncoder

2013-05-18 Thread Ken in Nashua
= classPropertyAdapter.getPropertyAdapter(labelProperty); final ValueEncoder encoder = this.valueEncoderSource.getValueEncoder(propertyAdapter.getType()); propertyAdapter is not null anymore... and so I am able to get my encoder successfully now. Thanks a bunch... - ciao KEN public

RE: how to use HibernateEntityValueEncoder

2013-05-18 Thread Ken in Nashua
framework should consider using toString as the default for objects populating and contained options by default. I will let you know the result. Have a good day friend Ken

RE: how to use HibernateEntityValueEncoder

2013-05-16 Thread Ken in Nashua
So it sounds like... I need to implement an auxillary property called getDisplayableName/setDisplayableName in order for this to make it into the options construct's. for EVERY class I intend to populate into any select. toString is the default displayable for any object i vote for that to b

RE: Re : Unknown entity and SessionFactory null

2013-05-16 Thread Ken in Nashua
Hi Angela, Looks liek you didnt specify any entities in your hibernate cfg mapping file. If you model an entity under your model/entity package, yes you need to tell your AppModule.JAVA about that directory... But you also need to tell hibernate about those entities. We do this by specifying t

Re : Unknown entity and SessionFactory null

2013-05-16 Thread Ken in Nashua
well its trying to configure from hibernate.cfg.xml did you spell it out properly in the config file ?

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
For this stack trace... it is likely build mania...repo corruption..and unstable source so I am backing down to try and find something I can work with. - cheers Thanks

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
There is no talking. If I create a jira I am met with contempt. And they got some dig about me in the past being a committer...hastily checking in code potentially running away with parts of the effort so they cannibalized me. But please dont think i am being bitter. I could care less. I am just

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
Do this look like normal build feedback? c:\Prototype\Mavenized\Product\tynamo\trunk\codehaus-unity-skin>call mvn clean install -Dmaven.test.skip=true -DdownloadJavadocs=true -DdownloadSources=true 2>&1 | te e ..\build-codehaus-unity-skin.log [INFO] Scanning for projects... Downloading: htt

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
Ok I am going to try and keep the code base and build against rev's that my framework providers are currently released and buolding against. thats why I asked this question... because my wife said... 'why dont you fix it yourself'... and seeing I ate and breathed HibernateDescriptorDecorator.JAV

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
Its 5.3.7 I am backing down my code base to released versions and see what that buys me. previous bugs. Maybe this one will come back when I get new checkins? right now I am in a holding pattern. ciao

RE: how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
Thanks Thiago... my head is kinda spinnin... I been building and running and limping... you have seen some of the bugs I get. I can't get a position on the code base framework I am building off of. The head rev is unstable. There are outstanding bugs and issues... internal ones preventing funda

RE: how to use HibernateEntityValueEncoder

2013-05-15 Thread Ken in Nashua
Thanks Joakim... for trying I tried to get a clean head rev build off my framework providers but its never had a clean head rev build ever (months and years) and I have been very quiet about it limping along waiting for pristine code. They seem to be under the impression that everything just wo

how to troubleshoot this bug

2013-05-15 Thread Ken in Nashua
Folks, I attempted to upgrade to the framework I been using latest and greatest... to try and overcome some bugs that I havent resolved. Thinking it is a stale code drift runtime error... So I replenished a fresh local repo upgraded to latest and greatest framework and when I run my webapp I g

RE: how to use HibernateEntityValueEncoder

2013-05-14 Thread Ken in Nashua
Thanks Thiago... trust me I would send a console trace if I got one. Maybe my logger isnt tracing those packages in tapestry ? The NPE occurs inside (well i sent the browser trace)... org.tynamo.examples.pphl.pages.Query)org.apache.tapestry5.ioc.internal.util.TapestryExceptionjava.lang.NullPoi

RE: how to use HibernateEntityValueEncoder

2013-05-14 Thread Ken in Nashua
Hi Jens, I posted the pojo bean Year.java I really rely on the toString() for most of my entities. I wouldnt think of complicating any of my getters with dashes or underscores let alone complicate a primary keye method. This one is fairly obvious. I know I have some environment concerns and n

RE: how to use HibernateEntityValueEncoder

2013-05-14 Thread Ken in Nashua
This guy is the culprit... tap-5.3.6 I believe it needs to depend on a default toString() is it fails to find a labelProperty. I need a workaround folks... so waiting on your best. thanks KEN @SuppressWarnings("unchecked") public SelectModel create(final List objects, fi

RE: how to use HibernateEntityValueEncoder

2013-05-14 Thread Ken in Nashua
Ok I am stepping thru the tapestry code during the create call... This is interesting... UnClaimedFieldWorker.JAVA public Object get(Object instance, InstanceContext context) { return fieldValue.get(fieldDefaultValue); } fieldDefaultvalue == null no npe as of

RE: how to use HibernateEntityValueEncoder

2013-05-14 Thread Ken in Nashua
Hi Guys, really sorry about my lapse here in providing the right info and I kow it must be frustrating. I played hockey last night. So i got pre-empted. Ok I am back on the tarp. I will try to get the stack trace for you... but none is being produced in the console... and its an NPE ? I am wo

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
its obviously happening on the valueencoder final PropertyAdapter propertyAdapter = classPropertyAdapter.getPropertyAdapter(labelProperty);5455final ValueEncoder encoder = this.valueEncoderSource.getValueEncoder(propertyAdapter.getType());56 I changed the property metho

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Thanks Jens... I believe I posted the Year.class for Thiago the primary keye is just ID Is this a bug ? I would like to get into the create routine for the factory but dont know how

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Ooops... this is the code I am exercising... @Persist @Property private EnumValueEncoder yearValueEncoder; @Inject @Property private TypeCoercer typeCoercer; @Inject private SelectModelFactory selectModelFactory; @Property private SelectModel yearSelectM

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Thanks Jens... I just stepped thru debugger... @SetupRender void setupRender() { grid.reset(); years = new ArrayList(TynamoUTIL.loadCollection(hibernatePersistenceService, Year.class)); yearValueEncoder = new EnumValueEncoder(typeCoercer, Year.class); t

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Hi Thiago, Here is the console... after I induce the NPE. 2013-05-13 16:11:14.622:INFO:oejs.Server:jetty-7.6.0.v20120127 2013-05-13 16:11:22.970:INFO:oejpw.PlusConfiguration:No Transaction manager found - if your webapp requires one, please configure one. 2013-05-13 16:11:23.424:INFO:oejsh.Conte

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
whats so bad about a year class ? @Entity @ClassDescriptor(hasCyclicRelationships = true, nonVisual = false) public class Year implements Cloneable, Serializable { private static final Log log = LogFactory.getLog(Year.class); private Integer id = null; private Integer yearStart = new

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Here is the tml How do I know which valuencoder its using? Why the NPE ?

RE: how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
thanks guys... but I keep gettign an NPE @Persist @Property HibernateEntityValueEncoder yearValueEncoder; @Inject private ValueEncoderSource valueEncoderSource; @Inject private SelectModelFactory selectModelFactory; private ArrayList years; @Setu

how to use HibernateEntityValueEncoder

2013-05-13 Thread Ken in Nashua
Hi Folks, Finding scant docs on this class usage. And getting pulled down a rabbit hole. Are there any example usages of this ? All i want to do is populate my select component with database entities strings. thanks

RE: div block ID name collisions with 3rd party libraries

2013-04-26 Thread Ken in Nashua
ommends or advises special attention to this. But you have been a tremendous help so far. Thanks I am in a holding pattern wondering whether I should modify my webapp code or wait til something changes for the component library author. - cheers Ken

RE: div block ID name collisions with 3rd party libraries

2013-04-26 Thread Ken in Nashua
mpose. Thanks Ken

div block ID name collisions with 3rd party libraries

2013-04-25 Thread Ken in Nashua
Folks, I am operating a tapestry web app. I have my own web app specific layout which defines a myriad of DIV blocks that use ID for "header", "content", "page", "main", etc and I operate these ID definitions heavily within my own CSS. But then along comes a third party library that promot

RE: logout taking me to home instead of login

2013-04-25 Thread Ken in Nashua
George, Thanks friend... that worked terrific. I used both annotations @RequiresAuthentication @RequiresUser

RE: logout taking me to home instead of login

2013-04-25 Thread Ken in Nashua
The logout handlers are virtually identical for HOME and LOGIN pages Here is the HOME one... http://localhost:9011/pphl/home.layout.loginlink.tynamologoutlink Here is the LOGIN one for the URL on my browser bar http://localhost:9011/pphl/login.tynamologoutlink Can anyone explain why the HOME l

logout taking me to home instead of login

2013-04-25 Thread Ken in Nashua
+ "/login"); configuration.add(SecuritySymbols.SUCCESS_URL, "/home"); configuration.add(SecuritySymbols.UNAUTHORIZED_URL, "/" + PATH_PREFIX + "/unauthorized"); Is there a deficiency in tapestry preventing me from gracefully operating the first USE CASE ? Thanks for any tips. Ken

RE: tap5 with jquery - tab component

2013-04-21 Thread Ken in Nashua
ooops here is the link. http://tapestry5-jquery.com/components/docsjquerytabs I am wondering if there is a similar menubar component. Could this be the upcoming menubar widget? for this library ? http://wiki.jqueryui.com/w/page/38666403/Menubar If so i think I might want to pilot its use.

tap5 with jquery - tab component

2013-04-21 Thread Ken in Nashua
Folks, Has anyone used this ? How is it? Does it retain state across tabs? meaning... if I render tab3 with a list and hit my HOME link... will this tab retain the tabbed tab state? Instead of jumping back to tab 0 ? Thanks Ken

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
check out or refer to to keep a stable release. Thanks for your fast response. And I will use your email from here on out. Sorry to the tap list. - cheers Ken

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
The stack trace I originally posted takes down the tapestry app and breaks it by refusing to render properly within its service.

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
Why is KAWWA cluttering up the front page of my web app when I try to use one simple component ? Why are you advertising and requested me to use you r tapestry library and forcing my webapp to display your images all over the front of the page ? I asked this before and you refuse to respond. I

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
Manuelle... will you please email me stable binaries please ? And a support email address that I can get a response from? Thank You kcola...@gmail.com

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
there isn't even a 2.0.3 release everything is hardwired to 2.0.4 but its all snapshots and if I look at their releases repository its empty ???

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
This download into my repo is whats plaguing the usage of this library. I have snapshots turned off. If anyone using this tapestry library can explain I would be greatful I dont know why this is overriding my build and interfering with development. its been happening for a month now and I am re

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
Folks, I am just plagued with this library. All I am asking for is a simple tab component and a menu. But this kawwa keeps jamming the round head image advertisement guy with a neck tie all over the front of the app. ATOS WORLDWIDE If they want money I will pay for it. I just want it to work.

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
manuel I reverted to rev 80 and I still receive this build error [INFO] [INFO] BUILD FAILURE [INFO] [INFO] Total time: 2.777s [INFO] Finished at: Sun

RE: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
with the advertuisements to use their libratry are they aware anyone is even attempting to use it? I have been frustratingly watchign this library limping along for the past month they obviously tried to refactor the AppModule and left a train wreck in its wake but it hasnt been working proper

Re: kawwa tapestry component NPE

2013-04-21 Thread Ken in Nashua
If the kawwa folks could work on stabilizing their release and deploy somethign that can be predictably built that woujld be nice. it would gain me alot of sleep time I have reverted to several revisions and cannot get past this build problem. but the crash remains persistent. i dont know what

kawwa tapestry component NPE

2013-04-20 Thread Ken in Nashua
Is it ok to ask for help on this forum for this tapestry library? I have asked before from the authors without any luck. I am currently experiencing a ramdom NPE from their component. An unexpected application exception has occurred.java.lang.NullPointerExceptionFilter stack frames Stack trace

BIRT integration

2013-04-10 Thread Ken in Nashua
Folks, Is there a doc or tech help on how to integrate BIRT into my tapestry app? Thanks in advance. I havent found anything. - cheers Ken

RE: grid exception - not sure if bug or not

2013-03-29 Thread Ken in Nashua
Folks, This is fixed... I was specifying bogus schema on my collection methods in my person object. False alarm... - cheers

RE: tapestry method exception

2013-03-29 Thread Ken in Nashua
Ok the catch block is vestigial since the exception is thrown after the method is processed... not during... So back to commenting out the code to seed my database. Does anyone have any ideas? I cant invoke a hibernate session here due to separation of concerns. Thanks

tapestry method exception

2013-03-29 Thread Ken in Nashua
Folks, I am trying to seed my database with two default standard entities. is there a reason why tapestry wont allow me to catch this exception ? Its really annoying. that I have to comment out and uncomment the code just to get my databse seeded properly. I thought catchign the exception woul

RE: grid exception - not sure if bug or not

2013-03-28 Thread Ken in Nashua
My prepared list is counting two but returning 1 and the other null when getInstances is called So it is looking more like ... well not sure yet public void prepare(int startIndex, int endIndex, List sortConstraints) { this.startIndex = startIndex; preparedResults = per

RE: grid exception - not sure if bug or not

2013-03-28 Thread Ken in Nashua
Here is the grid usage... I have two entities in the database and its failing on the third row iteration when getting row values someone is passing in a bad endIndex kawwa, tapestry or tynamo... not sure But I will keep looking package org.tynamo; import org.apache.tapestry5.grid.GridDataSo

  1   2   3   4   5   6   7   >