You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by René van Wijk <rw...@Transfer-Solutions.com> on 2008/08/05 09:18:36 UTC

Partial Page Rendering using Trinidad does not work on Weblogic 10

When deploying an application build with Trinidad components on a Weblogic 10 server the partial page rendering is not working properly. For example, when sorting a certain column of a table it is not sorted at once, only after you refresh the page by clicking on a certain button it gets sorted.

By debugging using FireBug it is shown that an invalid XML response is generated
if(this._isResponseValidXML()) // excerpt from Trinidad comon1_0_7.js
return"text/xml";
return"text/html";
}
that is "text/html" is returned instead of "text/xml".

This is exactly really annoying. 

Are there some properties which can be set in Weblogic so that the right content type is selected.

Any help is greatly appreciated.

PS. With ADF Faces Components everything works fine - but here the page is refreshed every time you sort a column. Just like clicking on a button in the case of Trinidad.