svn - repository

2006-04-17 Thread Marc Ende
Hi there, I'm not sure, if I've got the correct repository. I've asked on the dev's mailinglist, as someone changed the wiki page, but I haven't any response :( What's the correct repository url? Is it: http://svn.apache.org/repos/asf/tapestry/tapestry4/trunk/ or is it something completle

Re: Best practice: Security Layer

2006-04-09 Thread Marc Ende
ted I'm just extending the AdminPage. After that I'm sure that I only have authorized users on the site (If I haven't overridden the validate method without a super.validate(..)). That might be a newbe-way, but it's easy to implement and works... :) yours

JavaScript src

2006-04-03 Thread Marc Ende
Hi there, just a little question... I've trying to access a JavaScript wich is not located on the same server. So I couldn't access the javascript on the classpath as mentioned in the docs. Is there any tutorial how to achive this? I've googled around but haven't found any needful things. (Might

Condition to handle null in forms

2006-03-27 Thread Marc Ende
Hi, I'm currently looking for a solution for the following problem: I've got some @Input, @Text and @TextArea Fields in a Form. These are filled with a value="ognl:firstObject.title" for example. If the firstObject is null it causes an exception (source is null for getProperty(null, "title")) I'

Re: tapestry hibernate Object was not of the specified subclass...

2006-03-13 Thread Marc Ende
can't give you a detailed description of the solution. Sorry. Section 19.1.3 is the one that interests you, I think. http://www.hibernate.org/hib_docs/v3/reference/en/html/performance.html --sam On 3/12/06, Marc Ende <[EMAIL PROTECTED]> wrote: Hi Andreas, I've tried the targetEnti

Re: tapestry hibernate Object was not of the specified subclass...

2006-03-13 Thread Marc Ende
no matter what the type of the object, it is guaranteed to > provide a certain set of methods. Since hibernate objects will be > guaranteed to implement your designated interface, no matter what the > actual implementation is, you shouldn't have any trouble. > > --sam > &g

Re: tapestry hibernate Object was not of the specified subclass...

2006-03-13 Thread Marc Ende
d description of the solution. Sorry. > > Section 19.1.3 is the one that interests you, I think. > > http://www.hibernate.org/hib_docs/v3/reference/en/html/performance.html > > --sam > > > On 3/12/06, Marc Ende <[EMAIL PROTECTED]> wrote: > >> Hi Andreas,

Re: tapestry hibernate Object was not of the specified subclass...

2006-03-12 Thread Marc Ende
Hi Andreas, I've tried the targetEntity but it doesn't solve the problem. What I've forgotten to mention is that the class "WohnungNeu" extends the class "Objekt". The used OneToOne relationship works perfectly. I've found a startingpoint. It seems to be hibernate not tapestry... Thanks for

tapestry hibernate Object was not of the specified subclass...

2006-03-12 Thread Marc Ende
Hi there, I've got a little problem, where I find no starting point to search for: There is an entity from hibernate wich has got an OneToMany relationship called objektBilder. This relationship should return an List. Which it does normally (the used dataset works correctly in an standalone ap

redirect after post

2006-03-09 Thread Marc Ende
Hi there, I'm a completly newbe to tapestry but I've done my first steps and everything works great. But I've got one point, I'm sure that's a frequently asked question: I'd like to redirect after a POST request. I've found several examples using PageRedirectException and RedirectException b