Deploy project using  Jdeveloper with native library (dll)

hi
i need to deploy project using Jdeveloper but the generated jar dose not include native library dll file .

it is ok now
using deployment in properties of project and add new file group of type dependency analysis

Similar Messages

  • What is the Design to Deployment Workflow using DW with WordPress?

    I am a Designer and Developer/programmer. This is a complete workflow question: What is the Design to Deployment Workflow using DW with WordPress? For example, is it:
    PS/IL > DW > WP? (Photoshop or Illustrator, Dreamweaver, WordPress?)
    Or is Edge Reflow inserted between PS and DW?
    PS > ER > DW > WP?
    Are these workflows iterative and, whats the word, recursive - we are able to go back and forth?
    My understanding is that the Edge tools are not up to the coding standards of DW, and ER > DW (Edge Reflow to Dreamweaver) is not seamless or even practical.
    Where does the Stack come in? MAMP (or LAMP/WAMP) of course, jQuery/jQuery UI, WordPress and other items; how integrated are these things?
    I used to be a Flex developer and quite comfortable with the Design to Dynamic Deployment workflow of Illustrator or Photoshop to Flash Catalyst to Flash Builder; moreover, I thought the Eclipse IDE was excellent with its database introspection capabiliities, debugging etc. Adobe really pushed this workflow, then instead of innovating and standing behind its own product with 98% market penetration, Adobe disembowelled Flash right before everyones eyes.
    What about Prototyping, which is certainly part of the process? Fireworks is on the kibosh. Illustrator, while excelling at some aspects falls short of making a functional prototype (unless you're tying in Acrobat to link the pages), and while Photoshop is Edge Reflows darling, Edge seems redundant with DW and spits out twacky code.
    (Muse of course is unusable for professional developers, but it makes you wonder why some of those UI elements where not employed in DW whose interface seems antiquated by comparison).
    It seems Adobe is bloody all over the place, more like a rabbing drunk with a microphone rather than the dependable go-to software company for creatives the world over.
    In my opinion, workflow from beginning to end is important. Having a million different options to try to accomodate everyone is not. Some guidance in this department is greatly appreciated!
    Best,
    Dylan

    I have not used Edge Reflow myself.  Nor do I espically like WordPress.  But my typical workflow is:
    PS for Design Concept and web images.
    DW for CSS, HTML & JavaScript.
    3rd party editors like Zend Studio & Navicat for PHP & MySql development.
    Nancy O.

  • How to use jdeveloper with linux?

    how to use jdeveloper with linux?
    Hello, i've download jdeveloper, and i have java1.4 installed. But i can't run jdeveloper i have jdev.exe and jdev but when i put /usr/local/jdev/bin/jdev a have a message like file not found. I don't know what to do.
    Help please!!!
    Ori.

    You need to go to the directory where you unzipped JDeveloper, for example:
    cd opt/jdev/jdevj2eebase1013/jdev/bin
    Once there, do this:
    chmod +x jdev
    chmod +x ojc
    Now you can try this:
    nohup ./jdev &
    or simply
    ./jev
    I usually create a soft link in ~/bin

  • How to use JDeveloper with manifest.mfs?

    I'm trying to figure out how to use JDeveloper to setup a J2EE application that contains two Web applications so that the Web applications will share the same instance of a log4j library.
    I've created the two Web apps and their deployment profiles and I've created a deployment profile for the EAR that contains the two Web apps. I've successfully deployed the EAR to the stand-alone OC4J on my development system and run the two Web apps. Currently the two apps use a log4j library in j2ee\home\lib, but that option doesn't support using separate log4j.properties files for each application.
    I've read the pre-release 9iAS 9.0.4 Servlet Developers Guide document and would like to use the third option described in the Guide's appendix that tells how to share the log4j library by specifying the log4j.jar file in a class-path entry in manifest.mf.
    My problem is I just don't understand the in's and out's of using/creating manifest.mf files with JDeveloper and its deployment profiles.
    Do I create manifest.mf's myself, and if so where should they be in the source folder heirarchy? Should the manifest.mf files for both Web apps include class-path entries for the log4j library, or only the manifest.mf file for the EAR? What are the right manifest.mf settings to use in the deployment profiles for the Web apps and the J2EE app?
    For example, should the EAR deployment profile be configured to merge the manifest.mf files of the two Web apps? Is it necessary to make one of the Web apps dependent on the other Web app?
    Thanks,
    Al Margheim

    Hi,
    Thought I'd use the same subject, because it matches my problem. The questions are:
    1. How do I get JDeveloper to use MANIFEST files properly? I'm using 9.0.3.1 and I have tried (un)checking different options in the EJB JAR/EAR deployment profile, but I never get the archive structure I want.
    2. How do I include third-party JARs in the final EJB JAR/EAR? Any attempt I make to include a library JAR ( via Project Settings or by adding to the project) gives me an expanded set of classes contained in the JAR file, which is something I don't want.
    Of course, I could easily achieve all that I want with Ant, and it will have to be outside JDev (using Ant within JDev prevents JDev from offering me its "full feature set"!). But I'd like to be able to do this while I'm still in the IDE (for what it's worth).
    Any suggestions/recommendations/pointers are welcome.
    regards
    George

  • Deployment of Java App with 3rd party dll

    Hi,
    I am developing one application on windows environment. I am using netbeans 6.0 as my IDE. in this application I have to use 3rd party dll along with one 3rd party jar library. this jar library hides all the implementation of the native methods. So i don't have to use native methods in my application directly which means that I just need to call the java classes of the vendors jar library. I am able to execute the application in Netbeans. but I am not able to deploy the application. I want to know that how should i deploy my application which will be simple jar with vendors library and the dlls, so that user just have to run the application just through the command line( java -jar myapp.jar)

    no you didn't understood the question. Wrong.
    I understood the question.
    You however didn't understand the response.
    So let me expand on it.
    The library consists of java and dlls. There is absolutely no way that it will run on a client box without the dlls. So they must be delivered in some way.
    Now I suppose they could have encrypted/packed the dlls in some fashion but that isn't likely. And if it is then the java code of the library is responsible for loading them and there will be nothing you can do about it.
    Excluding that.....
    Shared libraries can ONLY be loaded via one of the following methods.
    1. The dlls must be in the PATH environment of the application
    2. The path must be explicitly provided in the application.
    For the libraries you have one of the following will be true
    1. The dlls must be in the PATH environment of the application
    2. The path must be explicitly provided from your code and passed to the library code.
    3. You must explicitly load the dlls in your code and hope that the library code is smart enough to deal with it.
    For option 2 the library must provide a method for you to pass a path.
    For option 3 the library code must be written to support this.
    For option 1 you will need to modify the client in some way to provide for the PATH (which you can do in various ways, none of which have anything to do with Java specifically although 'WebStart' or whatever it is called might do it.)

  • Urgently!! Deploy project using Struts and Toplink

    Hello. I want to make a deploy of a project in wich I'm using Struts and Toplink technologies.
    I'm using JDeveloper 10g for Windows and my production server is a SUN V880 with Soloaris 8 and I make it ok, but when I run it since a PC in the intranet the following errors appears (obviously those don't appear before):
    java.lang.NullPointerException     at org.apache.struts.taglib.html.JavascriptValidatorTag.doStartTag(JavascriptValidatorTag.java:309)     at jsp.login._jspService(_login.java:50)     [SRC:/jsp/login.jsp:5]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:536)
    Thank you so much for help.

    NOO!! :( I don't install any libraries in the server, but in the WAR file of the application, in the lib folder, there was the jars corresponding. I thought that those libraries, in the WAR file, was "local" to the project, anyway, the Struts and Toplink libraries must be global at server level, 'cause I will use it sure once agian, and now I'm trying to install those in the server...
    Thank you so much!!

  • Deploy project using sql query

    hi
    i am trying to deploy project in ssis catalog using below query.
    Exec
    catalog.deploy_project@folder_name
    =@folder,@project_name
    =@ProjectName,@Project_Stream
    =@ProjectBinary,@operation_id
    =@operation_id
    out
    getting error:
    (1 row(s) affected)
    Msg 27203, Level 16, State 1, Procedure deploy_project, Line 139
    Failed to deploy project. For more information, query the operation_messages view for the operation identifier '51564'.                                                                                                                                                                                                                 
    also when i m trying to opne ispac file , i am getting error :
    TITLE: Failed to launch the wizard
    To launch the Integration Services Deployment wizard, one of the components: Integration Services, Management Tools - Basic or Business Intelligence Development Studio has to be installed by the SQL Server 2012 Standard, Enterprise, Developer, or Evaluation
    Edition. To install a component, run SQL Server Setup and select the component name.
    BUTTONS:
    OK
    is this 2 are related,how to solev it

    Which version of SQL Server are you using? Are you deploying to a server with multiple instances of SQL Server installed? Are you deploying the packages to different server?
    if so does the destination server has Integration services installed ?
    Deploying from the command line. In most large organizations, deployments are done by a DBA or systems administrator. In such environments, it's a great practice to use deployment scripts as much as possible to make the deployments
    more manageable as the number of SSIS packages increases. In SQL Server 2012, you can deploy SSIS packages using the command-line tool ISDeploymentWizard.exe. This tool works with the .ispac file, which is created in the project's BIN directory when you build
    the project in SQL Server Data Tools. The .ispac file for a project typically contains the following:
    The project's manifest
    All the packages belonging to the project
    The parameter file (Project.params)
    If you want to see the file's contents, you can change the extension from .ispac to .zip, then open it in Windows Explorer.
    To deploy the Test_Project project from the command line, you first need to copy the .ispac file to a shared folder. Then, in a Windows command shell, navigate to the folder containing the .ispac file and execute this ISDeploymentWizard command:
    "%ProgramFiles%\Microsoft SQL Server\110\DTS\Binn
      \isdeploymentwizard.exe" /S /ST:File
      /SP:Test_Project.ispac /DS:<SQL Server Instance Name>
      /DP:/SSISDB/MyTest/Test_Project

  • Procedure for hot deploying EJBs using  Jdeveloper and OC4J comtainer

    i am using JDeveloper , please any one help me out in hot deploying EJBs. what is the procedure if i want to hot deploy EJBS

    1) You have to start OC4J with higher Java heap size e.g. java -Xms100m -Xmx150m -jar oc4j.jar
    2) The RMI port by default used is 23791 and configurable by modifying config/rmi.xml.
    regards
    Debu

  • Help with using itunes with 4s library after i upgraded to iPhone 5 and computer power supply went

    long story hopefully an easy fix....
    on wensday my power supply went and had to ship computer across country to Puget Computer Systems as we weren't sure if it was power supply or mobo...luckily it was power supply.
    i daily backed up iphone 4s with itunes (10.7) as i do all music manually, playlists, etc. have like 3,000 plus songs, videos, audiobooks, mail aaccts and about 48 apps.
    so next day (sept 19th) apple comes out with iOS 6 which i update my 4s to with no problem. I wanted a day to play with it to learn my way around.
    next day i wait in line for 8 hours overnite and was #2 in line at apple store for my ATT 32gb white iPhone 5. while at apple store I get my icloud backup which gets all paid music,apps, etc since itunes version 10.3 (i always did both backups so as not to lose my contacts more than anything.
    I have other paid stuff that is in library on computer along with audiobooks and about 2700 more songs.
    my icloud backup put the playlists on iPhone but not most of the music for them as lots were ripped from my cd's.as i double them up making a copy on iPhone and a copy on itunes.
    So I have been using iPhone 5 with no problems just don't have all of itunes library on it. My computer is coming back this week how do I plug in iPhone 5 via USB (which will be seen as new phone even though it has same name) and use my existing iTunes 10.7 library which the backups in iTunes still has iOS 5.1.1 on it?
    There must be an easy way of doing it as i don't want to wipe off iphone 5 again as i don't see any purpose my library is all organized perfectly. I know my way around windows 7 pro 64 bit pretty well just don't know what itunes is going to say once it sees "joe's iPhone" again and installs the usb drivers and icon for it. what will it ask in regards to library and how do i use it with previous iOS on it?
    Thank you very much for the help as I am going to need it.
    yes i broke the cardinal rule of cross posting and apoligize  for it just amazed i couldn't find answer via google nor any apple store genius knew it either.

    Hi All,
    Any help?
    No one has any answers here amoungst all this apple knowledge?
    Thank you

  • Using iphoto with iphoto library on external hard drive

    My Imac is running snow leopard with ilife '11. I have imported way too many photos into Iphoto which is really slowing it down. I'd like to put all of my photos on an external hard drive and use that as my iphoto library--which should be possible, as I gather from reading various other related posts. Another reason to put it on an external drive is so that I can use my new macbook air to edit/organize while on the go.
    1. How do I set up my Iphoto library on an external hard drive?
    2. How do I make sure that all future photos go to the library on that external hard drive?
    3. How do I run Iphoto with the library on an external hard drive?
    THANK YOU for your help!

    Hello. I just transferred my iPhoto library to a Western Digital My Book for Mac external hard drive. Do you know if I needed to format this drive even though it says it's for Mac. I did not format it and there were not any instructions with the drive that said I needed to do it. The transfer seems to have worked ok but my backups from Time Machine onto Time Capsule are inconsistent. I already posed a question regarding this problem but I noticed this message regarding formating the external disk and I wonder if that is causing the problem. Thanks.

  • Regarding ESB Deployment without using JDeveloper

    Hi,
    I would like to deploy my ESB application without using JDeveloper. BPEL Designer automatically creating the build script to deploy the BPEL application. Is there any ant script available to deploy the ESB application in to Oracle integration server.? Please let us know.
    Regards
    Niraimathi R

    Niraimathi,
    I had the same question - see Re: Registering ESB Services without JDeveloper
    Dave Berry from Oracle kindly gave me a sneak preview of the jars and tags required in order to register ESB services from ANT.
    I now have a continuous build environment (using Cruise Control), linked into Subversion which deploys all my BPEL Processes and registers my ESB services.
    I believe that the JARs and instructions on how to register ESB services using ANT will be available on OTN soon.
    Kind Regards,
    Mark.

  • Remote debugging (jboss deployed) ejb using JDeveloper

    Hi there
    Does anyone know how to remote debug an ejb deployed in JBoss using JDeveloper (or perhaps know of a link?)? All I can find is this from Oracle:
    http://www.oracle.com/technology/products/jdev/howtos/appservers/debug_in_jboss.html
    But the cmd to replace in the $bin\run.bat file to enable remote debugging doesn't exist in my version of JBoss (jboss-4.0.1RC1).
    Can anyone shed some light here?
    Thanks very much in advance...Jon

    In run batch file add
    set JAVA_OPTS= -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n %JAVA_OPTS%

  • How to remove project using sql with right sequence

    Hi,
    Tried to remove failed project using queries as per sequence specified as below.But getting below error while running final sql script(delete from epub_process where project = '?')
    SQL Error: ORA-02292: integrity constraint (PUB.PROC_HIST_ID_FK) violated - child record found
    02292. 00000 - "integrity constraint (%s.%s) violated - child record found"
    *Cause:    attempted to delete a parent key value that had a foreign
               dependency.
    *Action:   delete dependencies first then parent or disable constraint.
    delete from avm_asset_lock where workspace_id in
    (select id from avm_devline where name in
    (select workspace from epub_project where project_id = 'prj49024'));
    delete from EPUB_PR_HISTORY where project_id in
    (select project_id from epub_project where project_id = 'prj49024');
    delete from epub_project where project_id = 'prj49024';
    delete from EPUB_PROC_HISTORY where process_id in
    (select process_id from epub_process where project = 'prj49024');
    delete from EPUB_PROC_TASKINFO where id in
    (select process_id from epub_process where project = 'prj49024');
    delete from epub_taskinfo where process_id in
    (select process_id from epub_process where project = 'prj49024');
    delete from EPUB_WORKFLOW_STRS where id in
    (select ID from EPUB_IND_WORKFLOW where process_id in
    (select process_id from epub_process where project = 'prj49024'));
    delete  from EPUB_IND_WORKFLOW where process_id in
    (select process_id from epub_process where project = 'prj49024');
    Getting error while executing this script
    delete from epub_process where project = 'prj49024';
    Please let me know right sequence or how to avoid this error
    Thanks
    Sri

    Thanks Shaik.Slight modification to your query working.
    delete from EPUB_PR_HISTORY where project_id in ('prj213002','prj200001');
    delete from EPUB_PROC_HISTORY where process_id in
    (select process_id from epub_process where project in ('prj213002','prj200001'));
    delete from EPUB_PROC_TASKINFO where id in
    (select process_id from epub_process where project in ('prj213002','prj200001'));
    delete from EPUB_IND_WORKFLOW where process_id in
    (select process_id from epub_process where project in ('prj213002','prj200001'));
    delete from epub_process where project in ('prj202001','prj213002');
    delete from avm_asset_lock where workspace_id in
    (select id from avm_devline where name in
    (select workspace from epub_project where project_id in ('prj213002','prj213002')));
    delete from epub_project where project_id in ('prj202001','prj213002');
    commit;

  • Use JDeveloper with OAF exstension without using EBS

    hey everyone;
    well my question is can i use JDeveloper woth OAF exstensions to develop app without using EBS??

    Why would you want to do that?
    ADF offers much better functionality for your applications if you are not developing for EBS.
    Just pick up the latest JDeveloper version and use it for your independent applications.

  • Error while Deploying composite using Jdeveloper

    Hi ,
    I made app server connection and tested the configuration.
    All the tests ran succesfully. However when I try to deploy my SOA project on server , I am not able to look up soa server .
    Server is on different machine and connected using wifi-router.
    I get following error code :
    java.lang.RuntimeException: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[2001:0:4137:9e76:10f6:922:c56d:8255]:7001: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination]
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.initPartitions(WeblogicSOAServer.java:89)
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.<init>(WeblogicSOAServer.java:68)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listWeblogicSOAServers(ASBrowserHelper.java:275)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listSOAServers(ASBrowserHelper.java:201)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper$RunnableListSOAServers.run(ASBrowserHelper.java:333)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[2001:0:4137:9e76:10f6:922:c56d:8255]:7001: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:788)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:368)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.soa.management.internal.facade.ServerManagerImpl.<init>(ServerManagerImpl.java:76)
         at oracle.soa.management.internal.facade.ServerManagerFactoryImpl.createServerManager(ServerManagerFactoryImpl.java:28)
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.initPartitions(WeblogicSOAServer.java:85)
         ... 6 more
    Caused by: java.net.ConnectException: t3://[2001:0:4137:9e76:10f6:922:c56d:8255]:7001: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:353)
         ... 16 more
    Caused by: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:470)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:321)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:254)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:197)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:200)
         ... 19 more
    Thanks and Regards,
    Sasmit
    Edited by: Sasmit on 9 Mar, 2012 2:44 AM
    Edited by: Sasmit on 9 Mar, 2012 2:44 AM

    Hope this helps.
    SOA Deployment fails with "connect; No available router to destination"
    Thanks,
    Vijay

Maybe you are looking for