Re: Console app with Tapestry IoC configuration

2011-09-20 Thread Steve Eynon
Yep, I always define two modules; one Core Module that defines my
database DAOs and other core services and another Web Module which
focuses on T5 webby stuff.

Steve.
--
Steve Eynon
---
"If at first you don't succeed,
   so much for skydiving!"



On 20 September 2011 23:49, Thiago H. de Paula Figueiredo
 wrote:
> On Tue, 20 Sep 2011 11:51:56 -0300, nquirynen 
> wrote:
>
>> Hi,
>
> Hi!
>
>> I'm making an application using Tapestry IoC configuration
>> (contributions).
>
> Nice!
>
>> So in my AppModule I have:
>>
>> *public void
>> contributePolicyValueProviderSource(MappedConfiguration> PolicyValueProvider> config) {
>> ...
>> }*
>>
>> But i geth the error:
>>
>> /Exception in thread "main" java.lang.IllegalArgumentException:
>> Contribution
>>
>> be.pensionarchitects.merge.services.AppModule.contributeRequestHandler(OrderedConfiguration,
>> RequestFilter) (at AppModule.java:128) is for service 'RequestHandler',
>> which does not exist./
>
> I guess your AppModule has some dependencies on services provided by
> Tapestry-core (the web framework), so you need to add TapestryModule to your
> list of modules. Another solution (my recommendation) would be to have a
> separate module with only the services, contributions, etc that you need in
> your non-web app and include it in AppModule through the @SubModule
> annotation.
>
>> Anyone an idea what the problem could be here?
>> If you need specific code, please do ask.
>
> If possible, please post your AppModule class.
>
> --
> Thiago H. de Paula Figueiredo
> Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and
> instructor
> Owner, Ars Machina Tecnologia da Informação Ltda.
> http://www.arsmachina.com.br
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: tapestry select model

2011-09-20 Thread csckid
Now I have add an encoder

:


  


public class WholeSaleMemberEncoder implements
ValueEncoder, ValueEncoderFactory { 

@Inject
private WholeSaleMemberDao wholeSaleMemberDao;
@Inject
private DatabaseDao databaseDao;

public String toClient(WholeSaleMember value) {
// return the given object's ID
return String.valueOf(value.getId()); 
}

public WholeSaleMember toValue(String id) { 

// find the color object of the given ID in the database
return (WholeSaleMember) databaseDao.load(Long.parseLong(id),
WholeSaleMember.class);
}

public ValueEncoder create(Class 
type) {
// TODO Auto-generated method stub
return this;
}
} 



public class CreateWMemberTruck {


@Inject
private WholeSaleMemberDao wholeSaleMemberDao;
@Property
private WholeSaleMemberEncoder wholeSaleMemberEncoder;
@Property
private SelectModel memberSelectModel;
@Property
@Inject
private SelectModelFactory selectModelFactory;

@Property
private WholeSaleMember membersName;


void setupRender() {
// invoke my service to find all colors, e.g. in the database
List members =
wholeSaleMemberDao.getWholeSaleMembers();

// create a SelectModel from my list of colors
memberSelectModel = selectModelFactory.create(members, "fName");
}

void onSuccess() {

System.out.println("\n\n\n"+membersName.getId()+"\n\n\n\n");

}
}

Now t:select is not populated, that page gives an exception
org.apache.tapestry5.internal.services.RenderQueueException
Render queue error in
BeforeRenderTemplate[wholesalemember/CreateWMemberTruck:members]:
org.apache.tapestry5.ioc.internal.util.TapestryException

#

activeComponents

* wholesalemember/CreateWMemberTruck (class
com.kids.crm.pages.wholesalemember.CreateWMemberTruck)
* wholesalemember/CreateWMemberTruck:layout (class
com.kids.crm.components.Layout)
 
classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml, line 4
  1 http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
  4 xmlns:p="tapestry:parameter">
  5 

  8 :
  9 
* wholesalemember/CreateWMemberTruck:form (class
org.apache.tapestry5.corelib.components.Form)
 
classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml, line 5
  1 http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
  4 xmlns:p="tapestry:parameter">
  5 
 
  8 :
  9 
  10
* wholesalemember/CreateWMemberTruck:members (class
org.apache.tapestry5.corelib.components.Select)
 
classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml, line 9
  4 xmlns:p="tapestry:parameter">
  5 
 
  8 :
  9 
  10
  11
  12
  13
  14Create
W.Sale Member

location
classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml,
line 9

# java.lang.NullPointerException

Hide uninteresting stack frames Stack trace

*
org.apache.tapestry5.internal.util.SelectModelRenderer.option(SelectModelRenderer.java:51)
 


--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/tapestry-select-model-tp4823674p4825110.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: tapestry select model

2011-09-20 Thread Jonathan Barker
>From the javadoc for SelectModelFactory... (
http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/services/SelectModelFactory.html
)

 "The returned model creates for every object in the list a selectable
option and relies on existing
ValueEncoder
for
the object type."

So, you need to contribute a ValueEncoder for your WholeSaleMember.

I believe that the tapestry-hibernate module does that automatically for
Hibernate entities, but since you are using Spring, you would need to do it
on your own.



On Tue, Sep 20, 2011 at 10:57 PM, csckid  wrote:

> Select component is populated. But I wasn't able to fetch the id variable
> of
> the selected object.
> *CreateWMemberTruck.tml *
> 
>   :
> />
>
>  
>
> *CreateWMemberTruck.java *
>
> public class CreateWMemberTruck {
>
>
>@Inject
>private WholeSaleMemberDao wholeSaleMemberDao;
>
>@Property
>private SelectModel memberSelectModel;
>@Property
>@Inject
>private SelectModelFactory selectModelFactory;
>
>@Property
>private WholeSaleMember membersName;
>
>
>void setupRender() {
>
>List members =
> wholeSaleMemberDao.getWholeSaleMembers();
>
>
>memberSelectModel = selectModelFactory.create(members, "fName");
>}
>
>void onSuccess() {
>
>System.out.println("\n\n\n"+
> membersName.getId()+"\n\n\n\n");
>
>}
> }
>
>  When I click on submit it says. I thought I will be able to call
> membersName.getId()
> *Exception*
> org.apache.tapestry5.ioc.internal.OperationException
> "Could not find a coercion from type java.lang.String to type
> com.kids.crm.db.WholeSaleMember."
> #
>
> location
>classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml,
> line 5
>1   2   t:sidebarTitle="Browse Wood"
>3   xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
>4   xmlns:p="tapestry:parameter">
>5   
>6   :
>7   
>8   :
>9model="MemberSelectModel"
> />
>10  
> trace
>
>* Triggering event 'action' on
> wholesalemember/CreateWMemberTruck:form
>
> # org.apache.tapestry5.runtime.ComponentEventException
> Could not find a coercion from type java.lang.String to type
> com.kids.crm.db.WholeSaleMember.
>
>
> *WholeSaleMember.java *
> @Entity
> @Table(name = "whole_sale_member")
> public class WholeSaleMember {
>private Long id;
>private String fName;
>private String lName;
>private String cellNumber;
>private String officePhoneNumber;
>private String address;
>private TruckWoodPrice truckWoodPrice;
>private Date created;
>private Date updated;
> ..getters and setters
> }
>
> *WholeSaleMemberDaoImpl .java*
> @Service("wholeSaleMemberDao")
> @Transactional
> public class WholeSaleMemberDaoImpl extends HibernateDaoSupport implements
> WholeSaleMemberDao{
>public ArrayList getWholeSaleMembers() {
>return (ArrayList) getHibernateTemplate().find("from
> WholeSaleMember");
>}
> }
>
> --
> View this message in context:
> http://tapestry.1045711.n5.nabble.com/tapestry-select-model-tp4823674p4824898.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>


-- 
Jonathan Barker
ITStrategic


Re: tapestry select model

2011-09-20 Thread csckid
Select component is populated. But I wasn't able to fetch the id variable of
the selected object.
*CreateWMemberTruck.tml *

   :


  

*CreateWMemberTruck.java *

public class CreateWMemberTruck {


@Inject
private WholeSaleMemberDao wholeSaleMemberDao;

@Property
private SelectModel memberSelectModel;
@Property
@Inject
private SelectModelFactory selectModelFactory;

@Property
private WholeSaleMember membersName;


void setupRender() {

List members =
wholeSaleMemberDao.getWholeSaleMembers();


memberSelectModel = selectModelFactory.create(members, "fName");
}

void onSuccess() {

System.out.println("\n\n\n"+ membersName.getId()+"\n\n\n\n");

}
}

 When I click on submit it says. I thought I will be able to call
membersName.getId()
*Exception*
org.apache.tapestry5.ioc.internal.OperationException
"Could not find a coercion from type java.lang.String to type
com.kids.crm.db.WholeSaleMember."
#

location
classpath:com/kids/crm/pages/wholesalemember/CreateWMemberTruck.tml,
line 5
1   http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
4   xmlns:p="tapestry:parameter">
5   
6   :
7   
8   :
9   
10  
trace

* Triggering event 'action' on
wholesalemember/CreateWMemberTruck:form

# org.apache.tapestry5.runtime.ComponentEventException
Could not find a coercion from type java.lang.String to type
com.kids.crm.db.WholeSaleMember.


*WholeSaleMember.java *
@Entity
@Table(name = "whole_sale_member")
public class WholeSaleMember {
private Long id;
private String fName;
private String lName;
private String cellNumber;
private String officePhoneNumber;
private String address;
private TruckWoodPrice truckWoodPrice;
private Date created;
private Date updated;
..getters and setters
}

*WholeSaleMemberDaoImpl .java*
@Service("wholeSaleMemberDao")
@Transactional
public class WholeSaleMemberDaoImpl extends HibernateDaoSupport implements
WholeSaleMemberDao{
public ArrayList getWholeSaleMembers() {
return (ArrayList) getHibernateTemplate().find("from 
WholeSaleMember");
}
}

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/tapestry-select-model-tp4823674p4824898.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: PageLink page-Parameter

2011-09-20 Thread Geoff Callender
+1

On 21/09/2011, at 7:56 AM, Thiago H. de Paula Figueiredo wrote:

> On Tue, 20 Sep 2011 11:14:03 -0300, Reinhold Gruber  
> wrote:
> 
>> Hi,
> 
> Hi!
> 
>> I would found it rather usefull if if the page Parameter of PageLink
>> would also accept a page-class or an injected and configured page
>> instance (so that the activation context could be calculated from
>> onPassivate()).
> 
> I like the ideas. :) Please post a JIRA issue for it. ;)
> 
> -- 
> Thiago H. de Paula Figueiredo
> Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and 
> instructor
> Owner, Ars Machina Tecnologia da Informação Ltda.
> http://www.arsmachina.com.br
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: PageLink page-Parameter

2011-09-20 Thread Thiago H. de Paula Figueiredo
On Tue, 20 Sep 2011 11:14:03 -0300, Reinhold Gruber  
 wrote:



Hi,


Hi!


I would found it rather usefull if if the page Parameter of PageLink
would also accept a page-class or an injected and configured page
instance (so that the activation context could be calculated from
onPassivate()).


I like the ideas. :) Please post a JIRA issue for it. ;)

--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,  
and instructor

Owner, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: tapestry select model

2011-09-20 Thread Josh Canfield
This is pretty light on details. You may need to provide some code
that demonstrates the problem.


On Tue, Sep 20, 2011 at 12:17 PM, csckid  wrote:
> I am developing a page that will load value of combobox from a database
> table. The table is loaded fine. But when I clicked on submit, I can't
> access the data that is selected in the combobox.
>
>  When I click on submit it says. I though I will be able to call
> membersName.getId()
>
>
>
>
> --
> View this message in context: 
> http://tapestry.1045711.n5.nabble.com/tapestry-select-model-tp4823674p4823674.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



tapestry select model

2011-09-20 Thread csckid
I am developing a page that will load value of combobox from a database
table. The table is loaded fine. But when I clicked on submit, I can't
access the data that is selected in the combobox.

 When I click on submit it says. I though I will be able to call
membersName.getId()




--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/tapestry-select-model-tp4823674p4823674.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: T5.2, message encoding

2011-09-20 Thread Dimitri
Thank you for the reply, i tried to add the param in the tomcat6 start
script, but no effect :(

It looks like an utf8 converter is converting my strings twice, what do you
think about it ?

My browser input with ANSI rendering from the server is:

"Peut-être vos critères sont-ils trop restrictifs"

which is rendered as "Peut-être vos critères sont-ils trop restrictifs?"
after being rendered as utf8

The browser input be "Peut-être vos critères sont-ils trop restrictifs?",
isn't it ?

The example above is from www.pizzaroundme.com

You can fill the field "ville" with "PARIS".

Thank you.

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/T5-2-message-encoding-tp4819883p4823551.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Console app with Tapestry IoC configuration

2011-09-20 Thread Thiago H. de Paula Figueiredo
On Tue, 20 Sep 2011 11:51:56 -0300, nquirynen  
 wrote:



Hi,


Hi!

I'm making an application using Tapestry IoC configuration  
(contributions).


Nice!


So in my AppModule I have:

*public void
contributePolicyValueProviderSource(MappedConfiguration config) {
...
}*

But i geth the error:

/Exception in thread "main" java.lang.IllegalArgumentException:  
Contribution

be.pensionarchitects.merge.services.AppModule.contributeRequestHandler(OrderedConfiguration,
RequestFilter) (at AppModule.java:128) is for service 'RequestHandler',
which does not exist./


I guess your AppModule has some dependencies on services provided by  
Tapestry-core (the web framework), so you need to add TapestryModule to  
your list of modules. Another solution (my recommendation) would be to  
have a separate module with only the services, contributions, etc that you  
need in your non-web app and include it in AppModule through the  
@SubModule annotation.



Anyone an idea what the problem could be here?
If you need specific code, please do ask.


If possible, please post your AppModule class.

--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,  
and instructor

Owner, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Console app with Tapestry IoC configuration

2011-09-20 Thread Lenny Primak
You need to instantiate the registry, and then use bind() in your AppModule to 
do what you want.
You can search the net for further details on that  There have been threads on 
this before.

On Sep 20, 2011, at 10:51 AM, nquirynen wrote:

> Hi,
> 
> I'm making an application using Tapestry IoC configuration (contributions).
> 
> So in my AppModule I have:
> 
> *public void
> contributePolicyValueProviderSource(MappedConfiguration PolicyValueProvider> config) {
> ...
> }*
> 
> and in code I do:
> 
> *@Inject
> private PolicyValueProviderSource policyValueProvider;*
> 
> 
> This does all work how it should work, but I want to make a simple console
> application out of it (no webinterface).
> 
> So now i made a Main class where I have this:
> 
>   public static void main(String[] args) {
>   
>   DocumentGenerator gen = new DocumentGenerator();
> 
>   }
> 
> 
> DocumentGenerator:
> 
>   @Inject
>   private static PolicyValueProviderSource policyValueProvider;
>   
>   public DocumentGenerator() {
>   for(String field : policyValueProvider.getConfiguredFields()) {
>   System.out.println(field);
>   }
>   }
> 
> 
> But i geth the error:
> 
> /Exception in thread "main" java.lang.IllegalArgumentException: Contribution
> be.pensionarchitects.merge.services.AppModule.contributeRequestHandler(OrderedConfiguration,
> RequestFilter) (at AppModule.java:128) is for service 'RequestHandler',
> which does not exist./
> 
> 
> Anyone an idea what the problem could be here?
> If you need specific code, please do ask.
> 
> Thanks in advance!
> Nathan
> 
> 
> 
> --
> View this message in context: 
> http://tapestry.1045711.n5.nabble.com/Console-app-with-Tapestry-IoC-configuration-tp4822836p4822836.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Console app with Tapestry IoC configuration

2011-09-20 Thread nquirynen
Hi,

I'm making an application using Tapestry IoC configuration (contributions).

So in my AppModule I have:

*public void
contributePolicyValueProviderSource(MappedConfiguration config) {
...
}*

and in code I do:

*@Inject
private PolicyValueProviderSource policyValueProvider;*


This does all work how it should work, but I want to make a simple console
application out of it (no webinterface).

So now i made a Main class where I have this:

public static void main(String[] args) {

DocumentGenerator gen = new DocumentGenerator();

}


DocumentGenerator:

@Inject
private static PolicyValueProviderSource policyValueProvider;

public DocumentGenerator() {
for(String field : policyValueProvider.getConfiguredFields()) {
System.out.println(field);
}
}


But i geth the error:

/Exception in thread "main" java.lang.IllegalArgumentException: Contribution
be.pensionarchitects.merge.services.AppModule.contributeRequestHandler(OrderedConfiguration,
RequestFilter) (at AppModule.java:128) is for service 'RequestHandler',
which does not exist./


Anyone an idea what the problem could be here?
If you need specific code, please do ask.

Thanks in advance!
Nathan



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Console-app-with-Tapestry-IoC-configuration-tp4822836p4822836.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Using OWASP - ESAPI

2011-09-20 Thread martinbascuas
Hi Antalk,

   Could you send me any documentation of the course about java and
security? I'd appreciate it so much.
   Do you any web where I could download a course about ESAPI and security
in Java?
   My email is j...@martinbascuas.com
   Thanks in advance.

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Using-OWASP-ESAPI-tp4707230p4821743.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



PageLink page-Parameter

2011-09-20 Thread Reinhold Gruber
Hi, 
 
I would found it rather usefull if if the page Parameter of PageLink
would also accept a page-class or an injected and configured page
instance (so that the activation context could be calculated from
onPassivate()). 
 
Regards,
Reinhold


Re: AjaxFormLoop problem with Tapestry 5.2.-beta-9

2011-09-20 Thread Steve Eynon
I don't know what I'm doing differently, but my AjaxFormLoop still
seems to add and remove rows with T5.3-beta-9.

My implementation (like most people's I suspect!) is based on Geoff's
Jumpstart example

http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/formloop1

Steve.
--
Steve Eynon
---
"If at first you don't succeed,
   so much for skydiving!"





On 20 September 2011 19:10, Emmanuel DEMEY  wrote:
> Hi everybody
>
> Few days ago, I created a simple sample for the AjaxFormLoop component, with
> Tapestry 5.3.0. Everything was OK.
>
> This morning, I updated to Tapestry 5.3-beta-9. But when I add a new row (by
> clicking to the "add" link), the JSON response of the AJAX request does not
> include the elementId value. So, when I want to delete the new row,
> tapestry.js throw me an exception.
>
> After a debugging phase, I think the PartialMarkupRenderFilter, declared in
> the onInject method of the FormInjector component, is added to the
> PageRenderQueue to late. The renderPartial method (PageRenderQueue) is
> called before added this last Filter.
>
> Does anyone of you have the same issue ?
>
> I hope I have enough informations. !
> Thanks
>

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: textchanged like clientEvent

2011-09-20 Thread LLTYK
Define doesn't work. What was wrong with keyup?

--
View this message in context: 
http://tapestry-users.832.n2.nabble.com/textchanged-like-clientEvent-tp6798861p6811862.html
Sent from the Tapestry Users mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



AjaxFormLoop problem with Tapestry 5.2.-beta-9

2011-09-20 Thread Emmanuel DEMEY
Hi everybody

Few days ago, I created a simple sample for the AjaxFormLoop component, with
Tapestry 5.3.0. Everything was OK.

This morning, I updated to Tapestry 5.3-beta-9. But when I add a new row (by
clicking to the "add" link), the JSON response of the AJAX request does not
include the elementId value. So, when I want to delete the new row,
tapestry.js throw me an exception.

After a debugging phase, I think the PartialMarkupRenderFilter, declared in
the onInject method of the FormInjector component, is added to the
PageRenderQueue to late. The renderPartial method (PageRenderQueue) is
called before added this last Filter.

Does anyone of you have the same issue ?

I hope I have enough informations. !
Thanks