How to deploy Java Application to AS?

Hello there,
I created Java Application, created Java Web Start (JNLP) Deployment Descriptors and everything works just fine when I am running application locally (using Run Manager in JDeveloper).
How do I publish this Java Application to Oracle Application Server to start it using Java Web Start since there are no Java Web Start Deployment Descriptors to publish Application to Oracle Application Server?
Or is there any other (easier, better) way to Deploy Java Application to Oracle Appplication Server?
I searched otn.oracle.com but I cant find anything usefull, maybe it is me, please help me :)...
Thanks,
-Andrej

From the JDeveloper technical papaers page:
http://otn.oracle.com/products/jdev/collateral/papers/10g/adfjclientbcwebstart.pdf

Similar Messages

  • How to Deploy Java Application?

    I'm trying to deploy a Java application. I made a lot of code changes to it and previous developers have worked on it all using JBuilder4 (old! I know). I've
    been testing it on my development machine with no problems. Does anyone know how in the world to save my changes and put it on another machine. It currently uses a .bat file that has environment variables setup in it to deploy. I know how to make it point to different directories, problem is when I try to move my code (bin, sources, etc folder) to another machine and run the app only some of my changes are there, but when I run the same program on my computer all of my changes the program works fine. I've tried creating another java project file (.jpx) and rebuild the project with no luck because it doesn't change this problem. I have a C/C# Visual Studio background. Is there any else I have to do like updating the .jar files or something? I'm lost. Please help.
    Edited by: pootietang on Feb 21, 2009 2:48 PM

    Point conceded, cross-posting in itself is not that serious. What's serious is this:
    1) You not telling us.
    2) You giving us attitude.
    3) You giving us more attitude when we complain about your cross-posting.
    4) You still refusing to do what the people who were (read: were, not are) trying to help you asked you to do, which was keep them updated.
    5) You acting arrogant.
    6) You being arrogant.
    7) You telling someone with 36,000 posts to "cut the attitude" like you're his father.
    ... shall I continue?
    The nerve of people these days, I swear...
    You honestly think you're entitled to help? Let me reference you to an excellent quote I once encountered:
    "The world doesn't owe you anything. It was here first." - Mark Twain

  • How to deploy Java application securely

    hi everybody,
    I hope u can help me. Because this is my last resort.
    My problem is describing below.
    I have created a java application(Stand alone). Now I have to install that into a machine. When I am installing any how i have to copy all .class files to the system. When I am copying, how will I secure those files. Means if a person knows where the class files is copied, he can declompile the class fiels, that will gives the original source code, and he can make changes into that and recopy. This will spoil the application. So how I secure the class files from the external access.
    thanks for ur time.

    I would have to say that your best bet is to use an obfuscator.
    http://directory.google.com/Top/Computers/Programming/Languages/Java/Development_Tools/Obfuscators/
    The only other thing you can do, if you can, is to set permissions on the directory, and things like that...

  • How to Deploy Java Applications

    I have developed an FTP application. The client program is designed as a desktop application using swing. The problem here is to deploy my client program. It should work on the machines dont having jdk.

    Have a look at:
    http://nsis.sourceforge.net/
    Its a nice install script program. You can read registry variables and thus determine the JVM version. There are examples when you download it of how to determine the JVM version.
    I automaticaly detect the version, if installed. I install a new JVM if there is not one installed or its not the correct version.
    Web Start will not do it for you, as clients will not have it if they don't have the appropriate JVM installed. However if you do have a web site, then you can automaticaly prompt the user to download the Java JVM if its not installed. And then you could use Web speed.
    James.

  • How to deploy java stand alone applications

    I need to find information on how to deploy java classes to just run time clients.
    I appretiate any help on this.

    Probably yes. It is possible to write a lunch application. But what considerations do I have to take. Let's say, Since Forte for Java 4 does not use CLASSPATH environment variable, How do I tell the JRE where my classes are located? I tried running
    javaw c:\directory\classname.class
    ...but I receive a message saying that the main class was not found...
    Do you know why this could be?

  • How to deploy Servlet Application in Weblogic 8.1

    Hi,
    I am new to BEA Weblogic 8.1 .
    I was trying to create a sample application using InelliJ IDea 5.1 , and IntelliJIdea 10.5 . i configured weblogic with IDE , but now i do not know how to deploy my application in weblogic .
    I am new in IntelliJ also .
    So Can anyone tell me how can i deploy a servlet application in any IDE like i also have eclipse indigo.
    Thanks & Regards
    Komi

    Hi Komi
    Basically you deploy your Servlet as a WAR File. I am not familiar with IntellJ IDE. But it should have a provision to export/create a WAR file that has your Servlet. Also I hope you already have web.xml file with 2 sections like this: First you mention full package of your servlet and give it a name. Then enter a mapping url. You will use this url to run your servlet like http://weblogichost:weblogicport/yourWebappcontextroot/myservlet
    <servlet>
         <servlet-name>MyServlet</servlet-name>
         <servlet-class>com.abd.def.MyServlet</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>MyServlet</servlet-name>
         <url-pattern>/myservlet</url-pattern>
    </servlet-mapping>
    Coming to deployment, I hope you already created a Weblogic Domain and have admin username/password. Start your domain. Login into weblogic console like http://host:port/console and use admin username/password. Then from Deployments section, deploy the above WAR file. In Weblogic you can deploy JAR (EJBs, java files), WAR (web jsp, html, webservices, servlets) or EAR (JAR + WAR). In your case its just a WAR file.
    Refer the online docs for more details on Deployments in Weblogic.
    http://docs.oracle.com/cd/E13196_01/platform/docs81/deploy/deploy.html
    Thanks
    Ravi Jegga

  • How to deploy web application to Weblogic?

    Does anyone know how to deploy web application to Weblogic8.1?

    Hello,
    I found one error in what I have done. I add the '<context-root>' in '<weblogic-web-app>', which are not required in some other containers, and I can find the application of hello2. However, when I clicked 'submit' I got the following message:
    Error 500--Internal Server Error
    java.lang.NoClassDefFoundError: java/lang/StringBuilder
         at servlets.ResponseServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    I do not want to make changes in 'web.xml' file as it worked in other container. I guess I miss something that is special, probably basic, to WebLogic, but I do not know what it is.
    Bye the way, who know how to reward points to other people? I cannot find the 'assign points icon'.
    Thanks hoos. Your answer give me confidence that a web application could be deployed by copy war file to some directory (I guess from my experience of other containers).

  • How to invoke java application from ABAP

    How to invoke java application from ABAP  ? Suppose I needto execute a EJB wihic is running on my SAP J2EE Enigne from an ABAP Program .
    Thanks,
    Manish

    Hi Manish,
    did you get some further documents concerning "abap program calls ejb"?
    If yes, could you please send me some informations.
    Thank you for your help.
    Kind regards, Patrick.

  • How to deploy cairngorm application with FTP support?

    Hi,
    I have a cairngorm application, it works fine in my local
    computer.
    But I need to upload it to a website in my web hosting
    company with FTP,
    but it doesn't work in the hosting server because I can not
    add the cairngorm.swc file to the application.
    Please give me a idea how to deploy the application with ftp
    software.
    Thanks a lot
    Mark

    Any opinions are welcome

  • How to deploy APEX Application within EBS module

    Hi Guruz,
    How to deploy APEX Application within EBS module, for example I have developed APEX application by using EBS Tables like OA Framework Development in jDeveloper. or anyone can clear my understanding regarding jDeveloper and APEX differences and both are same in relation with EBS Development.
    Regards,

    Hello,
    First of all you can delete delete the development environment, by executing apxdevrm.sql script.
    You can also wrap your packages.
    Regards

  • How to Deploy the Application

    Hello All.
    I have developed an application in WebDynPro ABAP.
    How to deploy the application.
    Warm regards,
    SampathKumar.

    Hi,
    You can delpoy it using the portal or in any IE.
    Create an Iview in the portal and give the application name of your component and run it. As portal is the part of the SAP Netweaver.  Where ever you want you can call the application as it is a URL.
    For the creation of Iviews and related things, refer to the EP forum.
    Regards,
    Lekha.

  • Steps to deploy java application from scratch.

    Hello All,
    in our company we have weblogic 10.3.6 with fusion middleware (11.1.2)   forms & reports.
    I created two managed server FORMS , REPORT to deploy  Oracle Forms & Reports.
    Now our management wants to deploy java files in weblogic.
    Do I have create a managed server in weblogic to deploy java files?
    So Could you please provide the steps from a scratch to deploy java application?
    Thanks,
    Ahmed.

    Hello Rosario,
    thank you for your response,
    As you mentioned in your prior pot that  "or create a new Managed Server to Deploy the java application."
    We must create a new managed server to deploy java files,
    Could you please provide me the steps to create that a new managed server?
    I am already  searched in internet, I found you have to create a machine then assign that a new server to it, is it ok or there are another steps?
    what is the modification we have to set it in "formsweb.cfg & default.env" files?
    Regards,
    Ahmed.

  • How to deploy webcenter application

    Hi,
    How to deploy webcenter application? I mean not in the Integrated Server provided by Jdev.
    Can anyone specify the steps whcih I can follow?

    Thanks for the info.
    I have installed WLS and after that Webcenter and created a domain for weblogic.
    After I start my weblogic and managed server I can see that Admin server and WLS_Portlet manged server are in running state.
    Now inorder to deploy webcenter application should I need to prepare a environment by creating a new managed server and all as mentioned in the document :
    http://download.oracle.com/docs/cd/E12839_01/webcenter.1111/e12405/wcadm_deploy.htm#BABCBJAD
    Or
    Can I deploy directly on WLS_Portlet managed server?

  • How to deploy Java an application in CE

    Hello all,
    This question I already posted before. Since I try to open the thread one more time to expect a desired answers from u people.
    I have downloaded CE trail version from SDN. It's running fine. and No SDM service is running there. My concern is how to deploy a java application in SAP J2ee engine with out SDM service.
    Experts plz suggest me how do I proceed to deploy application in CE.
    Many Thanks

    Hello Yahagiri,
    Go through this link hope this is useful to you..
    http://help.sap.com/saphelp_nw04/helpdata/en/76/fb72ec091f4bf8a2d8ba321bb7e8d9/content.htm
    Thanks,
    satya ..
    Reward if it is useful..

  • How to run Java Application in Weblogic 8.1

    Hi,
    I'm new to Weblogic 8.1. I just deployed a EJB with WebLogic 8.1 Server and I
    don't know how to run my Java Application against the EJB I deployed earlier.
    I tried to run "java Client_1" in a console window. It gives me the following
    message:
    C:\temp\WebLogic\new>java Client_1
    javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.
    WLInitialContextFactory. Root exception is java.lang.ClassNotFoundException:
    we
    blogic.jndi.WLInitialContextFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:198)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:217)
    at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.jav
    a:42)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    49)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:195)
    at Client_1.getInitialContext(Client_1.java:55)
    at Client_1.main(Client_1.java:14)
    C:\temp\WebLogic\new>

    hi,
    i solve this one after check bea documnetaion.
    with regards
    jp

Maybe you are looking for

  • Video on the iPod

    It would be nice to see the iPod have the ability to use a video/audio connector to be able to take images and create a slide show out to a video device and use the music on the iPod as background music. I know my digital camera does this now with th

  • How to run process flow outside owner project?

    Hi, I have two process flows (process_flow_A and process_flow_B) in two different projects (projectA, projectB). Process_flow_A has to be run after process_flow_B is finished. So what I am thinking now is either put process_flow_A in Project B or put

  • How to handle BEA-382108 error in route error handler?

    Hi, I have a proxy service with error handler at route level. when any wrong inputs are given to this proxy the Biz will generate fault with error as BEA-382108 having error message as XPATH can only be done for XML or MFL content. This is error is h

  • Weblogic 5.1 SP12 Evaluation copy : License expiration error

    Hi, I downloaded the evalution copy of Weblogic Server Version 5.1 SP12 for the Windows NT on 08/12. However I am unable to run the Weblogic server because of the license expiration error. The license file shows the expiration date as 08-Jul-2002. Co

  • Reorder New Item

    Hi All, Under HGrid region, I create two items (messageStyledText) through Personalization and set its property. Both column appearing on page properly but when i try to reorder according to requirement, it is always displaying at end of the table. M