I need to load a jsp. The control is coming from an action into a jsp. The action is called using jQuery post. The jsp page is not getting displayed but the execute method of action does get executed.
Can anyone tell me why??
function ftpFetch() {
$('#connectForm').submit(function() {
$.post('<s:url action="ftpFetchAction" />', {
userName : $('#name').val(),
domainName : $('#domain').val(),
password : $('#password').val(),
}, function(data) {
$("#connectdiv").hide();
$("#result").html(data);
}, "html");
});
}
in struts.xml
<action name="ftpFetchAction" class="com.olive.rm.controlPanel.ftp.FtpProgram" >
<result name="success">/FtpFetch.jsp</result>
<result name="error">/invaliddir.jsp</result>
</action>
action got executed
alert(data);afterfunction(data) {and tell us if data is arriving. If yes, add JSP code, if not, add Action code. – Andrea Ligios Jan 28 at 12:32