Re: ComponentClassResolver error

2023-04-27 Thread Ric 2000
apestry project? > > > Do you use the standard way of starting Tapestry in a > > > ServletContainer/web.xml/TapestryFilter or do you use any other means > to > > > start the Registry? > > > For example, we use a custom starter project initializing Tapestry >

Re: ComponentClassResolver error

2023-04-27 Thread Ric 2000
apestry > manually, so we need to add the TapestryModule manually, too, as it's only > provided by the TapestryFilter. > > Cheers > Ben > > On Thu, Apr 27, 2023 at 9:57 AM Ric 2000 wrote: > > > Hi all, > > After Migration to Tapestry 5.8 I face the following is

ComponentClassResolver error

2023-04-27 Thread Ric 2000
Hi all, After Migration to Tapestry 5.8 I face the following issue with ComponentClassResolver during Server start: "Contribution XYZ(Configuration) is for service 'ComponentClassResolver', which does not exist" In my own filter module in my library I used code like the following: void contribut

Re: Where to find dom js

2022-08-16 Thread Ric 2000
60b33de3d49fdfb6f05285/tapestry-core/src/main/java/org/apache/tapestry5/modules/JavaScriptModule.java#L397 > > > > On Wed, Aug 17, 2022 at 8:20 AM Ric 2000 wrote: > > > Hi all, > > > > We use Version 5.4.6 of Tapestry. > > The script select.js uses via require

Where to find dom js

2022-08-16 Thread Ric 2000
Hi all, We use Version 5.4.6 of Tapestry. The script select.js uses via require a library dom.js, and also zone.js and events ja. The two latter ones are existing in modules/t5/core, but dom.js I can't find in the tapestry-core sources. Do you know where to find it? Regards, Ric

Re: Calling a Tapestry page from external website

2022-04-27 Thread Ric 2000
equest parameter. Something like > https://otherapp/otherpage?returnTo=urlOfTapestryAppToReturnTo. > > Hope this helps. > > Volker > > > > On 2022/04/27 12:51:15 Ric 2000 wrote: > > Hi all, > > > > I'm struggling with the following Situation: > > >

Calling a Tapestry page from external website

2022-04-27 Thread Ric 2000
Hi all, I'm struggling with the following Situation: >From my Tapestry application with active http session I call a page in another non Tapestry application in the same browser tab. But after that I want to navigate back from that application to the original Tapestry page. I guess it should be

Re: Filtering and modification of Response in Tapestry

2019-12-02 Thread Ric 2000
n the production mode and disabled in the development > mode. So if your goal is to remove comments from JavaScript files, just run > your Tapestry application mode. > > Best regards, > Cezary > > > On Sun, Dec 1, 2019 at 5:12 PM Ric 2000 wrote: > > > Hi agai

Re: Filtering and modification of Response in Tapestry

2019-12-01 Thread Ric 2000
. Thanks in advance for your suggestions! Best Regards, Ric On Sun, Dec 1, 2019 at 3:38 PM Ric 2000 wrote: > Hi Cezary, > > first thanks for your reply. Then I was at least not completely wrong. Let > me show my code in the next reply, I will restore the version from GIT > first.

Re: Filtering and modification of Response in Tapestry

2019-12-01 Thread Ric 2000
fter the Tapestry Filter, but always the same: the content appears to be empty. Thanks in advance for your suggestions! Best Regards, Ric On Sun, Dec 1, 2019 at 3:38 PM Ric 2000 wrote: > Hi Cezary, > > first thanks for your reply. Then I was at least not completely wrong. Let > me

Re: Filtering and modification of Response in Tapestry

2019-12-01 Thread Ric 2000
robably you have a bug, but without seeing your code it > hard to help you. > > Best regards, > Cezary > > > > > On Sat, Nov 30, 2019 at 10:38 AM Ric 2000 > wrote: > > > Dear all, > > > > I'm struggling on how to filter and modify th

Filtering and modification of Response in Tapestry

2019-11-30 Thread Ric 2000
Dear all, I'm struggling on how to filter and modify the response sent to the client in a Tapestry web application. I tried first with a RequestFilter contributed to the RequestHandler service. The problem occurred when I tried to read the content of the current response out stream. There are diff

Filter for javascript files

2019-11-28 Thread Ric 2000
Dear all, I want to do a really simple task, but running into problems when doing it in a Tapestry web application: The task: replace or remove some content in js files sent to the client. My approach: I wrote a normal servlet filter with a wrapper for the HttpServletResponse, which allows to pu

Re: SessionAttribute and SessionState is null in onValidate method

2019-06-18 Thread Ric 2000
ant parts of Tapestry. For example, if you use "@SessionAttribute", > find the SessionAttributeWorker in Tapesty > (package: org.apache.tapestry5.internal.transform), and set a breakpoint at > the beginning of the "get()" method of SessionKeyConduit. > > Best regards, &

SessionAttribute and SessionState is null in onValidate method

2019-06-18 Thread Ric 2000
Dear Tapestry users, I face the following problem: In a page I use a simple bean annotated as SessionState or SessionAttribute (problem is the same on both). It is initialized in the SetupRender method of the page and in other methods, called from within the SetupRender method, the object is in co

Re: TemplateParser service override

2019-04-25 Thread Ric 2000
ecorator to > trigger creation of the default TemplateParser so its configuration can be > observed by the listener. > > If there is a simpler solution, I would be happy to know :-) > > Best regards, > Cezary > > > On Thu, Apr 25, 2019 at 3:

TemplateParser service override

2019-04-25 Thread Ric 2000
wing. > > Kind Regards > Mats > > On 2019-04-24 11:59, Ric 2000 wrote: >> >> Hi all, >> >> I'am new to that list, but not to Tapestry :-) >> >> Nevertheless I face problems to override one of the Tapestry 5.4.3 internal >> services, the Temp

Re: TemplateParser service override

2019-04-25 Thread Ric 2000
; > What is the error you are getting? You should be able to either override or decorate the internal service. I guess it could be a problem with your implementation of the service, but hard to say without knowing. > > Kind Regards > Mats > > On 2019-04-24 11:59, Ric 2000 wrote: >&g

Re: TemplateParser service override

2019-04-24 Thread Ric 2000
with your implementation of the service, but hard to say without knowing. > > Kind Regards > Mats > > On 2019-04-24 11:59, Ric 2000 wrote: >> >> Hi all, >> >> I'am new to that list, but not to Tapestry :-) >> >> Nevertheless I face problem

TemplateParser service override

2019-04-24 Thread Ric 2000
Hi all, I'am new to that list, but not to Tapestry :-) Nevertheless I face problems to override one of the Tapestry 5.4.3 internal services, the TemplateParser. The normal overriding with mapped config and override annotation leads to errors. Background is, that I want to use a customized SaxTe