How to invoke the command interpreter to run the "NS.exe" using Runtime?

hi,everyone
I need to invoke the command interpreter,and enter the disk directory "c:/ns2/bin/",then run the "ns myfilename" command.My program is followed:
try{
String s[]=new String[4];
s[0]="cmd.exe";
s[1]="/c";
s[2]="cd c:/ns2/bin";
s[3]="ns.exe c:/ns2/bin/100n-500k-5.tcl";
Runtime R=Runtime.getRuntime();
Process p=R.exec(s);
int exitVal = p.waitFor();
System.out.println("Process exitValue: " + exitVal);
But this doesn't work!
please help me! thanks!

hi,everyone
I need to invoke the command interpreter,and
and enter the disk directory "c:/ns2/bin/",then run
the "ns myfilename" command.My program is followed:
try{
String s[]=new String[4];
s[0]="cmd.exe";
s[1]="/c";
s[2]="cd c:/ns2/bin";
s[3]="ns.exe c:/ns2/bin/100n-500k-5.tcl";
Runtime R=Runtime.getRuntime();
Process p=R.exec(s);
int exitVal = p.waitFor();
System.out.println("Process exitValue: " +
alue: " + exitVal);
But this doesn't work!
please help me! thanks!CDing will not change the directory.
should write:
String cmd= "cmd /c c:\\ns2\\bin\\ns.exe c\\ns2\\bin\\100n-500k-5.tcl"
for further details on how to use Runtime.exec(), see http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

Similar Messages

  • How to pass a command line argument to the sequence?

    Hi,
    My GUI is written in VB.NET. I can read the command line argument in the GUI, using: Me.AxApplicationMgr.CommandLineArguments(). But I don't know how to pass it on to my sequence file which the GUI invokes. How do I read the command line argument from the sequence file?
    My purpose, is to have the same basic sequence execute different subsequences depending on starting conditions...
    I am using TestStand 3.0 with a VB.NET GUI, on Windows XP.
    I'd appreciate any help on the subject.
    Alan

    Hi Alan,
    One obvious way would be to add parameter(s) to the MainSequence and then modify the process model sequence file to use the new parameter(s) in the step "MainSequence Callback"  in either Single Pass or Test UUTs but I wouldn't recommend this approach.
    The sequence file to be run via the entry point can be found at "RunState.ProcessModelClient" and the lookup string to the MainSequence would be "RunState.ProcessModelClient.Data.Seq["MainSequence"] or .Seq[0] .
    Therefore you could quite easy use the SetVal method to setup a Local variable in the MainSequence of your Sequence File to receive the command line string.
    Also you could do this without altering the Process Model Sequence File by using the Callback Sequence ProcessSetup in your Sequence File.
    As an example.
    You have a string in your Locals of MainSequence called CmdLineStr.
    If you add the Callback Sequence ProcessSetup to your SequenceFile, then add an ActiveX Automation Adapter step which is setup for a PropertyObject and the reference is RunState.Caller.RunState.ProcessModel.Data.Seq[0].Locals.CmdLineStr.
    There is an extra RunState.Caller to the lookup string, that's because I am doing the work in a SubSequence of Entry Point Sequence.
    The method to use is SetValString and the parameters of the PropertyObject will be
    lookupString = ""
    options = 0 or 1
    newValue = where evey you have stored you command line string.
    Now when you run your sequence file you will find that the Locals.CmdLineStr will contain your parameter string.
    Hope this is of help to you.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • How can we write the code for opening the command prompt and closing the

    how can we write the code in java for opening the command prompt and closing the cmd prompt from eclipse (cmd prompt should close when click on the turminate button in eclipse)

    rakeshsikha wrote:
    how can we write the code for opening the command prompt and closing theBy typing in Eclipse (which you seemingly have)?

  • Command line to run the SCCM client installation

    SCCM Client package have been distributed to all servers.  It will be available in \\servername\smspkgf$\GS2002B2
    Do we need a command line to run the SCCM client installation manually?

    More info:
    About Client Installation Properties in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg699356.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How many at-exit commands are allowed in the pbo.

    hi
    how many at-exit commands are allowed in the pbo.

    Hi Chaitany,
    EXIT-COMMAND statements are mainly used to exit out of the transaction by over-riding the mandatory field check.
    So, essentially, it makes sense to have only ONE Exit-Command code block.
    Also take note that Exit-Command can be provided ONLY in PAI and not in PBO.
    Cheers,
    Venkat
    P.S: Kindly reward points for useful answers

  • How do I remove the hover when I run the click of a second button?

    Good Morning,
    I found half the solution to my problem, that is, the part about the hover state to click on the button:
    1) I converted my Button in ToggleButton
    2) I have added this Style based Triggers:
    <Style TargetType="ToggleButton" x:Key="checkedToggle">
    <Style.Triggers>
    <Trigger Property="IsChecked" Value="True">
    <Setter Property="Background" Value="#5fc3f3"/>
    </Trigger>
    </Style.Triggers>
    </Style>
    To click the button keeps the "hover", the second click will remove.
    Now the other problem: how do I remove the hover when I run the click of a second button?
    Thank You.

    >>Now the other problem: how do I remove the hover when I run the click of a second button?
    You simply set the IsChecked property of the first button to false when the second button is clicked:
    <ToggleButton x:Name="firstButton" IsChecked="True" Style="{StaticResource checkedToggle}">...</ToggleButton>
    <ToggleButton Checked="ToggleButton_Checked" Unchecked="ToggleButton_Unchecked">...</ToggleButton>
    private void ToggleButton_Checked(object sender, RoutedEventArgs e)
    firstButton.IsChecked = false;
    private void ToggleButton_Unchecked(object sender, RoutedEventArgs e)
    firstButton.IsChecked = false;
    Please remember to mark close your threads by marking helpful posts as answer and please start a new thread if you have a new question. Please don't ask several questions in the same thread.

  • I just got a replacement i phone and i was setting it up and I cannot restore it with my iTunes because the soft wear is to old how to i update the soft wear without running the process

    I just got a replacement i phone and i was setting it up and I cannot restore it with my iTunes because the soft wear is to old how to i update the soft wear without running the process

    Hi Balzer1313,
    Thanks for visiting Apple Support Communities.
    If you have an older version of iTunes installed on your computer, you can update it using this menu option:
    Windows: Choose Help > Check for Updates.
    Mac: Choose iTunes > Check for Updates.
    From:
    iTunes: How to install the latest version
    http://support.apple.com/kb/ht5654
    If iTunes is not installed on your computer, you can download it here:
    http://www.apple.com/itunes/download/
    Cheers,
    Jeremy

  • When i press the command key or shift the sign will appear on the desktop, how to deactivate that?

    when i press the command key or shift the sign will appear on the desktop, how to deactivate that?

    Hi m,
    Go to System Preferences > Universal access > Keyboard and turn off Sticky Keys.

  • An error occurred while preparing the installation. Try running the application again

    I Have erased the hard drive of my MBP in order to perform a clean reinstall of OS X Mavericks, according to these instructions.
    When I tried to reinstall, my internet connection stopped (was broadcasting via another MBP and the cable from that one got disconnected), so I restarted the erased MBP to try again. Holding command+R, it booted in internet recovery (as the recovery partition was erased along with the rest of the hard drive), but could not connect over the broadcasted WiFi, so I created a bootable USB flash drive according to these instructions on the other MBP.
    This installation went smooth without any hiccups, but due to an oversight I had to do it again the next day.
    I took the same steps, with the same bootable drive (I did not create a new one the first time) but this time I couldn’t get through the prepare to install phase. At the end, where the “about a second remaining” message stays for about 20 minutes, I get the “An error occurred while preparing the installation. Try running the application again” message. When I quit the installer (only option at that stage) and return to Disk Utility, the internal drive on which I tried to do the installation is not visible anymore.
    I tried this (after a reboot every time) with a new bootable usb drive with the same download of the OS X Mavericks installer and with a new one, each ending with the same error. The installer was downloaded on an MBP on which Mavericks is also installed, with the same Apple ID. The App Store did not allow me to change Apple ID for the Mavericks download. Can this pose a problem? It did work the first time, though.
    Note that this error occurs at a different stage than the one with the same message due to the wrong date (this discussion amongst others). I also checked the date in terminal and this appears to be correct, when I consider the timezone.
    Here are a few lines from the installer log (omitted similar lines and lines that could contain personal information). The most important line is the last one, indicating the error.
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: @(#)PROGRAM:Install  PROJECT:Install-846
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: @(#)PROGRAM:IA  PROJECT:InstallAssistant-476.8
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Hardware: MacBookPro9,2 @ 2.50 GHz (x 4), 4096 MB RAM
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Running OS Build: Mac OS X 10.9.3 (13D65)
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: DYLD_NO_FIX_PREBINDING=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: PWD=/
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: SHLVL=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: __OSINSTALL_ENVIRONMENT=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: OS_INSTALL=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: _=/System/Library/CoreServices/Language Chooser.app/Contents/MacOS/Language Chooser
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using distribution archive from /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/OSInstall.mpkg
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Configuring products from SharedSupport folder
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Install is double-dmg. Not adding chunklist to download list.
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using product <OSInstallDVDProduct> based on media at /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport at distance 5
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using product <OSInstallESDProduct> based on distribution at /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/OSInstall.mpkg at distance 5
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Checking Software Update catalog URL https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Could not load Software Update catalog: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fedd960ccc0 {NSUnderlyingError=0x7feddc866ef0 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog, NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog, NSLocalizedDescription=The Internet connection appears to be offline.}
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Could not fetch SWU catalog to create SWU product
    Jun 22 02:14:49 localhost Install OS X Mavericks[423]: LSExceptions [0x7fedd9446e50] unloaded
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:20:55 localhost Install OS X Mavericks[423]: Created IATool object:dbe23a50
    Jun 22 02:20:56 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:20:56 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:09 localhost Install OS X Mavericks[423]: Preventing machine sleep.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using product IA_PKSecureNetEnabledProduct <file:///Volumes/schijf/OS%20X%20Install%20Data/> at distance 5
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using existing boot files dir at /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using mutable product path: /Volumes/schijf/OS X Install Data
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using boot files path: /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.OSInstall
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.OSInstall
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Retrieving 0 packages (0.000 GB)
    *****This is where the timer starts saying “”About a minute remaining”*****
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Verifying InstallMacOSX.pkg/InstallESD.dmg
    Jun 22 02:42:36 localhost Install OS X Mavericks[423]: Finished operation queue
    Jun 22 02:42:36 localhost Install OS X Mavericks[423]: Opening /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/InstallESD.dmg
    Jun 22 02:42:38 localhost Install OS X Mavericks[423]: Extracting boot files from /Volumes/OS X Install ESD/BaseSystem.dmg
    Jun 22 02:42:39 localhost Install OS X Mavericks[423]: Extracting Boot Bits from Inner DMG:
    Jun 22 02:42:41 localhost Install OS X Mavericks[423]: Copied kernelcache
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Copied Boot.efi
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Copied PlatformSupport.plist
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Ejecting disk images
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Generating the com.apple.Boot.plist file
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: com.apple.Boot.plist: {
          "Kernel Cache" = "/.IABootFiles/kernelcache";
          "Kernel Flags" = "container-dmg=file:///Install%20OS%20X%20Mavericks.app/Contents/SharedSupport/ InstallESD.dmg root-dmg=file:///BaseSystem.dmg";
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Done generating the com.apple.Boot.plist file
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Blessing /Volumes/Install OS X Mavericks -- /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Blessing Mount Point:/Volumes/Install OS X Mavericks Folder:/Volumes/Install OS X Mavericks/.IABootFiles plist:com.apple.Boot.plist
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ***************************** Setting Startup Disk *****************************
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ******           Path: /Volumes/Install OS X Mavericks
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ******     Boot Plist: /Volumes/Install OS X Mavericks/.IABootFiles/com.apple.Boot.plist
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: /usr/sbin/bless -setBoot -folder /Volumes/Install OS X Mavericks/.IABootFiles -bootefi /Volumes/Install OS X Mavericks/.IABootFiles/boot.efi -options config="\.IABootFiles\com.apple.Boot" -label OS X Installer
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Bless on /Volumes/Install OS X Mavericks succeeded
    Jun 22 02:45:55 localhost Install OS X Mavericks[423]: Got error in writing to /Volumes/schijf/OS X Install Data/minstallconfig.xml
    That last line indicates the error that occurred. (The internal drive on which I try to install Mavericks is called “schijf”, it also already has been called Macintosh HD, with no effect. This time I tried another name during the reformat to see if and when the installer renames the disk. Does it do this, or should I call the disk “Macintosh HD” myself?)
    By now I also got past the internet recovery issues, being able to get the progress bar under the spinning globe and the option to install Lion (not Mavericks, but I suppose that’s because the MBP shipped with Lion). When I choose this option, the installer first spends a few hours downloading additional components. This eventually took less time than first indicated, but still about 4-5 hours. After this, the installation of about 24 minutes starts, but this takes much longer than the indicated 24 minutes, each minute taking about 15 minutes. When it was less than a minute, the internet connection got disconnected (but I don’t suppose it still needed an internet connection at this stage, having downloaded all additional components) and now the “Less than a minute” message has been there the whole night (about 9,5 hours), the last 9 hours with a spinning beachball on the screen after I accidentally clicked somewhere on the screen (nowhere in particular, he shouldn’t do something because of the click. After unplugging the power adapter, the battery icon on the screen wasn’t updated, and the WiFi icon simply disappeared, instead of showing no bars like it should when there’s no connection).
    Does Anyone know how I can fix the error, because I would prefer installing with a bootable drive. Is it worth it to continue waiting on the current, apparently stuck Lion installer to finish or should I force a reboot?
    Can I try using the Recovery Disk assistant (OS X Recovery Disk Assistant v1.0) to create a recovery disk with the other MBP? I think not, as this might cause trouble with 2 different MBP's using the same license.
    Thanks in advance!

    Since this thread seems to be gaining more speed than the other one i'm working on, i figured i'd add these images to help you all out detailing the exact problem.
    I'm having the same issue and I wanted to provide some info specific to my mac, and some info in general to help with diganosis.
    First, my specs
    Secondly, I am running an aftermarket 500 GB drive.
    Third, not sure if this is realated, but this screen suggests the proress will take 3 minutes, then it abruptly umps to the restart phase after about 1.5 - 2.5 minutes.
    And finally, here is the seeminly unavoidable error message.
    Also, other things I've tried now are
    installing it from the "show package contents area",
    mounting said DMG and trying to install from there.
    installing a package file called "upgradeos.pkg"
    no luck.

  • Getting the ejb error while running the deployed application

    hi;
    Application Server : OC4J(JDeveloper11g)
    We are getting the following exception while running the deployed application.But it is working fine in embedded OC4J. We are using the views tables and while inserting the data to view table
    We have used to actual table sequence( that is in other schema) in the view table by giving the grant permission. and we are inserting the data into the view table. But it is working in embedded OC4J. After giving the grant permission to the sequence table and while we were working in the newly deployed application we getting the following error.
    Dec 23, 2007 4:12:22 AM com.evermind.server.ejb.logging.EJBMessages logException
    SEVERE: [AdmMenuManager:public java.util.List com.prapansol.elearn.usermanagement.model.businessprocess.service.admmenu.AdmMenuManagerBean.getAllActiveResponsibilityMenus(java.lang.Long)] exception occurred during method invocation: javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
    javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
    java.lang.NullPointerException
         at oracle.jdbc.driver.T4CTTIoauthenticate.marshalOauth(T4CTTIoauthenticate.java:450)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:401)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:650)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:200)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:413)
         at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:388)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:278)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:203)
         at oracle.oc4j.sql.DataSourceConnectionPoolDataSource.getPooledConnection(DataSourceConnectionPoolDataSource.java:57)
         at oracle.oc4j.sql.xa.EmulatedXADataSource.getXAConnection(EmulatedXADataSource.java:94)
         at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createXAConnection(ManagedConnectionFactoryImpl.java:251)
         at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:212)
         at com.evermind.server.connector.ApplicationConnectionManager.createManagedConnection(ApplicationConnectionManager.java:1354)
         at oracle.oc4j.sql.OracleConnectionFactoryAdapter.createConnection(OracleConnectionFactoryAdapter.java:110)
         at oracle.ucp.common.CollectionConnectionPoolImpl.createOnePooledConnection(CollectionConnectionPoolImpl.java:513)
         at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnectionWithoutCountingRequests(CollectionConnectionPoolImpl.java:419)
         at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnection(CollectionConnectionPoolImpl.java:295)
         at oracle.oc4j.sql.OracleCommonConnectionPool.borrowConnection(OracleCommonConnectionPool.java:79)
         at oracle.oc4j.sql.OracleCommonConnectionPool.getManagedConnection(OracleCommonConnectionPool.java:61)
         at oracle.j2ee.connector.OC4JConnectionPoolAdapter.getManagedConnection(OC4JConnectionPoolAdapter.java:543)
         at com.evermind.server.connector.ApplicationConnectionManager.getManagedConnectionContext(ApplicationConnectionManager.java:1568)
         at com.evermind.server.connector.ApplicationConnectionManager.getConnectionFromPool(ApplicationConnectionManager.java:1553)
         at com.evermind.server.connector.ApplicationConnectionManager.acquireConnectionContext(ApplicationConnectionManager.java:1499)
         at com.evermind.server.connector.ApplicationConnectionManager.allocateConnection(ApplicationConnectionManager.java:1444)
         at oracle.j2ee.connector.OracleConnectionManager.unprivileged_allocateConnection(OracleConnectionManager.java:238)
         at oracle.j2ee.connector.OracleConnectionManager.allocateConnection(OracleConnectionManager.java:192)
         at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:217)
         at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:147)
         at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:123)
         at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:84)
         at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:154)
         at oracle.toplink.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:517)
         at oracle.toplink.ejb.cmp3.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:186)
         at oracle.toplink.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:213)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:58)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:91)
         at oracle.toplink.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:64)
         at oracle.oc4j.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:100)
         at oracle.oc4j.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:85)
         at oracle.oc4j.persistence.AbstractEntityManagerProxy.createQuery(AbstractEntityManagerProxy.java:101)
         at oracle.oc4j.persistence.EntityManagerProxy.createQuery(EntityManagerProxy.java:70)
         at com.prapansol.elearn.usermanagement.model.businessprocess.service.admmenu.AdmMenuManagerBean.getAllActiveResponsibilityMenus(AdmMenuManagerBean.java:118)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
         at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
         at AdmMenuManager_LocalProxy_5k85l3l.getAllActiveResponsibilityMenus(Unknown Source)
         at com.prapansol.elearn.usermanagement.backing.main.Usermanagementhome.setMenuBar1(Usermanagementhome.java:146)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at javax.el.BeanELResolver.setValue(BeanELResolver.java:352)
         at javax.el.CompositeELResolver.setValue(CompositeELResolver.java:283)
         at com.sun.faces.el.FacesCompositeELResolver.setValue(FacesCompositeELResolver.java:93)
         at com.sun.el.parser.AstValue.setValue(AstValue.java:134)
         at com.sun.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:255)
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:222)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:211)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:466)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:651)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1098)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:63)
         at oracle.adfinternal.view.faces.unified.taglib.UnifiedMenuBarTag.doStartTag(UnifiedMenuBarTag.java:67)
         at templates.usermanagementtemplate_jspx.__jsp_tag_ctru41_helper_52(_usermanagementtemplate_jspx.java:1218)
         at templates.usermanagementtemplate_jspx._jspService(_usermanagementtemplate_jspx.java:602)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:154)
         at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:45)
         at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:91)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
         at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:96)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:338)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:192)
         at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:69)
         at test1jspx._jspService(_test1_jspx.java:830)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:285)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:45)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:191)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:196)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:265)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:447)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
         at com.prapansol.elearn.usermanagement.managedbeans.UrlMasking.renderView(UrlMasking.java:180)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:509)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:194)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:159)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:171)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:137)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:76)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:209)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:166)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:617)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:797)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:607)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:376)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:161)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:142)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:878)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
         at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:146)
         at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:137)
         at oracle.oc4j.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:93)
         at oracle.oc4j.persistence.AbstractEntityManagerProxy.createQuery(AbstractEntityManagerProxy.java:101)
         at oracle.oc4j.persistence.EntityManagerProxy.createQuery(EntityManagerProxy.java:70)
         at com.prapansol.elearn.usermanagement.model.businessprocess.service.admmenu.AdmMenuManagerBean.getAllActiveResponsibilityMenus(AdmMenuManagerBean.java:118)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
         at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
         at AdmMenuManager_LocalProxy_5k85l3l.getAllActiveResponsibilityMenus(Unknown Source)
         at com.prapansol.elearn.usermanagement.backing.main.Usermanagementhome.setMenuBar1(Usermanagementhome.java:146)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at javax.el.BeanELResolver.setValue(BeanELResolver.java:352)
         at javax.el.CompositeELResolver.setValue(CompositeELResolver.java:283)
         at com.sun.faces.el.FacesCompositeELResolver.setValue(FacesCompositeELResolver.java:93)
         at com.sun.el.parser.AstValue.setValue(AstValue.java:134)
         at com.sun.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:255)
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:222)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:211)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:466)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:651)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1098)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:63)
         at oracle.adfinternal.view.faces.unified.taglib.UnifiedMenuBarTag.doStartTag(UnifiedMenuBarTag.java:67)
         at templates.usermanagementtemplate_jspx.__jsp_tag_ctru41_helper_52(_usermanagementtemplate_jspx.java:1218)
         at templates.usermanagementtemplate_jspx._jspService(_usermanagementtemplate_jspx.java:602)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:154)
         at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:45)
         at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:91)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
         at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:96)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:338)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:192)
         at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:69)
         at test1jspx._jspService(_test1_jspx.java:830)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:285)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:45)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:191)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:196)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:265)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:447)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
         at com.prapansol.elearn.usermanagement.managedbeans.UrlMasking.renderView(UrlMasking.java:180)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:509)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:194)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:159)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:171)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:137)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:76)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:209)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:166)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:617)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:797)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:607)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:376)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:161)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:142)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:878)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
         at oracle.jdbc.driver.T4CTTIoauthenticate.marshalOauth(T4CTTIoauthenticate.java:450)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:401)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:650)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:200)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:413)
         at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:388)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:278)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:203)
         at oracle.oc4j.sql.DataSourceConnectionPoolDataSource.getPooledConnection(DataSourceConnectionPoolDataSource.java:57)
         at oracle.oc4j.sql.xa.EmulatedXADataSource.getXAConnection(EmulatedXADataSource.java:94)
         at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createXAConnection(ManagedConnectionFactoryImpl.java:251)
         at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:212)
         at com.evermind.server.connector.ApplicationConnectionManager.createManagedConnection(ApplicationConnectionManager.java:1354)
         at oracle.oc4j.sql.OracleConnectionFactoryAdapter.createConnection(OracleConnectionFactoryAdapter.java:110)
         at oracle.ucp.common.CollectionConnectionPoolImpl.createOnePooledConnection(CollectionConnectionPoolImpl.java:513)
         at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnectionWithoutCountingRequests(CollectionConnectionPoolImpl.java:419)
         at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnection(CollectionConnectionPoolImpl.java:295)
         at oracle.oc4j.sql.OracleCommonConnectionPool.borrowConnection(OracleCommonConnectionPool.java:79)
         at oracle.oc4j.sql.OracleCommonConnectionPool.getManagedConnection(OracleCommonConnectionPool.java:61)
         at oracle.j2ee.connector.OC4JConnectionPoolAdapter.getManagedConnection(OC4JConnectionPoolAdapter.java:543)
         at com.evermind.server.connector.ApplicationConnectionManager.getManagedConnectionContext(ApplicationConnectionManager.java:1568)
         at com.evermind.server.connector.ApplicationConnectionManager.getConnectionFromPool(ApplicationConnectionManager.java:1553)
         at com.evermind.server.connector.ApplicationConnectionManager.acquireConnectionContext(ApplicationConnectionManager.java:1499)
         at com.evermind.server.connector.ApplicationConnectionManager.allocateConnection(ApplicationConnectionManager.java:1444)
         at oracle.j2ee.connector.OracleConnectionManager.unprivileged_allocateConnection(OracleConnectionManager.java:238)
         at oracle.j2ee.connector.OracleConnectionManager.allocateConnection(OracleConnectionManager.java:192)
         at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:217)
         at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:147)
         at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:123)
         at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:84)
         at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:154)
         at oracle.toplink.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:517)
         at oracle.toplink.ejb.cmp3.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:186)
         at oracle.toplink.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:213)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:58)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:91)
         at oracle.toplink.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:64)
         at oracle.oc4j.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:100)
         at oracle.oc4j.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:85)
         ... 115 more
    07/12/23 04:12:22 javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
    07/12/23 04:12:22 java.lang.NullPointerException
    07/12/23 04:12:22      at oracle.jdbc.driver.T4CTTIoauthenticate.marshalOauth(T4CTTIoauthenticate.java:450)
    07/12/23 04:12:22      at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:401)
    07/12/23 04:12:22      at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:650)
    07/12/23 04:12:22      at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:200)
    07/12/23 04:12:22      at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
    07/12/23 04:12:22      at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:413)
    07/12/23 04:12:22      at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:388)
    07/12/23 04:12:22      at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:278)
    07/12/23 04:12:22      at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:203)
    07/12/23 04:12:22      at oracle.oc4j.sql.DataSourceConnectionPoolDataSource.getPooledConnection(DataSourceConnectionPoolDataSource.java:57)
    07/12/23 04:12:22      at oracle.oc4j.sql.xa.EmulatedXADataSource.getXAConnection(EmulatedXADataSource.java:94)
    07/12/23 04:12:22      at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createXAConnection(ManagedConnectionFactoryImpl.java:251)
    07/12/23 04:12:22      at oracle.oc4j.sql.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:212)
    07/12/23 04:12:22      at com.evermind.server.connector.ApplicationConnectionManager.createManagedConnection(ApplicationConnectionManager.java:1354)
    07/12/23 04:12:22      at oracle.oc4j.sql.OracleConnectionFactoryAdapter.createConnection(OracleConnectionFactoryAdapter.java:110)
    07/12/23 04:12:22      at oracle.ucp.common.CollectionConnectionPoolImpl.createOnePooledConnection(CollectionConnectionPoolImpl.java:513)
    07/12/23 04:12:22      at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnectionWithoutCountingRequests(CollectionConnectionPoolImpl.java:419)
    07/12/23 04:12:22      at oracle.ucp.common.CollectionConnectionPoolImpl.borrowConnection(CollectionConnectionPoolImpl.java:295)
    07/12/23 04:12:22      at oracle.oc4j.sql.OracleCommonConnectionPool.borrowConnection(OracleCommonConnectionPool.java:79)
    07/12/23 04:12:22      at oracle.oc4j.sql.OracleCommonConnectionPool.getManagedConnection(OracleCommonConnectionPool.java:61)
    07/12/23 04:12:22      at oracle.j2ee.connector.OC4JConnectionPoolAdapter.getManagedConnection(OC4JConnectionPoolAdapter.java:543)
    07/12/23 04:12:22      at com.evermind.server.connector.ApplicationConnectionManager.getManagedConnectionContext(ApplicationConnectionManager.java:1568)
    07/12/23 04:12:22      at com.evermind.server.connector.ApplicationConnectionManager.getConnectionFromPool(ApplicationConnectionManager.java:1553)
    07/12/23 04:12:22      at com.evermind.server.connector.ApplicationConnectionManager.acquireConnectionContext(ApplicationConnectionManager.java:1499)
    07/12/23 04:12:22      at com.evermind.server.connector.ApplicationConnectionManager.allocateConnection(ApplicationConnectionManager.java:1444)
    07/12/23 04:12:22      at oracle.j2ee.connector.OracleConnectionManager.unprivileged_allocateConnection(OracleConnectionManager.java:238)
    07/12/23 04:12:22      at oracle.j2ee.connector.OracleConnectionManager.allocateConnection(OracleConnectionManager.java:192)
    07/12/23 04:12:22      at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:217)
    07/12/23 04:12:22      at oracle.oc4j.sql.ManagedDataSource.getConnection(ManagedDataSource.java:147)
    07/12/23 04:12:22      at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:123)
    07/12/23 04:12:22      at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:84)
    07/12/23 04:12:22      at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:154)
    07/12/23 04:12:22      at oracle.toplink.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:517)
    07/12/23 04:12:22      at oracle.toplink.ejb.cmp3.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:186)
    07/12/23 04:12:22      at oracle.toplink.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:213)
    07/12/23 04:12:22      at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:58)
    07/12/23 04:12:22      at oracle.toplink.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:91)
    07/12/23 04:12:22      at oracle.toplink.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:64)
    07/12/23 04:12:22      at oracle.oc4j.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:100)
    07/12/23 04:12:22      at oracle.oc4j.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:85)
    07/12/23 04:12:22      at oracle.oc4j.persistence.AbstractEntityManagerProxy.createQuery(AbstractEntityManagerProxy.java:101)
    07/12/23 04:12:22      at oracle.oc4j.persistence.EntityManagerProxy.createQuery(EntityManagerProxy.java:70)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.model.businessprocess.service.admmenu.AdmMenuManagerBean.getAllActiveResponsibilityMenus(AdmMenuManagerBean.java:118)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    07/12/23 04:12:22      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/12/23 04:12:22      at java.lang.reflect.Method.invoke(Method.java:585)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
    07/12/23 04:12:22      at java.security.AccessController.doPrivileged(Native Method)
    07/12/23 04:12:22      at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    07/12/23 04:12:22      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
    07/12/23 04:12:22      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
    07/12/23 04:12:22      at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
    07/12/23 04:12:22      at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
    07/12/23 04:12:22      at AdmMenuManager_LocalProxy_5k85l3l.getAllActiveResponsibilityMenus(Unknown Source)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.backing.main.Usermanagementhome.setMenuBar1(Usermanagementhome.java:146)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    07/12/23 04:12:22      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/12/23 04:12:22      at java.lang.reflect.Method.invoke(Method.java:585)
    07/12/23 04:12:22      at javax.el.BeanELResolver.setValue(BeanELResolver.java:352)
    07/12/23 04:12:22      at javax.el.CompositeELResolver.setValue(CompositeELResolver.java:283)
    07/12/23 04:12:22      at com.sun.faces.el.FacesCompositeELResolver.setValue(FacesCompositeELResolver.java:93)
    07/12/23 04:12:22      at com.sun.el.parser.AstValue.setValue(AstValue.java:134)
    07/12/23 04:12:22      at com.sun.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:255)
    07/12/23 04:12:22      at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:222)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:211)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:466)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:651)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1098)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:63)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.unified.taglib.UnifiedMenuBarTag.doStartTag(UnifiedMenuBarTag.java:67)
    07/12/23 04:12:22      at templates.usermanagementtemplate_jspx.__jsp_tag_ctru41_helper_52(_usermanagementtemplate_jspx.java:1218)
    07/12/23 04:12:22      at templates.usermanagementtemplate_jspx._jspService(_usermanagementtemplate_jspx.java:602)
    07/12/23 04:12:22      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
    07/12/23 04:12:22      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:154)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:45)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:91)
    07/12/23 04:12:22      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:96)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:338)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:192)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:69)
    07/12/23 04:12:22      at test1jspx._jspService(_test1_jspx.java:830)
    07/12/23 04:12:22      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
    07/12/23 04:12:22      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:285)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:45)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:191)
    07/12/23 04:12:22      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:196)
    07/12/23 04:12:22      at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:265)
    07/12/23 04:12:22      at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:447)
    07/12/23 04:12:22      at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
    07/12/23 04:12:22      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.managedbeans.UrlMasking.renderView(UrlMasking.java:180)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:509)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:194)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:159)
    07/12/23 04:12:22      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    07/12/23 04:12:22      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    07/12/23 04:12:22      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:171)
    07/12/23 04:12:22      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:137)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:60)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:76)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:285)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:209)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:166)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:617)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:889)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:797)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:607)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:376)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:161)
    07/12/23 04:12:22      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:142)
    07/12/23 04:12:22      at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
    07/12/23 04:12:22      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
    07/12/23 04:12:22      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
    07/12/23 04:12:22      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:878)
    07/12/23 04:12:22      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    07/12/23 04:12:22      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    07/12/23 04:12:22      at java.lang.Thread.run(Thread.java:595)
    07/12/23 04:12:22 javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
    07/12/23 04:12:22      at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:146)
    07/12/23 04:12:22      at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:137)
    07/12/23 04:12:22      at oracle.oc4j.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:93)
    07/12/23 04:12:22      at oracle.oc4j.persistence.AbstractEntityManagerProxy.createQuery(AbstractEntityManagerProxy.java:101)
    07/12/23 04:12:22      at oracle.oc4j.persistence.EntityManagerProxy.createQuery(EntityManagerProxy.java:70)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.model.businessprocess.service.admmenu.AdmMenuManagerBean.getAllActiveResponsibilityMenus(AdmMenuManagerBean.java:118)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    07/12/23 04:12:22      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/12/23 04:12:22      at java.lang.reflect.Method.invoke(Method.java:585)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
    07/12/23 04:12:22      at java.security.AccessController.doPrivileged(Native Method)
    07/12/23 04:12:22      at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    07/12/23 04:12:22      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
    07/12/23 04:12:22      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
    07/12/23 04:12:22      at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    07/12/23 04:12:22      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    07/12/23 04:12:22      at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
    07/12/23 04:12:22      at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
    07/12/23 04:12:22      at AdmMenuManager_LocalProxy_5k85l3l.getAllActiveResponsibilityMenus(Unknown Source)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.backing.main.Usermanagementhome.setMenuBar1(Usermanagementhome.java:146)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    07/12/23 04:12:22      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    07/12/23 04:12:22      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/12/23 04:12:22      at java.lang.reflect.Method.invoke(Method.java:585)
    07/12/23 04:12:22      at javax.el.BeanELResolver.setValue(BeanELResolver.java:352)
    07/12/23 04:12:22      at javax.el.CompositeELResolver.setValue(CompositeELResolver.java:283)
    07/12/23 04:12:22      at com.sun.faces.el.FacesCompositeELResolver.setValue(FacesCompositeELResolver.java:93)
    07/12/23 04:12:22      at com.sun.el.parser.AstValue.setValue(AstValue.java:134)
    07/12/23 04:12:22      at com.sun.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:255)
    07/12/23 04:12:22      at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:222)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:211)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:466)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:651)
    07/12/23 04:12:22      at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1098)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:63)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.unified.taglib.UnifiedMenuBarTag.doStartTag(UnifiedMenuBarTag.java:67)
    07/12/23 04:12:22      at templates.usermanagementtemplate_jspx.__jsp_tag_ctru41_helper_52(_usermanagementtemplate_jspx.java:1218)
    07/12/23 04:12:22      at templates.usermanagementtemplate_jspx._jspService(_usermanagementtemplate_jspx.java:602)
    07/12/23 04:12:22      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
    07/12/23 04:12:22      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:154)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:45)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:91)
    07/12/23 04:12:22      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:96)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:338)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:192)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:69)
    07/12/23 04:12:22      at test1jspx._jspService(_test1_jspx.java:830)
    07/12/23 04:12:22      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:483)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:683)
    07/12/23 04:12:22      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:607)
    07/12/23 04:12:22      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:709)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:285)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:45)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:191)
    07/12/23 04:12:22      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:326)
    07/12/23 04:12:22      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:196)
    07/12/23 04:12:22      at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    07/12/23 04:12:22      at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:265)
    07/12/23 04:12:22      at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:447)
    07/12/23 04:12:22      at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
    07/12/23 04:12:22      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
    07/12/23 04:12:22      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
    07/12/23 04:12:22      at com.prapansol.elearn.usermanagement.managedbeans.UrlMasking.renderView(UrlMasking.java:180)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:509)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:194)
    07/12/23 04:12:22      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:159)
    07/12/23 04:12:22      at javax.faces.w

    What is the Oracle application server version?
    JDeveloper 11g supports direct deployment to Oracle Application Server 11g
    http://www.oracle.com/technology/products/jdev/collateral/papers/11/newfeatures/index.html

  • Getting the below error when running the Baseline.grf for the first time

    I am getting the below error when running the Baseline.grf for the first time.
    Appreciate your support in resolving it.
    Error below:
    INFO [main] - *** CloverETL framework/transformation graph, (c) 2002-2012 Javlin a.s, released under GNU Lesser General Public License ***
    INFO [main] - Running with CloverETL library version 3.2.1 build#63 compiled 04/01/2012 12:53:21
    INFO [main] - Running on 4 CPU(s), OS Windows 7, architecture amd64, Java version 1.6.0_20, max available memory for JVM 901120 KB
    INFO [main] - Loading default properties from: defaultProperties
    INFO [main] - Graph definition file: graph/Baseline.grf
    INFO [main] - Graph revision: 1.114 Modified by: mkressirer Modified: Thu Apr 12 13:27:18 EDT 2012
    INFO [main] - Checking graph configuration...
    INFO [main] - Graph configuration is valid.
    INFO [main] - Graph initialization (Baseline)
    INFO [main] - [Clover] Initializing phase: 0
    INFO [main] - [Clover] phase: 0 initialized successfully.
    INFO [main] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1306871483270_0
    INFO [WatchDog] - Starting up all nodes in phase [0]
    INFO [WatchDog] - Successfully started all nodes in phase!
    INFO [RUN_GRAPH1_0] - Running graph ./graph/InitDataStore.grf in the same instance.
    INFO [RUN_GRAPH1_0] - Checking graph configuration...
    INFO [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO [RUN_GRAPH1_0] - Graph initialization (InitDataStore)
    INFO [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    WARN [RUN_GRAPH1_0] - WS messenger cleanup failed.
    java.lang.NullPointerException
         at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
         at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
         at org.jetel.graph.Phase.free(Phase.java:487)
         at org.jetel.graph.TransformationGraph.freeResources(TransformationGraph.java:681)
         at org.jetel.graph.TransformationGraph.free(TransformationGraph.java:955)
         at org.jetel.graph.runtime.PrimitiveAuthorityProxy.executeGraph(PrimitiveAuthorityProxy.java:149)
         at org.jetel.component.RunGraph.runGraphThisInstance(RunGraph.java:511)
         at org.jetel.component.RunGraph.runSingleGraph(RunGraph.java:409)
         at org.jetel.component.RunGraph.execute(RunGraph.java:302)
         at org.jetel.graph.Node.run(Node.java:414)
         at java.lang.Thread.run(Thread.java:619)
    WARN [RUN_GRAPH1_0] - Some graphs wasn't executed (because graph "./graph/InitDataStore.grf" finished with error).
    WARN [RUN_GRAPH1_0] - Some graph(s) finished with error.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/InitDataStore.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/InitDataStore.grf' failed!
         at org.jetel.component.RunGraph.execute(RunGraph.java:324)
         at org.jetel.graph.Node.run(Node.java:414)
         at java.lang.Thread.run(Thread.java:619)
    INFO [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 2
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO [WatchDog] - Phase# Finished Status RunTime(sec) MemoryAllocation(KB)
    INFO [WatchDog] - 0 ERROR 2 20132
    INFO [WatchDog] - ------------------------------** End of Summary **---------------------------
    WARN [exNode_0_1306871483270_RUN_GRAPH1] - Attempt to unregister non-registered thread in the ContextProvider.
    ./graph/InitDataStore.grf: Execution of graph failed! Error during graph initialization: Phase 0 can't be initilized.
    INFO [WatchDog] - WatchDog thread finished - total execution time: 2 (sec)
    INFO [main] - Freeing graph resources.
    ERROR [main] - Execution of graph failed !

    It can't find an Endeca specific class when running via the clover command line utility. Thus, the classpath being set in that shell script is not incorporating the .jar files where the endeca-specific classes are packaged. I would start by adding an line to see what your classpath is set to. There are actually already some lines of shell script in clover that you can uncomment to see what .jars are getting loaded:
    #echo $CLOVER_LIB/*
    for i in $CLOVER_LIB/*.jar $CLOVER_LIB/*.zip; do
         LOCAL_CLASSPATH="$LOCAL_CLASSPATH:$i"
    done;
    #for i in `ls $CLOVER_LIB/*.jar`; do
    #echo $i
    #done;
    You could also echo LOCAL_CLASSPATH to see what is getting set there. At the end of the day, you will need the endeca-specific jars to load which can be found here: /Endeca/Discovery/2.3.0/Integrator/plugins/com.endeca.latitude_1.0.0/*
    HTH,
    Dan
    http://branchbird.com

  • What is the command line equivalent of the *compress* tool in *Finder*

    I have an automatic build setup for our iPhone Apps. The one issue i face everytime is that the zip file that i create in the build using zip command is always rejected by iTunesConnect server as invalid binary. When i compress the .APP folder manually using Compress from the *Finder menu*, that archive is always accepted. The size of the zip files generated is slightly different.
    Does anyone know what would be the command line equivalent of the Compress used by the Finder ? I want to automate this process so that someone does not have to do a manual compress before uploading it to iTunesConnect.
    Thanks in advance,
    -TRS

    a Mac user wrote:
    That is odd, are you sure you are using the command line correctly then? Because zip-ing from the command line should be the exact same one as from the utility in OS X.
    It's not the same, though. As someone else pointed out, the Finder uses a program called "Archive Utility.app", found in "/System/Library/CoreServices". A quick look at the binary shows that it uses the following Unix command line apps:
    /usr/bin/macbinary
    /usr/bin/file
    /usr/bin/tar
    /usr/bin/applesingle
    /usr/bin/binhex
    /usr/bin/ditto
    /usr/bin/gunzip
    /usr/bin/bunzip2
    /usr/bin/uudecode
    /usr/bin/atos
    I would have to look into how iTunesConnect accepts files.
    iPhone apps are signed binaries, so if one byte is different when they arrive at the app store, they won't be accepted. The command line zip leaves out some information and so the package appears to have been tampered with and they're rejected.
    charlie

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • Am getting the following error while running the servlet example

    Hi,
    am getting the following error while running the servlet example
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         edu.dao.StudentDao.insertStudent(StudentDao.java:18)
         edu.servlet.StudentServlet.doGet(StudentServlet.java:25)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.
    Thanks
    //sreekanth

    Hi,
    the following code i have written in StudentDao
    package edu.dao;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import org.apache.commons.dbutils.DbUtils;
    import edu.model.Student;
    import edu.util.DBUtil;
    public class StudentDao {
         public void insertStudent(Student student) {
              String stuQuery = "INSERT INTO STUDENT VALUES(?,?)";
              Connection connection = DBUtil.getConnection();
              PreparedStatement preparedStatement = null;
              try {
                   preparedStatement = connection.prepareStatement(stuQuery);
                   preparedStatement.setString(1,student.getStudentNo());
                   preparedStatement.setString(2, student.getStudentName());
                   preparedStatement.executeUpdate();
              } catch(SQLException e){
                   System.out.println("..Sql exception......");
              }finally {
                   DbUtils.closeQuietly(connection,preparedStatement,null);
    }

  • Hard drive is missing. I can boot from the cd but when running the disk utility, no hard drive shows up.

    Hard drive is missing. I can boot from the cd but when running the disk utility, no hard drive shows up.
    This is a problem that suddenly appeared.

    Please post a screenshot of Disk Utility that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

Maybe you are looking for

  • FINAL CUT CRASH - FIRE WIRE PROBLEM

    Alright, this is just my last shot. I use final cut pro 3 to edit videos, and a miniDV sony camera too. (I even bought new fire wire cables to double check the problem) Always worked with them, no sweat. But once I upgraded my iBook with the latest O

  • Getting 6.9gb DVDSP proj, 2hr Video, to fit 4.7gb disk without Compressor

    I have no menus in this DVD at all. Track is first play, with loop. Yes, my audio is aif, but it cant add up to >2gb difference for AC3? QT DVNTSC movie is 25GB to start. Compressor, not loading for some reason. Can I make it fit, just using DVDSP 3?

  • Ical attached files

    Do I have it right that if I attach a file to an appointment made on my macbook and have ical synced with iCloud the file will not remain attached to the appointment on my mac?

  • Current version of Struts

    What's the current version of Struts? Where to get this info from? Thanks.

  • Diagnostics and usage - metriclog.anon

    I have an Ipad mini and an Iphone 4S. Under Diagnostics and usage, I have files named ...consolidated.metriclog but I now also seem to have a lot named ....consolidated.metriclog.anon, which never contain any data. Can somebody please explain why I n