• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Trinidad / Weblogic

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying partial page rendering using Trinidad, Sun's JSF 1.2 , with Weblogic 10. In using a simple command button and output text, the managed bean's method as part of the command button's actionListener is not working. It works fine under Glasfish 2.x

I've tried deploying the JSF 1.2 war that is part of Weblogic's reference library and that did not correct the issue.

any help is appreciated.

<f:view>
<h:form id="myForm">
<tr:commandButton text="Add Counter"
id="myButton"
partialSubmit="true"
actionListener="#{renderBean.changeText}"/>

<!-- repaint the outputText any time 'myButton' has an event -->
<tr:outputText value="#{renderBean.textValue}"
partialTriggers="myForm:myButton" />

</h:form>
</f:view>
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It sounds like this is a Weblogic issue and not a JSF specific question. I would recommend looking at Weblogic's website for more information. Unfortunately, I don't have any experience with JSF on Weblogic. Sorry.

Mark
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic