How to deploy a web service on Oracle Application Server 10.1.2.0.2? [message #492618] |
Tue, 01 February 2011 08:08 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
lanlani
Messages: 8 Registered: November 2009 Location: Beirut
|
Junior Member |
|
|
Hi everyone,
I followed the instructions from a link to create a web service using jDeveloper 10.1.3.1.0 on Oracle Application Server 10.1.2.0.2.
The web service created was deployed & used with no errors on the standalone OC4J instance.
But my goal is to deploy my web service on Oracle Application Server 10.1.2.0.2.
So after several attempts, I was able to deploy it on the Oracle Application Server 10.1.2.0.2 but unfortunately I didn't know the URL needed to use the web service.
I also tried converting to J2EE 1.3 and still not knowing how to access the web service.
Please advice with a solution.
Thanks in advance.
Lana
|
|
|
|
|
Re: How to deploy a web service on Oracle Application Server 10.1.2.0.2? [message #492833 is a reply to message #492618] |
Thu, 03 February 2011 00:04 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](/forum/images/custom_avatars/158471.jpg) |
cmzala
Messages: 11 Registered: December 2010 Location: Ahmedabad
|
Junior Member |
|
|
This is what I do is as follows (may be useful to you):
* Use the URL http://192.168.10.14:7001/console/login/LoginForm.jsp to get Admin console.
This URL helps to create Machines, Clusters, Managed Servers, deploy Applications, etc.
At least Create a Managed Server (this will define a port), and deploy your Web Application to work upon.
* The URL for your application will be like http://192.168.10.14:7778/MyWebApp/index.html, where the port 7778 will be as per the port you have defined while creating the Managed Server, and the context MyWebApp is the name from deployment of your Web Application.
The deployment needs a MyWebApp.war file OR a similar exploded directory structure like:
/MyWebApp
/MyWebApp/index.html
/MyWebApp/Abc.jsp
/MyWebApp/jsp
/MyWebApp/jsp\Login.jsp
/MyWebApp/WEB-INF
/MyWebApp/WEB-INF/classes
/MyWebApp/WEB-INF/lib
/MyWebApp/WEB-INF/web.xml
/MyWebApp/WEB-INF/weblogic.xml
* There are several ways to start Managed servers, one way is:
Use startWebLogic.sh to start Admin console.
Use <somePath>/common/bin/startManagedWebLogic.sh <ManagedServerName> http://192.168.10.14:7001 to start your Managed Server.
* After deployment, it needs to start the application through "Start" button in deployment.
Thank You.
CMZala
[Updated on: Thu, 03 February 2011 00:15] Report message to a moderator
|
|
|
|
|
|
|
|