私は、LANにあるTomcatを実行している2台のマシンを持っています。
あるマシンの jsp から別のマシンの別の jsp ページを呼び出すことはできますか
私は次のようにそれを試しました:
<%
RequestDispatcher rd=application.getRequestDispatcher("http://10.44.111.149:8080/stud/sample.jsp");
RequestDispatcher rd=application.getRequestDispatcher("/index.jsp");
rd.include(request,response);
%>
しかし、それは私に次のエラーを与えました:
java.lang.IllegalArgumentException: Path http://10.44.111.149:8080/stud/sample.jsp does not start with a "/" character
これを行う方法はありますか。