How to Deploying Application Which consists .jpr project file in JDeveloper

Hi,
I Successfully compiled my application in JDeveloper 11g, My Project consists of .jpr file which loads all the source files. I added this .jpr file to New Application by creating a .jws in JDeveloper.
When I run my application, I am getting the Deployment Error, How to deploy a project which consists of .jpr as project file in JDeveloper 11g.
The Same was running in Oracle JDeveloper 10.3.3 version perfectly there the Server was OC4J but Here the Server is WebLogic.
can anyone help me out in solving this,
Thanks
Srinivas Reddy P.
Edited by: user10952409 on Mar 31, 2009 7:17 AM

If the exampleClass1 does have a public method which is called from the main method, when you run it from the command line
should work like this
// sample class
public class ExampleClass1
    // C'tor
    public ExampleClass1 ()
    public void testmethodWith3Params(String aS1, String aS2, String aS3)
        // do the work here
    public static void main(String[] args)
        String p1;
        String p3;
        String p3;
        ExampleClass1 xyz = new ExampleClass1();
        // read the params into p1,p2 and p3
        // omited the code
       // call the worker method
       xyz.testmethodWith3Params(p1,p2,p3);
// now instead to call the main method you call the workter methos from your web app like
ExampleClass1 aaa = new ExampleClass1 ();
aaa.testmethodWith3Params(param1, param2,param3);
...If you don't have a method (or don't know it) you can call it via the main method like
String [] param= {p1,p2,p3};
ExampleClass1.main(param);Timo

Similar Messages

  • [Forum FAQ] How to deploy applications remotely

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • ADF Mobile Client: How to deploy application data to blackberry simulator

    Hiiiii
    If anybody knows how to deploy application data to blackberry simulator then let me know.
    I have developed one small application then i have published data and deployed appliction but when i run it on simulator it gives me following exception
    Exception in Application.InitializePackages : oracle.adfnmc.AdfNmcException
    [oracle.adfnmc.bindings.dbf.InitializeBindingContextVisitor.visit(BC4JDataControl)]null
    One more question when we publish the data that time only it is copyed to MOBILEADMIN (Oracle Mobile Server Repository) schema or we need to do it manually.
    Thanks in advance.

    Try searching following file
    BB_ADFNMC_Bindings
    and all files with BB_ADFNMC_*
    these are approx 10 files , copy all of them into simulator folder inside RESERCH IN MOTION folder
    or load these through simultor->File->Load Blackberry Application .
    I hope it should help :)

  • How to deploy application created in SAP MI 7.1 on Mobile Device.

    Hi Friends,
    I have developed a m employee application in SAP MI 7.1 through Netweaver Developer Studio running succesfully on mobile simulater.
    I have also successfuly Installed SAP MI Client 7.1 on my mobile device.
    Now I am struggling with how to deploy my application on mobile device.
    Is there any way that I can simply copy the working project files from developer studio and paste them in Mobile Device to make the application work on mobile device as well.
    or is there any other method to do this .
    Please Suggest.
    Regards
    Nitesh.

    <pre>
    Hi Amit
    Firstly I created the
    1. Employee_sc Service in the Service Explorer
    2. Employee_UI in the handheld UI explorer.<
    3. Emplyee_app in the 'Applicaton Explorer' where I included both the service and the UI together.
    Then I deployed all three in the default Mi location and tested in the simulater . It works fine in simulater.
    In the First View of my application I am not displaying any data from the DOE.
    In the first View I just have the butons to create, search and delete employee details.
    In my whole application I am not using any data objects from the backend. The dataobjects are creted in the frontend (NWDS) only.
    Now Instead of AWT I Installed JSP Container. It is now Showing The employee application.
    But as soon as I click the application it gives the execption.
    Error: 500
    Location: /me/startInternal Servlet Error:<br>
    java.lang.NullPointerException at com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.findFramework() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.startApplication() at <br>com.sap.tc.mobile.cfs.jspui.MainServlet.LaunchApplication() at com.sap.tc.mobile.cfs.jspui.MainServlet.doHandleEvent() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetThreadSafe() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at com.sap.tc.mobile.cfs.jspui.MainServlet.doGet() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doPost() at com.sap.tc.mobile.cfs.jspui.MainServlet.doPost() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at <br>org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at <br>org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at <br>org.apache.tomcat.core.ContextManager.service() at <br>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at <br>org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at <br>java.lang.Thread.run()
    <br>The contents of Jscout File are :-
    NSIcom Ltd., CrEme(tm)
    CrE-ME J2ME(tm)
    CrE-ME V4.12h B162.221008 22-Oct-2008
      MemoryLimit=64000Kb
    EBCI(TM) Interpreter V1.00,
    Copyright 1998-2002 by Bytecodes, Inc.
    java.io.IOException: SysCall : bind() failed
         at java.net.PlainSocketImpl.bind()
         at java.net.ServerSocket.<init>()
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    java.lang.IllegalArgumentException: SysCall : bind() failed
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    Error starting the framework
    java.lang.reflect.InvocationTargetException: java.lang.IllegalStateException: Cannot initialize framework
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    CrEme jsPexit() called with status=1
    Please Suggest.
    Regards,
    Nitesh
    </pre>
    Edited by: Nitesh Harit on Nov 24, 2009 1:30 PM

  • How to remove words which consist of max 2 letters?

    Hi everybody,
    Is it possible to remove words from string which consist of max 2 letters using REGEXP_REPLACE?
    For example string is 'aa bbb cc dddd' and result should be ' bbb dddd' (3 spaces) or 'bbb dddd' (1 space). It does not matter which one of results.
    Or exists another method to achieve this?
    Thank you.
    Matus.

    Try this.. should work for even punctuations and digits etc.
    It might be done more simpler but this is my try.
    Combined Anthony Wilson and Tom kyte:-)
    WITH t AS
         ( SELECT 'aaa''123 bb cc dddd l mmmm' l
            FROM DUAL )
    SELECT     MAX ( SYS_CONNECT_BY_PATH ( word, ' ' )) scbp
          FROM ( SELECT word, ROWNUM rn
                  FROM ( SELECT    REGEXP_SUBSTR ( l
                                                 , '[[:alpha:][:graph:]]+'
                                                 , 1
                                                 , LEVEL
                                                 ) word
                              FROM t
                        CONNECT BY LEVEL <=
                                        LENGTH ( REGEXP_REPLACE ( l, '[^ ]', '' ))
                                      + 1 )
                 WHERE LENGTH ( word ) > 2 )
    START WITH rn = 1
    CONNECT BY PRIOR rn = rn - 1G.

  • How can I PRINT folders from FCE project files?

    Over five years of underwater videography I have accumulated several TB of footage, organized into FCE project files by ocean locale and further sorted by subject matter in "clips" folders in the project files.  I use the "log note" field for descriptions, eg scenery, vertebrates, invertebrates, divers. 
    I understand the product incompatibilities that make my FCE project files unreadable by other software, and I am also beginning to doubt that I can keep my late 2007 MBP running indefinitely.  So I want to generate a hard-copy directory to my media drives by printing out the contents of my "clips" folders.  While I still can...
    Thanks for any ideas or suggestions on how to do this. 
    Sharron Sussman 

    Meg, do you happen to know which versions of FCP will import FCE 3.5 projects?  Apparently Adobe Premiere Pro will import FCP projects but not FCE - the format needs to be XML, which FCE does not generate. 
    There's some old FCP software available from 3rd party sellers but I know there are incompatibilities between versions of FCP & FCE of  different ages, and would like to avoid them.
    If I can make my projects accessible to another editing program, even if it's a lot of work, I'd be happy to leave FCE behind at this point...
    sharron s.

  • Deployed application does not contain javascript files

    Hello,
    I am a unexperienced user of the BPM Studio. When I start my application in Oracle BPM my application does not contain the javascript files. It is quite weird, because the path to the .js files is proper - the application works on other computers. I have observed several weird things:
    - when I lookup the application in Firebug, when I try to lookup the source of the .js files, firebug console presents something like this (i deleted most of the html so that it is easy to read):
    <html><head><title>Apache Tomcat/5.5.15 - Error report</title>
    <body>HTTP Status 404 - /workspace//webRoot/webResources/js/jquery-1.4.2.min.js
    Status report message /workspace//webRoot/webResources/js/jquery-1.4.2.min.js
    The requested resource (/workspace//webRoot/webResources/js/jquery-1.4.2.min.js) is not available.
    <h3>Apache Tomcat/5.5.15</h3></body></html>- as i said - the application works just fine on other computers, without having to edit the path to the .js files
    - the application doesn't deploy the application (at least I think it does not) in the OraBPMStudioHome - the application is in the following folder:
    C:\Users\<username>\AppData\Local\VirtualStore\Program Files\OraBPMStudioHome\webapps\workspace\webRoot
    I am using OracleBPM Studio 10gR3, my system is Windows 7 Proffessional 64bit. Could the fact, that my system is 64 bit, cause the error?
    I haven't changed anything in the web.xml, workspace.properties files.
    It looks as if the server didn't include my js files. What may be causing this? I tried to locate the folder where the Tomcat Server deployes the application, and copying the js files where they should be manually, but that didn't work out well - the web application still does not see them.
    By the way, the double // slashes in the path to the .js file are fine on other computers, but is that proper?
    My application uses other scripts, not only jQuery, so changing the link to the jQuery file, won't work.
    I'd be very happy for any solution, thanks in advance!
    Chris Mejka
    Edited by: 789731 on 2010-08-20 01:20

    Nope, that's not the case; all the imports are handled by the <fuego:webResources /> tag, like this:
    <script type="text/javascript" src="<fuego:webResources relativePath='js/jquery-1.4.2.min.js'/>"></script>If that helps, the folder structure, with the .js files is as follows: ../webRoot/webResources/js/ ....
    As I said before - none of my colleagues, who use this application, has this problem, the application runs fine on other computers. The only (or at least that's what I think) difference, is that I use a 64 bit OS... Maybe that's the problem? Or maybe something is wrong in one of my BPM configuration files?
    Edited by: 789731 on 2010-08-20 02:29
    Edited by: 789731 on 2010-08-20 04:42

  • How to deploy .WAR or .EAR  or .SDA file

    dear friends,
    I created a dictionary file and an ear file.
    From Netweaver studio i configured SAP J2EE Engine with the IP address and the port number as 3601 ( even i tried 3601, 50000)
    But after selecting file and click on deploy, it is giving
    Deployment aborted message.
    But i can deploy .par file from netweaver with out any problem.
    Can anybody tell me how to deploy .ear and .sda files
    What are other ways i can deploy
    early reply appreciatd
    kantha

    Hi Kantha,
    you can try to deploy via SDM (Software Deployment Manager)! Check this link for more info: http://help.sap.com/saphelp_webas630/helpdata/en/05/4fac3e00c8b014e10000000a114084/content.htm
    Hope this helps,
    Robert

  • How to restore a song from the "Project File Backups"

    Help! I recorded onto an external harddrive, then copied all the project folders to a different drive. Now, I can't find the project files, but I can find the "Project File Backups" in the Project Folders. I suspect the original project files were saved separately from these folders on the original hard drive, but that is long gone, so I am hoping some one can tell me how to recreate the project from the files in the "Project File Backups" folder.
    ANOTHER CLUE: Stranger still, I can't find any of my logic song files using FILE>OPEN, SPOTLIGHT, nor FINDER- Only those that still populate the "open recent" list.
    Any ideas? Thanks friends!

    Hi there
    Your Project File Backups are simply the previous Project files you've saved. These files are essentially the strip settings, layouts, midi, and pointers to the audio files of your Project.
    If you have trashed the audio files then your are outta luck. This is why you should Consolidate (File-->Project-->Consolidate) all of your projects into one Project Folder on your HD. That way all of your Audio files as well as your sample files and UltraBeat files remain consolidated within a Project Folder. You can then Copy that entire Project folder to another location and have all of the respective files for that Project.
    Sorry for your loss.
    Regards,
    bb

  • How do I read a Premiere 6 project file?

    I had Premiere 6 on an old Mac a few years ago, and created a project using footage of an event from two MiniDV cameras, one stationary and one mobile. Edited them together into a seamless video using the stationary footage as my base and cutting to the mobile (video only) when it had a better shot. But I never printed this project to video.
    That old Mac is now gone, and my new one won't run Premiere 6. I have a copy of Final Cut Express and would like to recreate my project in it (still have all the source clips). I figure that I should be able to take the in and out points listed in the Premiere project file and use them to quickly set up the same timeline in an FCE project that I had in my Premiere project, but I haven't been able to figure out that information when reading my project file in a text editor.
    Does anyone have a resource for interpreting the contents of a Premiere project file?
    Thanks,
    Paul

    Paul,
    The Project file (PROJ, IIRC, though probably without that actual file extension on the Mac) is XML with links to the media, and then instructions for Premiere. Actually "reading" and making much sense out of it, will be difficult, but you should be able to Open it in most document viewers. On a PC, one can use NotePad, but as the fiile will not have a recognized file format, one must use the All Files dropdown. Not sure about Mac document readers, but it should be the same, or very similar.
    Now, and likely not of much use to you, those old Project files can be Opened in later versions, but with limitations. As Pr 6.5 was the last version that was X-platform, until CS3, there is a big gap (Pr 7.0/PrPro 1.0 and PrPro 2.0), and IIRC, Mac CS3 of PrPro could not Open the old versions. The workaround was to befriend a PrPro PC CS3 user, who could Open the old version, and then just Save to a CS3 PRPROJ file, that later Mav versions could handle. Several later Mac users, had to use that workaround, and at the same time, also made friends with some PC users. Not sure if there are any newer workarounds.
    Also, I cannot recall when Adobe added more support for going from/to FCP and PrPro, but I doubt that even if you had Mac Pr 6.0, it would offer many useful options. Others will have to fill in the blanks there.
    Wish that I had more to offer, but my exploration of older Pr Mac Project files was limited to Opening them in PrPro 2.0 on my PC. Most Opened just fine, with but a few minor exceptions (some Transitions failed to translate, as did a few 3rd party Effects. PrPro was kind enough to point those out, and even give me the TimeCode, plus the name of the missing Transitions, and Effects. That does not help you though.
    Good luck, and maybe you will be better at reading those XML instructions, than I  have been. Other than finding missing/broken links to Assets, it all looks like Greek to me.
    Hunt

  • How to re-insert accidentally removed bpel.wsdl file in JDeveloper

    I have accidentally (still don't know how...) removed the bpel.wsdl file from the Integration Content area and I can't re-insert it anymore although the file itself is still available on the harddisk. Simply importing it through the file menu results in the WSDL being inserted in the miscellaneous packages area and JDeveloper doesn't recognize the file at the time of deployment.
    Can anyone help?
    Thanks in advance.
    Robert

    Robert,
    2) things ..
    search your project for occurences of <processname>.wsdl.
    it should still be in bpel.xml and and <processname>.bpel. ..
    if it's there open the jdeveloper project file (.jpr) with an editor and search for
    <listOfChildren class="oracle.ide.model.DataList">
    add this within the tag
    </Item>
    <Item class="oracle.ide.model.Reference">
    <URL path="<yourProcess>.wsdl"/>
    <nodeClass>oracle.tip.tools.ide.common.utils.BPELWSDLNode</nodeClass>
    </Item>
    and restart jdev ..

  • How to deploy Shared Variables with aliases (Project Variable), when some machines are offline?

    Hi all,
    I have a distributed application (PC + a few CompactRIOs). My PC contains variables that have aliasing enabled -- they are bound to variables on the cRIOs.
    One of the cRIOs is currently offline. I'm trying to deploy some changes I've made on the PC side. Unfortunately, LabVIEW refuses to deploy my PC libraries, because it can't connect to the cRIO that the variables are bound to.
    How can I bypass that check, and force my PC to update? (I don't see why it's compulsory for the cRIO to be online for this :-/)
    Thanks in advance!
    Solved!
    Go to Solution.

    Thanks for responding, Esteban!
    To answer your questions:
    No error codes. The deployment dialog just says, "Failed to connect to Real-Time target". That's expected, because the cRIO is not connected to the network.
    I'm binding simple numeric types only.
    The cRIO has been taken offline for maintenance. I'd like to update my PC .lvlib files, and test some modified PC code, but I can't because LabVIEW won't let me deploy my PC libraries or run the VIs if it can't find the cRIO. (Here's another common use case: I'm developing software before I've received my hardware, and would like to test my VIs without a cRIO connected)
    I've attached a minimal example (LV 2012 SP1). I have a VI on the PC that plots data from the cRIO, and processes local data. I'm trying to run the PC VI when the cRIO is offline.
    Expected outcome: The VI should run, and "PC Output" should change according to "PC Input". "cRIO Output" should have a default value, and the PSP LED should be red -- mousing over the LED should say "Bad Quality".
    Actual outcome: LabVIEW refuses to run the VI completely, saying "Failed to connect to Real-Time target".
    Attachments:
    Project Vars.zip ‏10 KB

  • How to deploy application as a single unit

    Hi
    I have an application in jdeveloper that contains several bpel projects , some esb projects and some pure java based web service projects. Now i want a mechanism to deploy this whole application as a single unit on a production environment server. I know obant tool but problem is that it can deploy a single project and not a whole application. Any pointers on that how i can achieve this task?
    Thanks.

    Thanks ashish, with your help i am able to deploy several bpel projects at one go.
    But i am facing problem with auto esb deployments using ant build. As suggested by you i downloaded documentation.zip and executed steps given in it.
    When i run ant , it shows build successful but when i goto esb console nothing comes up(ie esb projects is not getting deployed).
    Here is my ESBMetadataMigrationTaskdefs.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - The import of this ant build file, by another ant build file, enables the
    - use of the custom ant tasks present in ESBMetadataMigration.jar
    - Doug Gschwind
    - 12 Dec 2006
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <project name="ESBMetadataMigrationTaskdefs">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES, Subject to the installation environment
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <property name="commons.httpclient.home" value="C:/ForEsbAutoDeploy/commons-httpclient-3.1"/>
    <property name="jaxb.v2.0.2.home" value="C:/ForEsbAutoDeploy/jaxb-ri-20060801"/>
    <property name="soa.suite.home" value="C:/product/10.1.3.1/BSNLEAIAS"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Custom ant task definitions, to enable import.
    - This section should be treated as immutable upon installation.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <dirname property="imported.basedir" file="${ant.file.ESBMetadataMigrationTaskdefs}"/>
    <echo>
    imported basedir is:: ${imported.basedir}
    </echo>
    <taskdef resource="oracle/tip/esb/client/anttasks/antlib.xml">
    <classpath>
    <pathelement location="${imported.basedir}/ESBMetadataMigration.jar"/>
    <pathelement location="${commons.httpclient.home}/commons-httpclient-3.1.jar"/>
    <pathelement location="${soa.suite.home}/lib/xmlparserv2.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-logging.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-codec-1.3.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/oraesb.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/activation.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jsr173_1.0_api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-impl.jar"/>
    </classpath>
    </taskdef>
    </project>
    =======================================================
    Here is my build.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <project name="ESBMetadataDeploymentTestProject" default="usage">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <property name="esbProjectToDeploy" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest"/>
    <property name="deploymentPlanFilename" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest\testDeploymentPlan.xml"/>
    -->
    <echo>Import ESBMetadataMigrationTaskdefs</echo>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Import, to enable the custom ESB Metadata Deployment ant tasks ...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <import file="C:/ForEsbAutoDeploy/ESBMetadataMigrationTaskdefs.xml"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Deployment Automation
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="test.DeployESBProjects">
         <deployESBProjects esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8888"
    userName="oc4jadmin"
    password="welcome1">
         <esbProject directory="C:/jdevstudio10133/jdev/mywork/AppAutoAnt/ESBProject1"/>
         </deployESBProjects>
    </target>
    <!--
    <target name="test.UndeployESBEntities">
         <undeployESBEntities esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8889"
    userName="oc4jadmin"
    password="oc4jadmin">
         <system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
         <serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
         <service guid="0547F370841611DBBFCF2D9BF80323FA"/>
         <service guid="05458270841611DBBFCF2D9BF80323FA"/>
         <system guid="86443990871611DB8F2675C60E6C31C6"/>
         <serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
         <system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
         <system guid="D9F290E1896011DBBFBC9530C01627AC"/>
         <system guid="A9B213C1895F11DBAF1483EEF470B835"/>
         </undeployESBEntities>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Metadata Promotion to different ESB Metadata Servers (environments).
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <target name="test.ExtractESBDeploymentPlan">
    <extractESBDeploymentPlan sourceDir="${esbProjectToDeploy}" deploymentPlanFile="${deploymentPlanFilename}"/>
    </target>
    <target name="test.DeployESBSuitcase">
         <deployESBSuitcase esbMetadataServerHostname="localhost"
    esbMetadataServerPort="8889" sourceDirectory="${esbProjectToDeploy}"
    deploymentPlanFilename="${deploymentPlanFilename}"
    forcedDeployment="false"/>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - USAGE
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="usage">
         <exec executable="ant" dir="${basedir}" vmlauncher="false">
         <arg value="-projecthelp"/>
         </exec>
    </target>
    </project>
    I guess i dont need those UndeployESBEntities target and ExtractESBDeploymentPlan target , so i have commented it. Also all the jars mentioned are correct(with versions >= mentioned in the document.).
    Thanks.
    Message was edited by:
    sameer h

  • How to deploy Application in JDeveloper?

    hai
    i am using JDeveloper 10g version 10.1.3. i am working on Web Application[JSF,ADF BC].i create 2 JSPpages link with one another and do some operations on it. how can i deploy this application in another system.(for example the another person in another system is able to see my application)
    how to do this
    thanks in advance
    C.R

    You mean another network? If you are on the same network you can just use the URL of the embedded OC4J or App. Server.
    Ronald

  • How to Deploy application in CE 7.1 Nwds

    Dear Friends i managed to install CE7.1 recently,
    now i selected a webdynpro perspective and created a simple application
    configured the portal appilcation server with nwds using
    Window > Preferences > SAP AS Java (gave server name and last digit of the port, in my case it is 3905 so i entered 5 in Host)
    just created a simple label"Hello World" my aim is to just deploy this apllication to the portal server just like any other simple application i was doing in nwds 7.0.9
    Now when i want to deploy this application i am not able to find
    1. Under Show View i am not able to find J2EE Engine just like previous old versions.
    2. In the Deploy View Console i can see the following things .
    Start Deployement
    Checking for SDM Host.
    Found SDM Host: srepldev
    Created Temprory copy:nwds71prj.ear................. nothing happens after this...
    the error occuring here is
    "Your system has no program registered for file
    http://srepldev:-1/webdynpro/dispatcher/sap.com/tcwdtools~admin/Explorer.
    Change the file association or choose a different help web browser in the preferences"
    srepldev is my dev. server and HOST what i gave was 5.
    Any Hints? points assured.
    Edited by: Jack on Aug 30, 2008 11:33 AM
    Edited by: Jack on Sep 2, 2008 10:17 AM

    Still i am facing this issue:
    the deployment error of the NWDS is as follows
    Deployment finished with warning
    Settings
    SDM host : epldev.house.com
    SDM port : 50418
    URL to deploy : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
    Result
    => deployment not executed : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
    Unresolved dependencies found for the following SDAs:1.: development component 'helloworld'/'company.com'/'localDevelopment'/'20091201131334'/'0'dependency: name: 'tc/aii/base/offline/facade' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/logging/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/exception/lib' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/wd/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/jrfc/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/ddic/runtime/facade' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.Deployment will be aborted.
    Deployment exception : Got problems during deployment [WARNING: Dec 1, 2009 1:20:18 PM /userOut/daView_category (eclipse.UserOutLocation) [ThreadDeploy Thread,5,main]]
    Can anyone help please i am looking for this answer from a very very long time??

Maybe you are looking for

  • Write a simple string to a file.

    I have a string that is formatted with new lines that I want to write to a file as is. I have not been able to create a File Partner Link that can successfully write the content. The opaque approach creates an empty file. I have tried defining a new

  • How do I get a calendar notification with travel time/traffic info?

    Hi everybody, I saw an IOS 8 screenshot showing a calendar reminder in the lock screen that not only showed the upcoming calendar event info, but also said something like "to be in time, you should leave at 11:31". On the web page showing that screen

  • Network - Windows connecting to Mac printer.

    I'm having trouble getting Windows XP to print to the Mac shared printer - It says its getting the drivers, and then the printer shows up in options, but when I print to it, the printer just never prints. How do I get it to actually print? Brian

  • Transfer the material from one plant(non valuated) to another plant valuat

    Hi All, How to transfer the material from one plant(non valuated) to another plant valuated. Which Goods Movement type we required to use. Regards, Amit Shah

  • Problems with temporal hierarchy join in BI7.0

    Hello, I am using the new feature temporal hierarchy join which enables viewing historical data over a time-dependent hierarchy. Now this works fine as long as the hierarchy is being used in rows or columns. However if I use a hierarchy node as a sel