Specifying additional libraris

i am trying to compile an app and i get this error.
corelib.swc was built without any errors. i want to add corelib.swc
to the libraries that it compilles/links with.
thanks
mark
../../bin/mxmlc -include-libraries+=corelib.swc
-library-path+=../../../as3corelib/bin on.mxml
Loading configuration file
/www/ask/work/flex/frameworks/flex-config.xml
command line: Error: unable to open 'corelib.swc'
Use 'mxmlc -help' for information about using the command
line.

Yes this is available in only NFS mode check sap help
http://help.sap.com/saphelp_nw04/helpdata/en/3c/b4a6490a08cd41a8c91759c3d2f401/frameset.htm
Thanks!

Similar Messages

  • How to use additional libraries in a project

    I am trying to call an existing EJB from page bean. And for the life of me, I can not figure out how to add additional libraries to Creator project.
    Is it supported at this stage?

    Right click on the References node in the project navigator and select: Add New Library Reference. In the subsequent dialog, specify the path to the jar file you wish to include. This library will be automatically added to the application classpath at design time and deployed with the application when you run the project.

  • Specifying Additional Files in an FTP Sender Adapter

    Hi,
    Has anyone worked out how to specify additional files in a File/FTP Sender Adapter using the FTP transport protocol? This functionality comes 'standard' in the File/FTP Sender Adapter using NFS transport protocol so that additional files can been included as attachments, however, it doesn't seem to be available when trying to use the FTP protocol.
    Thanks in advance.
    Regards,
    Reuben.

    Yes this is available in only NFS mode check sap help
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/b4a6490a08cd41a8c91759c3d2f401/frameset.htm
    Thanks!

  • Specifying additional JMS message attributes in Sender Adapter

    Hi,
    Iam using sender JMS adapter and I have to use the option " Specify Additional JMS Message Properties" for adding addtionalJMS properties in XI message header.
    Once I cselect the option in the below table  Iam not able to add new lines to add addtional JMS Message Properties..But In receiver adapter I was able to add the new lines.
    Is this option graded in SAP PI 7.3 or relatd to any authorization issue..?
    Is anyone faced this issue before.. Please help me out
    Thank you

    Hi everybody
    I'm starting a project where I have to take adptadores JMS and I'm in the same situation kirian, I am need to configure a JMS adapter  with version of SAP PI 7.3 and I wonder if anyone can help me or give me manuals leagues where information comes related.
    Someone can help me with this information
    Regards

  • XI 3.0: Additional libraries for mapping program

    Hello,
    I got the scenario that the program within my Interface Mapping is making use of additional custom java resources (jar's).
    I know that in XI 2.0 I had to put these additional libraries into the directory:
    ..\j2ee\cluster\server\additional-lib
    and register them in the files:
    ..\j2ee\cluster\server\managers\library.txt and
    ..\j2ee\cluster\server\managers\reference.txt
    Now in XI 3.0 I don't have these folders and files anymore. Therefore I simply imported the jar files into the repository...But I do neiter know wether that is the right way at all for registering additional libs in XI 3.0 nor I don't know if I have to import them into the same software component or namespace then the mapping program.
    Does anybody know how to make use of additional libraries within a XI 3.0 Stack 5 landscape? I would very much appreciate any recommendations on that!
    Kind regards,
    Sven Lattermann

    Hi Advait,
    From the below what I understand is that you are not able to do value mapping for the follwoing
    1     A
    2     A
    3     B
    As value mapping allow one to one mapping only. Please do it like as mentioned below
    1     1*A
    2     2*A
    3     3*B
    Then in the graphical mapping of Integration Repository do the mapping for the same as shown below
    source field > VALUEMAPPING> UDF--> TARGET Field
    In UDF suppress the value of  1* , 2* , 3* which can be done as follows
    create one UDF with one input field
    //write the code as below to suppress the field
    return input.substring(2);
    Here the davantage of using 1* , 2* , 3* etc is that you have the option to use value mapping for 100 values which I think is not normally the case for any Interface.
    If you have same source you can do the same thing for that.
    Hope this helps you to resolve your query.
    Thanks & Regards
    Prabhat

  • NoClassDefinitionFoundException when using additional libraries

    I run an applet that has it's classes packaged in a jar file. Since I use additional libraries, that I added to this jar file, running the applet causes a NoClassDefinitionFoundException. The applet can't find the libraries it needs. I created the jar with eclipse's "export as jar", my eclipse-project has the additional libraries in it's build path as external jars. Why can't the applet find them though they are in the archive-jar-file? Where do I have to put them or what do I have to do to make the applet find them?

    If you're doing stuff with applets then I think all the classes have to be packaged in the same jar. A jar inside a jar might work, but I haven't tried it.

  • Running a programm, which require additional libraries

    I am a Linux user and I try to compile a java programm, which requires additional libraries from mindview.net. So I've downloaded it and then I've set my CLASSPATH to ".:..:/home/quba/java/TIJ:"
    Then I've compiled my program without any errors. When I am trying to run it, I see:
    java HelloDate
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloDate (wrong name: operators/HelloDate)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    Could not find the main class: HelloDate.  Program will exit. What am I doing wrong?
    Edited by: qubaaa on Nov 7, 2008 1:46 PM

    java -cp ~/java/TIJ/ HelloDate
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloDate
    Caused by: java.lang.ClassNotFoundException: HelloDate
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    Could not find the main class: HelloDate.  Program will exit.And now what?

  • How to load additional libraries into java

    how can I load additional system libraries into Java?
    ...

    Here is how:
    http://java.sun.com/docs/books/tutorial/ext/
    It is called "Extension Mechanism" and simply put, it let's you add your extension libraries (jar files) in the "ext" directory of your installation of JRE or SDK, and they become available to all java programs without caring of other configurations (like setting the CLASSPATH variable or the like...)

  • Additional libraries of Graphic styles?

    Are there obtainable additional "Graphic Style Libraries" on internet sites?

    http://www.google.com/search?hl=en&q=Free+Adobe+Illustrator+Graphic+Styles&aq=f&aqi=&aql=& oq=&gs_rfai=

  • How to force Jdeveloper to include additional libraries with generated war?

    Hi
    thank you for reading my post
    how i can force the Jdeveloper to include some libraies that i add to application
    in the generated war file ?
    I create a library named mysql and mysql jar file in inside it , i add the library to application but in the generated war file it is not inside the web-in/lib folder
    thanks

    Check in Tools | Project Properties | Libraries
    Assume you have added your Library here. Highlight your library and click Edit to review this entry. Make sure the 'Deployed by Default' checkbox is checked?
    Also, check your deployment profile settings:
    File Groups | WEB-INF/lib | Contributors -
    make sure your library is selected for deployment (should be if you do the step above.)
    Message was edited by:
    javaX

  • How to specify specific libraries to be used by OC4J?

    We are using Oracle AS 10.1.2 and are using OracleConnectionCacheImpl as our DataSource implementation. We'd like to do some tracing and logging from within the impl but are informed by the logging output that we need to use libraries set up for tracing & debugging (meaning we need for the application server to use ojdbc14_g.jar). How do make OC4J use this particular library when it creates its cached datasources?

    Create a new SSLContext for every connection; configure it with its own KeyManager that has access to the appropriate private keys and certificates; and create the SSLSocket from that SSLContext.

  • How to specify global libraries?

    Hello,
    I'm newbie in Sun Studio,
    please could any kind soul tell me how to setup global library paths e.g. boost?
    I tried menu 'Tools->Libraries'. The 'Library Manger' window appears and has only 'Remove' button enabled, 'New Library' button is disabled.
    Thank you.

    Not sure what you mean by 'global library', but you can try and open project properties and click on Libraries in the Linker property. Here you have several options. What is it you are building? How did you create your project?

  • Need help.  Both iTunes and Setting's for photo usage show about 2000 more photos then appear on the Camera Roll with no additional libraries.  This takes up many gb of phantom photo storage.  I just upgraded software, I've reset the phone.  Need help!

    iTunes - Photos  36.71 GB and 7265 Photos
    Settings/General/About 7086 Photos and 202 Viedos
    Settings/General/Usage 35.8 gb for Photos & Camera
    Photo app (one it comes with) shows ONLY 5522 on the Camera Roll this matches what it shows when I access photos with PC
    How do I get rid of the phantom photos using up my gb's.  I want access to the addtionaly storage!  Please Help
    note- not tech savy so an easy fix or detailed step by step is appreciated

    iTunes - Photos  36.71 GB and 7265 Photos
    Settings/General/About 7086 Photos and 202 Viedos
    Settings/General/Usage 35.8 gb for Photos & Camera
    Photo app (one it comes with) shows ONLY 5522 on the Camera Roll this matches what it shows when I access photos with PC
    How do I get rid of the phantom photos using up my gb's.  I want access to the addtionaly storage!  Please Help
    note- not tech savy so an easy fix or detailed step by step is appreciated

  • Do i need additional libraries?

    Hi there,
    I'm trying to compile some source-code i downloaded using JBuilder. I created a new project in the
    folder containing the source-code and the IDE seems to have discovered the packages correctly (the
    source folder contained lots of sub-folders). However, trying to build the project I get errors
    saying that "package xxx does not exist". Some of these packages are:
    org.apache.log4j
    javax.sip
    javax.media
    com.sun.media
    I Google searched these packages and they seem to exist independently of the source-code I
    downloaded, so why is JBuilder saying it cannot find them? are these packages included in the JRE
    or do I have to download them separately? I currently have jdk1.5.0_04 and jre1.5.0_04 installed.
    Any help is greatly appreciated - i know the truth is out there :-)
    regards,
    Mark

    This is probably one of the most frustrating things in Java, discovering what JAR file contains the needed packages/class files you need to compile your app.
    I have been finding that a lot of "tutorials" do a good job (sometimes) of telling you the classes and packages you need for whatever it is the tutorial is about, but then fail miserably because they don't tell you what JAR file these class files are located in.
    A good way to discover what JAR files you need is to look at the compile command line and see what JARs are included there. With some apps, like the kind you find online, come with a compile.bat or compile.sh. Look in these. Some projects use ant, so look for a build.xml file and look for the jar files identified in that file.
    It can be trickey to figure out exactly what you need to compile a large project if you're not told specifically what you need and where to get it.

  • CIN code and linking to external libraries

    I am writing CIN code to encapsulate access to some external shared libraries on both windows and solaris platforms.
    following the LV manuals for external code to build my first CIN was a success.
    most of the problems are all linking problems, most propably becuz i missed something in the .lvm file. the situation am facins is as follows:
    1. my CIN .c file need to include other external .h files, say (external.h), i tried the following in the .lvm
    CINCLUDES = -Ic:\external\lib
    but didnot work, ofcourse when i hardcode the path of the .h file the CIN source file it works.
    2. i also need to link to an external library file, say libExternal.lib. here i could not find any clue on were to go. i tried to use cinlibr
    aries = -Ic:\external\lib\libExternal.lib but i got the following error:
    NMAKE : fatal error U1077: 'c:\cintools\lvsbutil' : return code '0x2' Stop.
    i know that there should be a way to specify the additional libraries folder (for example -Ic:\external\lib) then use the library name as a an additional linker option by specifying its name (libExternal.lib). but seems that my makefiles knowledge isnot good enough to help me through this..
    so... any clue on how to handle these issues?
    best regards,
    mutaz

    Hi Soni and Brij
    Thank you very much for your replies.  I have now got this working.  For reference, I am using the syntax that Soni suggested for the CSS, e.g.
    <!--SPM:<SharePoint:CssRegistration Name="https://triadgroupplc.sharepoint.com/_catalogs/masterpage/Triad/triadmaster.css" runat="server"
    after="corev15.css"/>-->
    and the syntax that Brij suggested for the JavaScript, e.g.
    <!--SPM:<SharePoint:ScriptLink ID="ScriptLink10" language="text/javascript" name="~sitecollection/_catalogs/masterpage/Triad/WelcomeBanner.js" runat="server" />-->
    I am basing my Master Page on the OOTB seattle.html page.  I have found I need to place these lines of code after the existing CssRegistration and ScriptLink lines.
    Thanks again for your help.
    David

Maybe you are looking for

  • Neeed for Sales Assistance issue in oracle istore

    Hi All, I have an issue on Need for sales rep assistance notification mail in oracle EBS.Mail sending to the address with out any issue.But mail does not having &QUOTEDETAILWITHTAX details.Means Product , # of Units Shippable? , Net Amount are missin

  • My server is displaying an error - what setting needs to be changed?

    I have the problem posted below, that apple.com acknowledges, but there is no specific information on how to fix it. My server company does not know which setting needs to be changed. Can anyone help? This happened suddenly, and I did not even change

  • Hangs, slow shutdowns and restart, spinning ball opening and closing apps

    I am experiencing random hang ups and slow wake up and shutdowns. I will be typing something and nothing appears then all of a sudden the text will appear. The cursor will periodically hang up, applications take along time to open and close and I see

  • Duplicate records: Process : Delete Overlapping Requests from InfoCube

    Hi Experts, We are loading data in standard costing cube with standard available option Full upload. In our process chain we have included process type "Delete Overlapping Requests from InfoCube". In our scenario we always load yesterday and today's

  • Number pad on Mac Mini quit working

    I have a computer lab of 22 Mac Mini's. The number pad on one of them has quit working, just the numbers. The function keys still work. I have swapped keyboards with other Mini's and the probelm does not follow the keyboard. I have tried both a Mac P