How do you compile a lifecycle module

I want to develop a Lifecycle module for Sun Java System Application Server 8, Platform Edition.
I have read through http://docs.sun.com/source/817-6087/dglfcycl.html#wp16956 .
The bit of info that is missing from this document is the name of the jar that holds the Lifecycle* classes l(like LifecycleListener).
This makes it a bit difficult to compile my lifecycle module.

Where did you find that information?
Is it in a document that I missed?
thanks,
vbk

Similar Messages

  • How do you compile Flex-dependent classes with ASC?

    Hi,
    I've been trying unsuccessfully for most of the evening to compile a .as file that relies on mx.collections.ListCollectionView using asc. I figured I could just import the Flex framework SWCs from the command line with asc, but asc doesn't seem to respect SWCs - it only seems to respect .abc files.
    So, I've spent most of my time trying to compile the Flex framework into a single .abc file that I can import whenever I want to compile a class that relies on Flex. I figured I could make a base .as file with include statements for all of the Flex .as files (copying the approach I saw for files like builtin.as) and compile that, but all I seem to get are compiler errors - mostly "[Compiler] Error #1181: Forward reference to base class (base class name)."
    I have a feeling I'm doing this completely the wrong way. I'd very much appreciate any assistance that anybody can offer me.
    Thanks,
    - max

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>I use MXMLC to compile my .as file projects.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Alex Harui<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Flex SDK Developer<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><a href="http://www.adobe.com/"><span style='color:blue'>Adobe<br />Systems Inc.</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Blog: <a href="http://blogs.adobe.com/aharui"><span<br />style='color:blue'>http://blogs.adobe.com/aharui</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Maxim Porges<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Monday, February 09, 2009 9:22 PM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> How do you compile Flex-dependent classes with ASC?<o:p></o:p></span></p><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new discussion was started by<br />Maxim Porges in <br><br /><br><br /><b>Developers</b> --<br><br />  How do you compile Flex-dependent classes with ASC?<br><br /><br><br />Hi, <br><br /><br><br />I've been trying unsuccessfully for most of the evening to compile a .as file<br />that relies on mx.collections.ListCollectionView using asc. I figured I could<br />just import the Flex framework SWCs from the command line with asc, but asc<br />doesn't seem to respect SWCs - it only seems to respect .abc files. <br><br /><br><br />So, I've spent most of my time trying to compile the Flex framework into a<br />single .abc file that I can import whenever I want to compile a class that<br />relies on Flex. I figured I could make a base .as file with include statements<br />for all of the Flex .as files (copying the approach I saw for files like<br />builtin.as) and compile that, but all I seem to get are compiler errors -<br />mostly &quot;[Compiler] Error #1181: Forward reference to base class (base<br />class name).&quot; <br><br /><br><br />I have a feeling I'm doing this completely the wrong way. I'd very much<br />appreciate any assistance that anybody can offer me. <br><br /><br><br />Thanks, <br><br /><br><br />- max <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b7d5d2">How do you compile<br />Flex-dependent classes with ASC?</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b7d5d2!folder=.3c060fa3">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div>

  • How do you compile multiple class files in a unix cmd prompt?

    I have been using Java for a few years now, but for some reason I have a course that requires us to compile/run and hand-in our java assignments using Unix...
    I know how to compile a simple program on unix with a single source file, but how the heck do you compile and run a program with say... 2 or more sources files linked together?
    I really doubt the answer is just type
    javac java1.java
    javac java2.java
    javac java3.java
    and then running the source file with the main in it.
    Hopefully someone here can help me.
    Thanks
    Roger

    okay, well I took some time to read up online how to do this and I guess i'll answer my own post just in case someone else wants to know the answer.
    2 ways I found were:
    1)For example, you can list all of the source file names in a file named sourcefiles. This file might look like:
    MyClass1.java
    MyClass2.java
    MyClass3.java
    You could then run the compiler with:
    % javac @sourcefiles
    2)Or if all the files are in the same directory you can do this:
    This example compiles all the source files in the package greetings.
    % ls
    greetings/
    % ls greetings
    Aloha.java GutenTag.java Hello.java Hi.java
    % javac greetings/*.java
    If that is confusing to read I found all the answers from this webpage:
    http://java.sun.com/j2se/1.3/docs/tooldocs/solaris/javac.html

  • How do you compile movie on new iMovie app?

    I have been a user of the prior iMovie software.  I now have the newest version and am puzzled since when compiling a new video I cannot figure how to save it into a file which I can burn to a disk which will play on my standard blu-ray player.  When I complete a video in the new iMovie and click on "Share" and select "file" is saves a file in my computer but the file will not play on the DVD.  How do you go from the compiled video in iMovie and get a burnable file which will play on the DVD? (If I click on this file to open it, it will not open.) Is there some other software which is necessary? Thank you for any suggestions?  I did download "Quicktime Player 7 Pro" into my utility folder, but I can't see how this helps.

    Top menu> imovie> preferences> General> Show advanced tools.

  • How do you compile just the drm radeon module?

    for background on my problem
    http://bbs.archlinux.org/viewtopic.php?id=76995
    I was wondering if anyone knew of a good guide to just compiling drm.ko and radeon.ko modules. i've looked around and cant seem to find any.

    You have to re-compile the (2.6.30 or later) kernel to do so.
    Last edited by Wintervenom (2009-07-31 17:18:30)

  • How do you compile "type body" objects that are invalid?

    We just completed a few application upgrades and now the objects catindexmethods and textindexmethods are invalid. These are part of our intermedia install but haven't started using it yet. How to I recompile these objects to be valid again?

    Did a little deeper and you shall find it:
    alter type xxx compile body;

  • How do you use a Springboard Module in a Visor?

    I have a Visor Springboard question I hope someone can help me with. I use a medical device module that uses the expansion slot. It plugs into the Visor and comunicates with a medical implant wirelessly. The medical device came with a new Visor. I got it from my doctor new in 2007 . The touchscreen started flaking out so I grabbed an old Visor that I had purchased used at the San Jose Flea Market in 2000 , inserted the module and it automatically turned on the Visor and displayed the Medical module's screen.Just like the original.  I saved hundreds in "medical device" replacement costs!  
     So because I saw the value of a backup unit I bought another one on Ebay. It arrived and didn't work the same or at all for that matter. I have been trying to figure out if I need to do something for it to see the module. I can not find a way to switch on the module. I suspect it is normal for these units to recognize that they have a module plugged in and to defer to the plugins program on powerup. Did I just buy a bad unit or is there more to know about the Springboard Module Expansion slot?
     One additional item I am not sure of what model Visor any of these units are except the new one is blue translucent (probably a deluxe right?) On the Palm site and other sites I have seen pictures that look like my other two (the ones that work). They are both gray. It looks like they could be Visors or Visor Deluxe. All buttons, applications, and everything else I can see is the same on all three units.
     Your help could save me alot of $$$, thanks in advance
    Post relates to: Visor Deluxe

    Hello Johnny and welcome to the Palm forums.
    The Visor that you have that won't recognize the card when you insert it into the Springboard module port is probably bad.  If the other Visor comes on when you insert the card then you know the card is working.  As far as I know, there is nothing that you need to do to enable the Springboard module port on the Visor if I recall correctly.  (In the past, I've use the Xircom 56k modem card and the 8MB backup and storage cards.)
    The all silver/grey Visors are probably Visor Platinums and the one with the clear case is a Deluxe.
    Hope that helps,
    Alan G

  • How do you call a function module in a web dynpro application ?

    Why do you delete my postings ?????????????????????????????
    pls see subject
    Edited by: Ilhan Ertas on Apr 1, 2009 4:51 PM
    Edited by: Ilhan Ertas on Apr 1, 2009 4:52 PM

    Its not me deleting them.  Perhaps a different moderator or a technical problem within SCN itself.
    Someone might be concerned about your question because it is very basic.
    You can call a function module from WD the same way you did in any ABAP program - with the CALL FUNCTION syntax.  There is a service call wizard that will generate a matching context and calling code for you - but it is just a helper, code generator.  Everything it does can be done by hand as well (and often better than the generator).

  • How do you compile shared dynamic library in OS/X?

    I am trying to compile a open source component in OS/X (gcc, ANSI C) from the following makefile:
    include makefile_header #standard system makefile variables in this
    # include additional makefile headers here
    # add needed cflags here
    DSI_CFLAGS=$(GLOBUS_CFLAGS)
    # add needed includes here
    DSI_INCLUDES=$(GLOBUS_INCLUDES) -I/opt/bes/include/bes
    # added needed ldflags here
    DSI_LDFLAGS=$(GLOBUS_LDFLAGS) -L/opt/bes/lib -L/opt/bes/lib/bes
    # add needed libraries here
    DSI_LIBS= -lbes_ppt -lbes_dispatch
    FLAVOR=gcc32dbg
    globus_gridftp_server_bes.o:
    $(GLOBUS_CC) $(DSI_CFLAGS) $(DSI_INCLUDES) \
    -shared -o libglobus_gridftp_server_bes_$(FLAVOR).so \
    globus_gridftp_server_bes.c \
    $(DSI_LDFLAGS) $(DSI_LIBS)
    install:
    cp -f libglobus_gridftp_server_bes_$(FLAVOR).so $(GLOBUS_LOCATION)/lib
    #end makefile
    -shared is not recognized by OS/X's gcc variant. Substituting -dynamiclib or -bundle does not seem to be correct method (errors). How should I go about changing the compile command so that it will build me the libglobus_server_bes_gcc32.so lib file?
    Thanks.
    --Stephan
    Macbook Pro, Powerbook G4   Mac OS X (10.4.9)   *NIX OSS developer

    I get the following compile message:
    /usr/bin/gcc -g -m32 -fno-common -Wall -I/usr/local/globus/include/gcc32dbg -I/opt/bes/include/bes \
    -o libglobusgridftp_server_besgcc32dbg.so \
    globusgridftp_serverbes.c \
    -L/usr/local/globus/lib -L/usr/local/globus//lib -m32 -L/opt/bes/lib -L/opt/bes/lib/bes -lbes_ppt -lbes_dispatch
    In file included from /usr/local/globus/include/gcc32dbg/globus_common.h:58,
    from /usr/local/globus/include/gcc32dbg/globusgridftpserver.h:26,
    from globusgridftp_serverbes.c:12:
    /usr/local/globus/include/gcc32dbg/globuscommoninclude.h:28: error: syntax error before 'extern'
    make: * [globusgridftp_serverbes.o] Error 1
    The compile command with -shared works in linux, no error in globuscommoninclude.h as above.
    globuscommoninclude.h upto the error:
    #if !defined(GLOBUSCOMMON_INCLUDEH)
    #define GLOBUSCOMMON_INCLUDEH 1
    #include "globus_config.h"
    #ifdef _GNUC_
    #define GlobusFuncName(func) static const char * globus_funcname \
    _attribute__((__unused_)) = #func
    #else
    #define GlobusFuncName(func) static const char * globus_funcname = #func
    #endif
    extern const char * globus_funcname; //<- error on this line
    <br>
    Macbook Pro, Powerbook G4   Mac OS X (10.4.9)   *NIX OSS developer

  • How do you compile a subclass?

    Can anyone help in answering the following question regarding inheritance?
    I have two classes one extending the other. When I put both classes into a single file and run the javac command to compile them the compilation takes place and no errors are given.
    However if I place the classes into seperate files and compile the superclass first and then the subclass. The superclass compiles but the subclass compilation fails with a cannot recognise symbol (superclass name) error.
    I have a workaround which is to compile both classes at the same time using javac *.java. However would like to know the reasons why the compilation fails and if there is a correct way to resolve this problem.
    As extra info the class files are sitting within the same directory on my machine.
    Any help greatly appreciated

    It might not be the classpath. If running javac
    *.java works, that means that both directories
    containing the files can 'see' each other. I don't
    think it would have worked at all if your classpath
    wasn't set correctly.That's wrong.
    If you run javac *.java, then you have made each .java
    file in the current directory explicitely available to
    the compiler.
    There is no such thing as directories being able to
    'see' each other - it is the compiler that needs to be
    able to 'see' the files and directories that your
    files are in.
    The compiler can 'see' the files whose names you pass
    in on the command line, and the directories and files
    that are in your classpath. If your classpath does not
    contain the directory that the superclass .class file
    is in (whether or not it is the current directory),
    then the compiler will give the posted error.Have updated the classpath and things are now working as I'd expected. Thanks for your help and good background info.

  • How do you compile for flash player 11.3 in Flash Professional CS6?

    I can add a new AIR SDK and compile for AIR 3.3, but I can't figure out how to compile for Flash Player 11.3. 
    Thanks

    You'll have a much better chance of getting a prompt answer in the Flash Professional forum:
    Flash Professional
    This forum is for Adobe Creative Cloud issues.

  • How do you session to asa module on 6509?

    I have a new 6509 ASA Module. When i try and open a session, fails. here are the outputs.
     1    3  ASA Service Module                     WS-SVC-ASA-SM1     SAL1813P1P8
      2    4  WiSM 2 WLAN Service Module             WS-SVC-WISM2-K9    SAL1815QD32
      3   48  CEF720 48 port 10/100/1000mb Ethernet  WS-X6848-GE-TX     SAL1814PFAK
      4   48  CEF720 48 port 1000mb SFP              WS-X6848-SFP       SAL1815QBQT
      5    5  Supervisor Engine 2T 10GE w/ CTS (Acti VS-SUP2T-10G       SAL1815QCZE
    Mod MAC addresses                       Hw    Fw           Sw           Status
      1  4c00.826a.32b4 to 4c00.826a.32c3   2.0   12.2(50r)SYL 15.0(1)SY6   Ok
      2  30f7.0d0b.f630 to 30f7.0d0b.f63f   1.1   12.2(18r)S1  15.0(1)SY6   Ok
      3  a80c.0df1.edd0 to a80c.0df1.edff   1.0   12.2(18r)S1  15.0(1)SY6   Ok
      4  18e7.2820.4c00 to 18e7.2820.4c2f   3.0   12.2(18r)S1  15.0(1)SY6   Ok
      5  6c41.6a0c.17d2 to 6c41.6a0c.17d9   1.7   12.2(50r)SYS 15.0(1)SY6   Ok
    Mod  Sub-Module                  Model              Serial       Hw     Status
     1/0 ASA Application Processor   SVC-APP-PROC-1     SAL1808MGPL  1.0    Ok
      3  Distributed Forwarding Card WS-F6K-DFC4-A      SAL1813PD2L  2.0    Ok
      4  Distributed Forwarding Card WS-F6K-DFC4-A      SAL1815PY3J  2.0    Ok
      5  Policy Feature Card 4       VS-F6K-PFC4        SAL1814PLKQ  2.1    Ok
      5  CPU Daughterboard           VS-F6K-MSFC5       SAL1815Q2ZZ  2.1    Ok
    all modules loaded up ok.
    sess slot 1 pro 1
    The default escape character is Ctrl-^, then x.
    You can also type 'exit' at the remote prompt to end the session
    Trying 127.0.0.11 ...
    % Connection timed out; remote host not responding

    Try "service-module session slot 1". Reference.

  • PLEASE HELP!!  HOW DO YOU COMPILE THE HELLO PROGRAM?

    Hi everybody,
    I just install j2sdk1.4.1_01 on my RH 8. And it's install under the directory /usr/j2sdk1.4.1_01 Now, I was compiling the hello program under /home/JAVATEST
    and it gives me the following error
    Exception in thread "main" java.lang.NoClassDefFoundError: hello
    Could anyone please help me on how to solve this problem. I have try to setup CLASSPATH under .bash_profile as this:
    JAVA_HOME=/usr/j2sdk1.4.1_01
    export JAVA_HOME
    CLASSPATH=./:$JAVA_HOME/lib
    export CLASSPATH
    and still. It would still give me the error. Would anybody please help me on it?? Thanks. I need to do my homework soon. ^<^ thanks

    I think it's your program.
    it's I believe like this isn't it?
    // Put this in a file called hello.java
    public class hello
        public static void main(String args[])
            System.out.println("Hello world!");
        }Try compiling this with the following command : @home>javac hello.java
    then run the command with : @home>java hello
    It should run just like that

  • How do you compile JNI in Linux

    I do JNI well windows using command line facility from Visual Studio but i have never learnt compiling native code for Linux...

    A makefile would probably make the most sense. Here's the docs for the GNU make - http://www.delorie.com/gnu/docs/make/make_toc.html

  • Why is the constructor of EnsTopic package private?How did you compile the sample?

    JmsSample.java:77: EnsTopic(java.lang.String) is not public in com.iplanet.ens.j
    Topic topic = new com.iplanet.ens.jms.EnsTopic(ensTopic);
    ^

    A work around is to change the offending statement to
    Topic topic = topicSess.createTopic(ensTopic);

Maybe you are looking for

  • Is this a JOGL bug with GLJPanel, a driver problem, or what?

    I've been trying to eliminate a problem I've been experiencing with my WorldWind Java (WWJ) application and I think I've finally taken a step torward finding the root cause, but I'm not sure whose problem it is yet or who to report it to, so I though

  • XVR-500

    After downloading Sun XVR-500 Graphics Accelerator Driver with Sun Download Manager, it is impossible to extract the file. The download manager shows a file conflict error. Trying to extract the zip-file with winzip, it shows a problem with extractin

  • Replace layer names in selected layers only

    I am using this script to find and replace words in layers. (The script only targets particualr words, rather than the whole layer name). I would like to make it so it targets selected layers only. I have found this script which loops through selecte

  • How to stop the floating AirPlay icon

    I want to get rid of the Airplay icon that floats over my photos while I play music? I am using my photos as the screen saver and has this icon all the time. What setting do I need to change?

  • Error pops & goes so fast

    Hey there, I am using MacBook white 2009 with OS X 10.8.2 when ever I starts my MacBook an error comes and goes so fast that I can't read it I just know that It contains a yellow exclamation mark over it, I am afraid if its a trojan or virus somethin