Ramazan Pekin
2004-12-27 20:51:08 UTC
How can I deploy a simple jsp page to weblogic 8.1.4? can you help me? I want to explain what I am doing and tell me what I am missing?
First of all I have create a simple jsp page "index.jsp" which including this code:
<%@page language="java" contentType="text/html"%>
<HTML>
<BODY>
<% String message = "first weblogic application"; %>
<%= message %>
</BODY>
</HTML>
I have create a war file, which including this jsp page. The war file "myFirst.war" is including these:
myFirst.war
/index.jsp
/META-INF/MANIFEST.MF
and I have put this file into this directory like that:
"C:\bea\user_projects\domains\mydomain\admin\upload\myFirst.war"
After that I have clicked
"start/programs/BEA_WebLogic_Platform_8.1/User_Projects/mydomain/Start_Server"
After that I have writed this to my internet explorer browser:
"http://localhost:7001/mydomain/index.jsp"
but there is nothing.
What I am doing wrongly can you help me please.
Ramazan Pekin
First of all I have create a simple jsp page "index.jsp" which including this code:
<%@page language="java" contentType="text/html"%>
<HTML>
<BODY>
<% String message = "first weblogic application"; %>
<%= message %>
</BODY>
</HTML>
I have create a war file, which including this jsp page. The war file "myFirst.war" is including these:
myFirst.war
/index.jsp
/META-INF/MANIFEST.MF
and I have put this file into this directory like that:
"C:\bea\user_projects\domains\mydomain\admin\upload\myFirst.war"
After that I have clicked
"start/programs/BEA_WebLogic_Platform_8.1/User_Projects/mydomain/Start_Server"
After that I have writed this to my internet explorer browser:
"http://localhost:7001/mydomain/index.jsp"
but there is nothing.
What I am doing wrongly can you help me please.
Ramazan Pekin