How do I get iPlanet 6.0 to use the Java Server VM?

I've tried having java.option=-server in jvm12.conf, but the logs still say that the Client VM is being run.
Apart from actually modifying the java executable to put -server in the command line, how else can I achieve this?
Thanks,
John.

You also need to edit the start-jvm settings as explained here:
http://docs.sun.com/source/817-6094-10/rn60sp8.html#wp34277
Thanks
Manish

Similar Messages

  • How do i get an applet to work using the embedded server?

    every time i use teh builder to make an html file to run the applet i get...
    <APPLET CODE="applet.basic2" ARCHIVE="adfshare.jar,bc4jmt.jar,collections.jar, ...etc
    HEIGHT="200" WIDTH="200" ALIGN="bottom">
    This browser does not support Applets.</APPLET>
    clearly, the browser DOES support applets because i can run them off the net.
    is there anything i am doing wrong?
    thanks for any advice.
    Owen Brandon

    In the Java Control panel check the "<APPLET> tag support" in the Advanced tab.

  • I have changed my Apple ID on my iPad, but my iPhone keeps popping up with the old ID.....how do I get all my devices to use the same ID?

    How can I get all my devices to use the same Apple ID?

    Different services on your iOS device (iMessage, Facetime, iCloud, iTunes and App Store) can be signed into with an Apple ID of your choice. Make sure you verify the settings for each device and that you are signed in to each service with the correct Apple ID.
    I'll do an example for iMessage:
    1) Go to settings on your iOS device
    2) Select "Messages"
    3) Select "Send & Receive"
    4) At the very top you will see "Apple ID", by selecting your Apple ID, you will now have the option to sign out of messages with the current Apple ID, and sign in with the new one.
    The steps for changing your Apple ID for other services will be very similar.
    tHIS SHOULD BE VERY HELPFUL TOO YOU.

  • How can i get mynew mac mini to use the drive in my old mac pro

    When I first got my new mac mini it dosen't have an internal drive.   So I hooked it up on the network and fire wire.  I could use the superdrive in the mac pro just fine  both itunes and the dvd player worked as they would with a internal drive.   But now a couple of upgrade down loads later not so much.  yes I can connect with screen share and can get the dvd player to play dvd's but still can't get itunes to use the superdrive.  Iht exect disk icon in the apple menue bar use to open and close the super drive but now it reads "no disk" How can I get my mac mini to automaticly use the superdrive when i turn on the mac pro. 
    I've done all the easy things changing the order of start up and share settings and i sware it did work ok when i first hooked it up.

    http://www.totalapps.net/mac/remote-disc-sharing-when-the-superdrive-doesn’t-wor k-2/
    Mind you, booting off the external optical drive of another computer may not be practical because of the different operating system limitations of the computers.   I would just purchase an external optical drive from http://www.macsales.com/ if you find it doesn't work.

  • How can I get dataTable to display values from the java layer?

    When I use the dataTAble in my JSP page it will only display values from my java layer if the facets tag has it's name set to "header". Why is this happening?
    If I set it to "header" and I look at the page source it actually has created the correct number of rows but it doesn't put the values between the <td> tags? It see's the length of my list but it doesn't pick the values out of the list.
    <h:dataTable var="data" value="#{NameBean.test}" border="1">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    </h:column>
    <h:column>
    <f:facet name="header">
    <!-- <h:outputFormat styleClass="outputFormat" id="format1" value="#{NameBean.test}"></h:outputFormat>-->
    <h:outputText styleClass="outputText" value="#{NameBean.test}" style="" rendered="true" escape="false"/>
    </f:facet>
    </h:column>
    </h:dataTable>
    public List gettest()
              List li = new LinkedList();
              Object Developers[] = {"M@n00j", "sdsadas"};
              for( int i = 0; i < Developers.length; i++ )
                   li.add(Developers);
              return li;
    Thanks in advance to anyone that can help.
    -ls6v

    I've been able to get it working with some of those changes along with changes in the JSP. I think it's a setting or two in the JSP that'll allow the program to run correctly.
    I have a list and it's returned like what you suggested. A day or two ago I tried to move the outputtext outside of the facet tag but nothing would print, I know believe that's related to the following setting in the JSP:
    rows="0" in the <h:dataTAble tag
    Unfortunately the dataTAble isn't displaying the values correctly. It prints all of the values (Strings) in the list on each row and it make a new row for the number of items in the list.......... ???
    Here's what it's printing to the screen (the table):
    ===================
    == [asdasd], [sddfdfd] ==
    ===================
    ===================
    == [asdasd], [sddfdfd]==
    ===================
    what it should print:
    ============
    == [asdasd] ==
    ============
    ============
    == [sddfdfd] ==
    ============
    My code:
    public List gettest()
              List li = new ArrayList();
              li.add("asdasd");
              li.add("affffd");
              return li;
              }JSP
    <h:dataTable border="1" columnClasses="list-column-left"
        headerClass="list-header"
        rowClasses="list-row-odd"
        id="table"
        rows="0"
        value="#{NameBean.test}"
        var="data">
    <h:column>
    <f:facet name="header">
    <h:outputText value="test"/>
    </f:facet>
    <h:outputText value="#{NameBean.test}" style="" rendered="true" escape="false"/>
    </h:column>
    </h:dataTable>

  • How Do I get a portlets actual path using the PRC?

    Greetings,
    I have a .NET application and I want to use a config file(text)to set some variables in my load_page method. I plan on putting the config file in a directory relative to where the portlet lives, but I can not seem to get the string of the actual portlet host. This seems easy enough but I can't figure it out.
    I am using G6.
    Thanks In advance.
    Rich
    P.S. Please don't direct me to tags!

    .NET provides about a bajillion ways of doing this - try...
    (As Chris noted, you can try mappath)
    (or) Request.ApplicationPath
    (or) Request.PhysicalPath
    Keep in mind that if you start playing around with config files I would strongly suggest looking at web.config. It's made for this and also supports the idea of "inherited" properties such that a web.config at a higher level in the IIS directory system can set values you intend to share across all apps (EX: database connection information or whatever) - BUT - the nice thing is you can override those values at a lower level by simply placing the value in a web.config within your apps virtual directory (or you could do any number of other things with an app config).
    "How to: View Inherited and Local Configuration Settings Programmatically"
    http://msdn2.microsoft.com/en-us/library/ms228059.aspx
    "ASP.NET Configuration File Hierarchy and Inheritance"
    http://msdn2.microsoft.com/en-us/library/ms178685.aspx
    No tag love?
    Thanks,
    Eric

  • I imported a photo from my email to my iphoto but now my HP printer is printing my documents from the photo cartridge.  How do I get my printer to print using the regular black cartrigde.

    I imported a photo from my email to my iphoto. I  am on a Mac OSX version 10.6.8.  But now my HP printer 7510 is printing my documents with the photo cartridge rather than the regular black cartridge.  How do I correct this.

    Seems like an odd question for an iPhoto forum and more one for an HP forum.

  • How do I set up a push iCal using the Lion Server on a Mac Mini?

    I have the server set up to work as a remote server. I have added users. Now I want to set up iCal to push, what are the steps to do this?

    Create a separate iTunes library for each device. Note: It is important that you make a new iTunes Library file. Do not just make a copy of your existing iTunes Library file. it will work. I am using it through this

  • I have a 120gb Classic that has no space left on it. i am going to buy a larger gb capacity ipod as soon as i get clearer instruction on how to get the old ipod content to the new ipod. How do you get content from one ipod to the other?

    how do you get content from one ipod to the new one? my content is on an external hard drive not on my pc and i have run out of space on my 120gb classic. can you get old ipod content to new? my itunes has only got short cuts, the real content is on an external drive? can this be done?? please help

    If the content is on an external drive, but your library knows where to find it, then it should all work. Connect your device, make some selections for what to put on it, and sync. If, on the other hand, your current iPod is the only place holding some of your media then see this user tip: Recover your iTunes library from your iPod or iOS device.
    tt2

  • How do i get on my apple account on the desktop without signing up with a credit card or Itunes card, i already have an account it just won't let me sign in without giving the desktop version a credit card

    How do i get on my apple account on the desktop without signing up with a credit card or Itunes card, i already have an account it just won't let me sign in without giving the desktop version a credit card

    SEARCH!
    http://lmgtfy.com/?q=itunes+account+without+credit+card

  • When I use Home sharing, I can see the library I want to copy, but when I highlight the library, the import button does not show up. Also, it will not let me drop and drag. How do I get music from one computer to the other computer?

    When I use Home Sharing, I can see the library I want to copy under Shared, but I can't get it save on the computer under the regular library. I go to edit and "select all" but there is no import button that is in the right hand corner. Also, it will not let me click and drag the music. How do I get it from one computer to the other?

    Since both computers are connected via the network, you could simply copy the ENTIRE iTunes folder from one computer to another via the network.
    If both computers are running Windows, use the Easy File Transfer Utility built into Windows to move iTunes and all other user media/data.

  • HOW CAN I GET A DESCRIPTION OF ALL OF THE FRATURES IN lION 10.7.4

    How can I get a description of all of the programs that came with my mac pro without spending an arm and a leg?

    This is a good place to start and follow the links to all the Mac 101 articles.
    http://www.apple.com/support/mac101/
    Regards,
    Captfred

  • How do i get my iphone to sync with the itunes on my device?

    how do i get my iphone to sync with the itunes on my device?

    Try viewing this article:  http://support.apple.com/kb/ht1386

  • How do i get my podcasts to go from the one i just finished to the next one and how do i sort them from oldest to newest?

    how do i get my podcasts to go from the one i just finished to the next one withouth me having to click on it, and how do i sort them from oldest to newest?

    Not sure if you tried this, but did you hold down both the sleep and home button for 10 seconds? 

  • I add my comcast email to the mail on a iMac running Maverick. It downloads all my emails from there. How do i get my email to delete of the the server

    I add my comcast email to the mail on a iMac running Maverick. It downloads all my emails from there. How do i get my email to delete of the the server

    Go to Mail Preferences>Accounts, click the '+' button below the list of accounts and insert the settings, username and password as instructed. Some account types can be set up automatically as soon as Mail knows the emails address (because the server settings are built in), in other cases you will have to get them from your ISP.

Maybe you are looking for

  • User exit for  Sales order

    hi,    i need to eliminate leading zeros for PO number which comes in SO created trough ALE.i found the enhancement for the FM idoc_input_orders.in that enahancement we have 12 FM's.my Leading zeros are comming for field belnr which comes in e1edk01

  • PROBLEM with new Airport Extreme

    i just bought the new airport extreme and what was supposed to be a simple setup process has taken longer than 10 hours! please help! i have 3 computers. 2 are macs, they will be using wireless. 1 is a PC, which will be wired to the airport extreme.

  • I am having trouble re insalling itunes i get the message "Could not access network location %APPDATA%|.

    Help  can't install or uninstall itunes keep getting the message " could not access network location %APPDATA%\, "

  • Dvd created in final cut pro not working

    I have created multiple Dvd's in Final Cut Pro X and never seem to have a problem. Yet with my most recent project I've run into a problem. The created Dvd's will not play on any of our dvd players, blue ray or regular player. The error message I am

  • Pcard Statement Processing

    We currently have PCard processing implemented on BBPCRM 4.0.  We are moving to SRM on 5.5 Server.  The present processing of PCard statement is quite cumbersome and we would like to evaluate different options.  Current process… - Manually access PCa