aspose file tools
The moose likes JSF and the fly likes made progress with Ajax and JSF 2.0, need help please Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "made progress with Ajax and JSF 2.0, need help please" Watch "made progress with Ajax and JSF 2.0, need help please" New topic
Author

made progress with Ajax and JSF 2.0, need help please

Cristian Jujea
Greenhorn

Joined: Feb 20, 2010
Posts: 3
Hi,

I have a simple JSF 2.0 form sent to the server with Ajax :

<h:form prependId="false" id="form">
<h:inputText value="#{securityResponsibleManagedBean.adminName}" /><br />
<h:inputSecret value="#{securityResponsibleManagedBean.adminPwd}" /><br />
<h:commandButton action="#{securityResponsibleManagedBean.adminLogin}" value="Intra">
<f:ajax event="action" execute="@form" onevent="afterAdminLogin()"/>
</h:commandButton><br />
</h:form>


This form is sent to :

@ManagedBean(eager=true)
@ApplicationScoped
public class SecurityResponsibleManagedBean {
private String adminName;
private String adminPwd;

public void setAdminName(String adminName) {
this.adminName = adminName;
}
public String getAdminName() {
return adminName;
}
public void setAdminPwd(String adminPwd) {
this.adminPwd = adminPwd;
}
public String getAdminPwd() {
return adminPwd;
}

public void adminLogin() {
System.err.println("Admin name : " adminName);
System.err.println("Admin pwd : " adminPwd);
}
}


After the adminLogin method is called, the Ajax response arrives in the browser and my afterAdminLogin javascript function is called.
How do I set the Ajax response to be as such :

<login>
<status>CORRECT</correct>
</login>

and how I pass the xmlHttp.responseXML to my afterAdminLogin javascript function?
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: made progress with Ajax and JSF 2.0, need help please
 
Similar Threads
relation between backing beans
Re-Execute Javascript on Ajax Render
AJAX request 's URL to a ManagedBean's method
Validation Problem ... again!
how to get back bean value in javascript