Jvm option "-d64" does not recognized by app. server

Product: SunOne App Server v.7 Platform Edition
It seems app. server does not respect jvm option -d64. I've set this option manually in server.xml file and also from management console. None worked. When I debug System properties from my web application it is listed as follows:
sun.arch.data.model=32
Anyone encounter this problem before? Should I set this option from another file or script?
Thanks in advance.

I would think using this capability would require that you are running on a Sparc 64 Solaris machine, and that you specified that Sun ONE should use your locally installed jsdk1.4 package for operation.
Additionally, you would have had to install the supplemental 64 bit support for jsdk1.4 per instructions (http://java.sun.com/j2se/1.4.1/install-solaris-64.html#64bitinstall).
Once this is done, the app server should recognize the "-d64" option.
Sun Engineers please comment
John Hogan

Similar Messages

  • I downloaded an app to a computer that is synced to my iphone. So I copied the app to my ipad synced computer, but it does not recognized the app. How can I get the app onto my ipad library?

    I downloaded an app to a computer that is synced to my iphone. So I copied the app to my ipad synced computer, but it does not recognized the app. How can I get the app onto my ipad library?

    Store>Check for Available Downloads

  • Applet does not load on app server when Free Design Layout

    Hi,
    I have to embed a an applet in a webpage of an web application. Before I go on to anything.. let me first tell you, I am using Netbeans 6.0
    As shown in the tuorial:
    [http://www.netbeans.org/kb/articles/tutorial-applets-40.html]
    1. I first made the "Applet" source say HelloApplet. java. After compiling and running it I get the HelloApplet.jar.
    2. I created a WebApplication and then from the properties -> packaging -> I "Add Project" HelloApplet.jar.
    3. Then I a webpage I "embeded" the applet.
    4. I run the web app and the applet gets loaded and everything is just fine.
    But before I go on I must tell you that the applet was designed in Null Layout. Now I edited the applet source once again and changed the layout to Free Design Layout*. ( this is available from Netbeans..on the HelloApplet.java .. go to the design view.. right click on the form and from the context menu you can change the layout to FreeDesign or whatever you might want).
    When I expand the "Libraries" node I see the that the library Swing Layout Extensions - swing-layout-1.0.3.jar has been added.
    When I "run" the "HelloApplet.java" file, the applet is shown in the appletviewer. No problems with that.
    But!
    When I try to Clean & Build and Run the WebApplication, the applet does not get loaded. On inspecting the java console I see the following error:
    java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: org.jdesktop.layout.GroupLayout$Group
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 10 moreIt clearly shows that the Free Design Layout has something to do with the GroupLayout which can be found by expanding the "Swing Layout Extensions - swing-layout-1.0.3.jar". Now when the HelloApplet.jar is created only the HelloApplet.class file gets included together with some other data but NOT the swing extensions. Hence when I run the web app the class file looks for the GroupLayout.class definition but can find it in the jar as its not included when the HelloApplet.jar is created.
    But with null layout there isint a problem because null layout takes the definitions from the JRE on the machine.. and so it runs without a hitch.
    My Question is : How can I run the applet with Free Design Layout? or is it possible to package the swing layout extensions in the HelloApplet.jar?<</u>
    Thanks for all your replies.
    Cheers.
    Edited by: arijit_datta on May 15, 2008 4:07 PM

    Solved.
    Here is the solution:
    [http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html|http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html]
    Cheers..
    Edited by: arijit_datta on May 16, 2008 7:41 AM

  • Session Bean ejbCreate( parm ) Does Not Work in App Server 8  2005 Q2 Editi

    I have the following in my session bean:
    public class aauthfacadeBean implements SessionBean {
    public void ejbCreate() throws CreateException {
    public void ejbCreate( boolean logActivity, String dbCodedNameAauth, String uname, String pswd ) throws CreateException {
    In the client application I do this:
    try {
    InitialContext initial = new InitialContext();
    LocalaauthfacadeHome home = (LocalaauthfacadeHome)initial.lookup( "java:comp/env/ejb/aauthfacade" );
    localAauth = home.create( glbvars.getLogActivity(), glbvars.getDbCodedNameAauth(), user.getUname(), user.getPswd() );
    } catch (NamingException ex) {
    System.out.println( "ejbLookupSecurity() sbGetAauthLocalRef: naming error: " + ex );
    } catch (CreateException ex) {
    System.out.println( "ejbLookupSecurity() sbGetAauthLocalRef: create error: " + ex );
    } catch (Exception ex) {
    System.out.println( "ejbLookupSecurity() sbGetAauthLocalRef: general exception error: " + ex );
    Some how the default create method (create()) get called all the time.
    create( boolean logActivity, String dbCodedNameAauth, String uname, String pswd )
    is never called even though that is the method I call in the client code.
    In reality, I do not need ejbCreate() but if I dont add it to the session bean
    my application does not run because the app server throws a method not found exception
    when the client code calls the create method of the session bean above.
    Am I missing something? I followed the Cart example in the tutorial. Below is the home interface.
    I am using App Server 8 1.4.02 2005Q2 edition
    public interface aauthfacadeHome extends javax.ejb.EJBHome {
    public aauthfacade create() throws CreateException, RemoteException;
    public aauthfacade create( boolean logActivity, String dbCodedNameAauth, String uname, String pswd ) throws CreateException, RemoteException;
    }

    Hi,
    A stateless session bean can have only 1 ejbCreate method and that doesn't take any parameters. you may provide an init method which you can call just before calling your business method where you can initialize all your variables.
    Hope this helps.
    Cheers,
    vidyut

  • IPod shuffle does not recognized by iTunes after restore

    Hello
    I have a iPod shuffle (4th gen) and a windows laptop.
    After restoring my iPod shuffle (as directed by iTunes), iTunes does not recognized my iPod anymore.
    The data in the iPod has been deleted (ie return to the factory settings), but iTunes does not proceed to prompt me to name my iPod and set up sync options etc, it simply does nothing and does not recognize my iPod. 
    I went on My Computer, and reformatted the iPod shuffle again. As a result of the reformatting, iTunes recognizes my iPod but it requires me to restore my iPod back to factory settings again. It became a cycle of either recognizing the iPod but asking me to restore it; or does not recognize my iPod after restoration.
    Please kindly assist me with this situation as it is rather frustrating.
    iTunes is in the latest version as I have attempted the trouble shooting support on the webpage.
    Many thanks.

    Hi priscillayeung,
    If you are having issues with your iPod being recognized by your Windows computer but not by iTunes (or being recognized but requiring a restore, which then causes it to not be recognized again), you may find the troubleshooting steps outlined in the following article helpful:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/TS1363
    Regards,
    - Brenden

  • When i create an apple id option none does not appear

    when i create an apple id option none does not appear

    You need to follow, exactly, the instructions on this page when creating a new account : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    If you don't use those instructions then credit card details will need to be entered - after entering them you should get the 'none' option and be able to remove the card's details.
    Creating an account with 'none' :
    computer's iTunes : https://discussions.apple.com/message/24321860#24321860
    iOS 7 device : https://discussions.apple.com/message/24700173#24700173

  • ITunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?

    iTunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?
    Many people have the same problem. However, there is little or nothing readily available to users. This problem has existed for two or more years. Does anyone have anything to offer about this disturbing problem?

    Thanks for the suggestion kcell. I've tried both versions
    9.0.115 and 9.0.124 and both fail with the policy permission error.
    I also tried with and without your crossdomain.xml file but
    with the same result. It looks like this file is intended for URL
    policy, instead of socket policy. Recently Adobe separated the two.
    When I run with the files installed on my dev PC, it does
    work, which makes sense because the flash player isn't loaded from
    an unknown domain.
    I did get one step closer. If a crossdomain.xml in the server
    root exists and the socketpolicy file is loaded from the app folder
    then the first two warnings disappear. The logs now show:
    OK: Root-level SWF loaded:
    https://192.168.2.5/trunk/myapp.swf
    OK: Policy file accepted: https://192.168.2.5/crossdomain.xml
    OK: Policy file accepted:
    https://192.168.2.5/trunk/socketpolicy.xml
    Warning: Timeout on xmlsocket://192.168.2.5:843 (at 3
    seconds) while waiting for socket policy file. This should not
    cause any problems, but see
    http://www.adobe.com/go/strict_policy_files
    for an explanation.
    Warning: [strict] Ignoring policy file with incorrect syntax:
    xmlsocket://192.168.2.5:993
    Error: Request for resource at xmlsocket://192.168.2.5:993 by
    requestor from https://192.168.2.5/trunk/myapp.swf is denied due to
    lack of policy file permissions.
    Which basically says, everything is okay, but you stay out
    anyway.
    PS: I found the XML schema files here:
    http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_02.html
    and the socket policy schema:
    http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd.
    UPDATE: When serving up the policy file on port 843 using the
    example perl script then the socket connection seems to be accepted
    and the connect succeeds. After that flex hangs trying to logon to
    the IMAP server.

  • Mydaq does not recognized max

    Hi. When I open the Daq Assistant on Lab View it gives me a "No supported devices found" message, the labView works just fine but it does not recognized the myDaq. And before It did worked, What can I do?

    If you are using Measurement & Automation Explorer 5.0 or later, you could try resetting your configuration data by clicking the following menu option. It may solve your issue if MAX has been corrupted. Just a note, resetting your configuration data will clear any saved devices/scales you have. 
    Also, what operating system are you running?
    Regards,
    Ian K.
    Applications Engineer
    National Instruments

  • My icloud does not show any apps on my iPhone, anyone know where they are?

    I logged in to icloud to view and clean up my storage and it does not show any apps, any ideas?

    What apps were you looking for?  The apps you purchased from the App store will not be there, and unless they are iCloud-enabled apps that sync documents and data with iCloud, they don't take any space in your iCloud account.
    You may want to read this article, as it explains various options for reducing your iCloud storage: http://support.apple.com/kb/ht4847.

  • In iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work.  Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8

    in iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work. Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8.
    Tom at the Genius Bar told me that Option Delete would work. It does not.
    I had to upgrade to iTunes 11.1.(I26) because it is required with OS7 on my iPod Touch (5th Gen). I have tried shutting down iTunes, then shutting down the entire system. This is the first in many visits that the Genius Bar gave me a solution that did not work.
    This is a big awkward computer locked to my desk. I would rather not unlock it and then carry it through a shopping center to the Genius Bar if i can avoid oit.
    When I installed iTunes 11.1, I discovered that Ihad to resubscribe to virtually all of the podcasts that I had previously been subscribed to. That was a surprise.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • TS1363 after up dating to 11.1.5.5 itunes does not recognized any of my devices.  I've tried everything listed.

    after up dating to 11.1.5.5 itunes does not recognized any of my devices. I have tried all the recommendations in help.

    Updating the USB driver did work.  Referenced in other postings as Section 5.  I guess I had not tried that one.
    Thanks

  • App hung on "waiting"; during update, I lost my wifi connection; now cannot delete to reinstall (no X), syc does not help; itunes store says it is installed and I cannot reinstall; deleting from itunes and synching does not remove "hung app"; HELP

    App hung on "waiting"; during update, I lost my wifi connection and the app hung; now cannot delete to reinstall (no X), synching does not help; itunes app store says it is installed, therefore I cannot reinstall; deleting the app from itunes and synching does not reinstall the app on the ipod; the app developers have not helped and told me to check with Apple (which I am doing, since I am past my 90 day tech support). Hoping someone can help with this hung "waiting' app problem.

    - First try resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next download the app on the computer and try to sync.
    - Last, restore from backup.

  • Lion does not recognized HP Scanner

    Lion does not recognized HP Scanner.  Lion initially recognized the scanner and it worked perfectly for months.  All of a sudden communications with the scanner stopped. I have checked the USB cable and it is working properly.  I am using Bootcamp and when I boot in Windows the scanner and computer (iMac) work perfectly.  I have downloaded, removed and reinstalled the HP software and update for Lion. When I go into System Preferences > Print/Scan, It sees all other printers and scanners including another HP printer scanner.

    Hi.
    what's your printer/scanner model #? If RRFS' suggestions fail to resolve your issue: try removing the HP drivers from /Library/Printers folder then with device connected directly to your computer, check for software updates, this will push HP software/drivers to your system - install them.
    "do not install drivers from printer/scanner disc"
    After installation, make sure the devices, both printer and scanner show up in system preferences > printers - try scanning. Also check with a native Application like image capture, see if its recognizing your scanner.

  • When I complete all the steps to create Apple ID.In part that requires the credit card i dont have credit card and the option none does not appear.What can I do?

    When I complete all the steps to create Apple ID.In part that requires the credit card i dont have credit card and the option none does not appear.What can I do?

    Greetings anabeqiri, 
    Thank you for contributing to the Apple Support Communities. 
    The advice and steps in this article may help if you don't see "None" as a payment option when creating your Apple ID:
    Why can’t I select None when I edit my Apple ID payment information? - Apple Support
    All the best,
    Jeremy 

  • After upgrade to ios5, none of the apps will load.  Touching an icon does not open the app; it just blinks and returns to the screen.

    After upgrade to ios5, none of the apps will load.  Touching an icon does not open the app; it just blinks and returns to the screen.

    Go to the App Stor and download an app- any free app will do, it doesn't matter.
    Doing this usually "resets" your device's "app awareness" and you should be able to run any app with no problem.
    And no, you don't have to keep that free one you just downloaded.  You can delete it if you don't want it.

Maybe you are looking for

  • Problem with syncing

    When I connect my iPod (4 g no color screen 20 GB) to my computer and open iTunes and press sync, I get the error message "The iPod "frank" could not be synced. The disk could not be read from or written to." and, when I press "ok" it says "The iPod

  • Need some urgent help with my (simple) Applet!

    Hello, I'm pretty new to Java and I am beginning to like it! I'm still verry much new to the language, but if you can help me you make me verry happy! Oke so I made an Applet where if you push on the button Omhoog, Omlaag, Links, Rechts, and Reset th

  • Unable to create connection pool on admin console!

    Hello, i try via application server's admin console connect to my mysql database. The jdbc.mysql.Driver is already in as_home/lib directory. My database has no password and the root is authorized and has full access. My Configuration on admin console

  • Trying to use a query as the p_value in a SELECT_LIST_FROM_QUERY default

    Hi, I have a SELECT_LIST_FROM_QUERY and the select for the LIST shows the list as ought to. The select for the p_value does not set the default to the value I want. If I hardcode to 132, as the query should retrieve, it sets the default as should. I

  • Cts+ configuration in XI on SPS12

    hi i am trying to configure cts+ for  xi java objects transport. can any body suggest me any document or the procedure thanks in advance akhil