[OT] Application below /

2006-06-12 Thread Andreas Bulling
Hi folks, sorry for this off-topic question but as I know that quite a lot people reading this list also use Tomcat I decided to ask it here instead of subscribing to the tomcat mailinglist. What's the right way to make my application available directly below / using Apache mod_jk2 and Tomcat?

Re: [OT] Application below /

2006-06-12 Thread Danny Angus
Andreas Bulling [EMAIL PROTECTED] wrote on 12/06/2006 12:45:14: Hi folks, sorry for this off-topic question but as I know that quite a lot people reading this list also use Tomcat I decided to ask it here instead of subscribing to the tomcat mailinglist. I guess you know what the answer

Re: [OT] Application below /

2006-06-12 Thread Andreas Bulling
On 12. Jun 2006 - 12:54:40, Danny Angus wrote: | Andreas Bulling [EMAIL PROTECTED] wrote on 12/06/2006 12:45:14: | | Hi folks, | | sorry for this off-topic question but as I know that quite a lot | people reading this list also use Tomcat I decided to ask it | here instead of subscribing to

honeycomb: commit does not work when returning ILink

2006-06-12 Thread bėgantis debesis
Hi, I had a listener method like that: public String onOk() { getPersistenceService().saveItem(item); ...; return ItemList; } everything worked fine until i changed it to: public ILink onOk() { getPersistenceService().saveItem(item); ...; return getPageService().getLink(false,

Problem with mixing HTTP and HTTPS

2006-06-12 Thread Josip Gracin
Hello! A while ago, I posted a question here about making some of the pages accessible only through HTTPS while the rest of the pages through HTTP. In the meantime, I've tried to achieve this by using RedirectException in pageValidate(). However, I'm facing some problems with this approach

R: Problem with mixing HTTP and HTTPS

2006-06-12 Thread Giampaolo Tomassoni
Hello! A while ago, I posted a question here about making some of the pages accessible only through HTTPS while the rest of the pages through HTTP. In the meantime, I've tried to achieve this by using RedirectException in pageValidate(). However, I'm facing some problems with this

Retrieving integer value from PropertySelection

2006-06-12 Thread Rui Pacheco
Hi all I have implemented a model for my PropertySelection that consists of a class with two fields, an int and a String with the respective getters and setters. I have no problem in creating a List of this class with data from my database and passing it to as the source of my

Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Ryan Cuprak
Hello, How do I snag the HiveMind registry which is built by processing the hivemodule.xml in WEB-INF? I am trying to expose my Hivemind service as a webservice (JAXRPC). My Hivemind service is used in serveral pages presently. Looking over the code for the ApplicationServlet it looks like it

Re: Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Jesse Kuhnert
Why do you need access to the Registry object at all? You should just be able to define your own hivemodule.xml file and do whatever you want with your services. It's not made easily available on purpose, because there should (in theory) be no reason for you to use it directly. On 6/12/06, Ryan

Re: Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Norbert Sándor
I think it's only theory, there should be an official way for easy registry access... For example sometimes I have to access services from non-hivemind POJOs, servlet filters, etc. Regards, Norbi Jesse Kuhnert wrote: Why do you need access to the Registry object at all? You should just be

Re: Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Jesse Kuhnert
I don't know, it depends on what you are doing. I built one application that had various services for the web layer which used the hivemodule.xml + sub module files included in from that . ...Then there was the appserver (which was just a hivemind registry running ) that had it's own

Re: Remove jsessionid from static resources?

2006-06-12 Thread Kevin Menard
Thanks for the info, Jesse. Unfortunately, it doesn't seem that the AssetService actually appends the jsessionid. I suspect overriding the ContextAssetFactory may get me what I want, but when I try to contribute my own implementation, HiveMind tells me there are two services registered

Re: SEM and Tapestry apps

2006-06-12 Thread Jérôme BERNARD
On 6/9/06, Henri Dupre [EMAIL PROTECTED] wrote: On 6/9/06, Jérôme BERNARD [EMAIL PROTECTED] wrote: The only solution I have found so far to work is to: - use a HomeLink component : public abstract class HomeLink extends AbstractLinkComponent {

Re: Remove jsessionid from static resources?

2006-06-12 Thread Kevin Menard
On Mon, 12 Jun 2006 12:08:52 -0400, Jesse Kuhnert [EMAIL PROTECTED] wrote: Not sure right now but I'm starring this conversation in gmail and will look it up tonight when I do my hobby work... Thanks, I appreciate it. Hopefully this will help you out with your 4.1 work as well. --

Re: SEM and Tapestry apps

2006-06-12 Thread Henri Dupre
On 6/12/06, Jérôme BERNARD [EMAIL PROTECTED] wrote: On 6/9/06, Henri Dupre [EMAIL PROTECTED] wrote: On 6/9/06, Jérôme BERNARD [EMAIL PROTECTED] wrote: The only solution I have found so far to work is to: - use a HomeLink component : public abstract class HomeLink extends

Problem with setting a FormTable

2006-06-12 Thread Matt Walsh
In my pageBeginRender method, I'm calling setTableModel() to correctly set the table model to display. Normally this works, except once there's a validation error on my page, or if I simply go to another page of the table. Every time after that, the previous table model is being used, even though

Re: handling Stale Exception

2006-06-12 Thread Joseph Hannon
Not sure if this is exactly what you are running into, but check out http://jakarta.apache.org/tapestry/tapestry/hivedocs/service/tapestry.error.StaleSessionExceptionPresenter.html Hope it helps. Joseph Apache wrote: spm wrote: I would like to have create a service to handleStaleException

Re: SEM and Tapestry apps

2006-06-12 Thread Henri Dupre
On 6/12/06, Jérôme BERNARD [EMAIL PROTECTED] wrote: On 6/12/06, Henri Dupre [EMAIL PROTECTED] wrote: I think if you set org.apache.tapestry.home-page to index in your .application file, then that should be enough. http://jakarta.apache.org/tapestry/UsersGuide/configuration.html Ok. I've

dojo tree

2006-06-12 Thread Norbert Sándor
Hi, Does anyone have a Tapestry component for wrapping the dojo tree? (in ajax mode as well) Thanks, Norbi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

crazy NPE error, ognl bug?

2006-06-12 Thread Henri Dupre
I have a simple component called RadioPropertySelection. This component is somehow a copy paste from the propertyselection code except that it renders a list in radio buttons. Somehow one of the parameters model gets lost! I believe my ognl construct is right and refers a constant: ognl:@[EMAIL

Re: crazy NPE error, ognl bug?

2006-06-12 Thread Henri Dupre
More details on this error: - it happens after redeploying the app on tomcat - it is a random error, doesn't happen every time - I have a Introspector listener that flushes the caches in my web.xml - this is not new, I saw others posts on the list about this, this seems to be hanging around since

Re: Google Web Toolkit

2006-06-12 Thread ZedroS Schwart
So news on the Tapestry/GWT front ? I would love to hear what's coming ! Thanks in advance ! On 5/24/06, Geoff Longman [EMAIL PROTECTED] wrote: I got capture working http://groups.google.com/group/Google-Web-Toolkit/browse_frm/thread/3e4954b5cc5f3492/8197b5a553276701#8197b5a553276701 this

Re: Google Web Toolkit

2006-06-12 Thread Orlando Brea
Tapestry has a big advantage over GWT, the easy separation of the html and all the other stuff. GWT is a little more tricky on that, it's like swing, you are defining your GUI by code (java code) and it's a step back on web GUIs. It's harder for a web designer to touch the GWT code, the tap code

tacos

2006-06-12 Thread Peter Dawn
guys, does tacos4beta2 support tapestry 3.0.3. i think it doesnt and maybe thats why i am getting these errors. can somebody pls clarify this for me. thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Re: conditional and nested ul and li tags

2006-06-12 Thread [EMAIL PROTECTED]
Thanks Ryan. I tried using more correct html but I still got the same parsing error: Closing tag /li on line 28 is improperly nested with tag span on line 27. So I don't know of a way to put the closing tags in an If component. And if I try to put the tags in the bindings, I get a different

Re: Re: conditional and nested ul and li tags

2006-06-12 Thread Peter Dawn
check if you are missing a span ending tag somewhere else. i sometimes get this error and its usually some other tag which is complaining, not the one its highlighting. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: tacos

2006-06-12 Thread Jesse Kuhnert
No...Unfortunately it doesn't support anything 3.X.. There ~is~ an older series that was created for 3.X listed in the files section (anything without a tacos4-FOO label ), but the differences are rather extensive and not something I personally support. On 6/12/06, Peter Dawn [EMAIL PROTECTED]

Re: tacos

2006-06-12 Thread Peter Dawn
right. so that explains it. i will try and lookup some older files and see if i can get it to run. my entire web app is on 3.0.3 and i am hesitant to upgrade, just in case it breaks something. - To unsubscribe, e-mail: [EMAIL