Default GC/ empty survivor space

I have a web application running on Solaris 8 using JDK 1.5.0_11 on a 64-bit OS. I am uncertain as to what GC algorithm I am using by default; my machine is a server-class machine, as defined by Sun, with 4 processors and 4G of RAM. I have read things that say that the concurrent mark sweep collector is used by default on this machine, as well as others that say that this option MUST be specified to be used. Which is it?
On this same machine, I have observed that if I specify these parameters
-server
-d64
-Xms2304m
-Xmx2304m
-verbose:gc
-Xloggc:<path to file>
-XX:+HeapDumpOnOutOfMemoryError
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled
-XX:+PrintGCDetails
-XX:+PrintGCTimeStamps
according to Jconsole, the "old" generation is empty (never filled). If I indeed do specify -XX:+UseConcMarkSweep, Jconsole shows the survivor space as never being filled. This would suggest that unless I specify -XX:+UseConcMarkSweepGC, the concurrent collector won't be used. Is that correct?
Why is it that either the old generation or the survivor space is never filled? What does that indicate? Is/are there other parameters that I should be setting?
Thanks!

Hi,
CMS is never selected as the default collector. You have to explicitly specify -XX:+UseConcMarkSweepGC to use it.
The default collector for server class machines is the parallel collector:
The following changes take effect with J2SE 5.0.
1. On server-class machines running the server VM, the garbage collector (GC) has changed from the previous serial collector (-XX:+UseSerialGC) to a parallel collector (-XX:+UseParallelGC). You can override this default by using the -XX:+UseSerialGC command-line option to the java command.
[http://java.sun.com/j2se/1.5.0/docs/guide/vm/gc-ergonomics.html]
Not seing your old generation being filled is quite unusual. Are you sure you are running your application long enough? All your objects are always allocated in eden. At each young garbage collection cycle, the surviving objects are copied between the survivor spaces. If they have been copied MaxTenuringThreshold times (can be specified explicitly, the default is somehow object to ergonomics), they tenure into the old generation. If you just run your application for a short time, you might never see this happen.
With CMS, the survivor spaces should be used at each young gc cycle for the objects surviving the gc, unless you specify -XX:MaxTenuringThreshold=0.
Also see http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html for more details.
Nick.

Similar Messages

  • How to give default as empty  to save as filename

    Hi all,
    I need to open a excel file on the browser.User has to enter his own filename for Save As-> Filename.
    It is opening successfully.
    while trying to Save As (file->Save As) for filename it is giving like this "quotes.csv?s=%5EIXIC&f=sl1d1t1c1ohgv&e=.xls"
    but I have to give(default) empty space for filename (after opening the excel on the browser tyring to Save As filename)
    this is the problem to give empty space(default) for filename for Save AS.
    My code is in struts action
    <b>
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              // getting data from JSP
              String columns = request.getParameter("columns");
              String searchString = request.getParameter("searchstring");
              String srchType = request.getParameter("searchType");
              System.out.println(" Action columns:  "+columns);
              System.out.println("Action searchString:  "+searchString);
              System.out.println("Action srchType:  "+srchType);
              String filename = null;
              try {
                   //getting servlet context for absolute path
                   ServletContext context = getServlet().getServletContext();
                   //creating object for dao
                   RegistrationMigrationDAO dao = new RegistrationMigrationDAO();
                   //getting file path from dao
                   filename = dao.migrateregistration(columns, searchString, srchType,
                             request, context, getServlet().getServletName());
                   //System.out.println("url in action: " + filename);
                   //setting mime type
                   response.setContentType("application/vnd.ms-excel");
                   //setting the header
                   //response.setHeader("Content-Disposition", "attachment; filename="+ filename);
                   //creating fileinputstream object to open the file
                   FileInputStream fis = new FileInputStream(filename);
                   //passing FIS object to work book to open in the form of spread sheet
                   HSSFWorkbook book = new HSSFWorkbook(fis);
                   //creating object for outputstream to disply
                   OutputStream out = response.getOutputStream();
                   book.write(out);
                   //closing the outputstream
                   out.close();
              } catch (Exception e) {
                   e.printStackTrace();
              return null;
    </b>
    by using this
    <b>//response.setHeader("Content-Disposition", "attachment; filename="+ filename);</b>
    I am getting but excel is not opening on the browser separately excel file opening (not on the browser separate window as excel). I want open excel on same window(browser) and for Save As-> Filename as empty.
    this is the thing I have to do.
    Give  me solution to give saveas filename as empty after opening the excel on the browser.
    <b>User has to enter his own filename it is allowing but I ahve to give filename default as empty space.</b>
    Thanks in advance
    Rama Krishna

    Hi,
    try
    response.setHeader("Content-Disposition", "inline; filename="+ filename);
    This should force your browser to open the file in the same window.
    And I had the problem with empty file name in save as, too. For our purposes, it helped to shorten the filename. But as I was told this depends on IE and OS versions.
    Regards, Astrid

  • HT1848 I'm trying to sync my ipad mini with itunes and i get an error message '' there is no free space on your ipad mini''..... any ideas on how to empty some space on ipad mini manually? currently i run on 6.0.2

    I'm trying to sync my ipad mini with itunes and i get an error message '' there is no free space on your ipad mini''..... any ideas on how to empty some space on ipad mini manually? currently i run on 6.0.2

    iOS device backups are stored in your iTunes library.
    Move your iTunes library to an external drive.

  • How to make a drop down list default to a blank space

    I have a drop down list
    <cfselect name="EmployeeName" query="getname"
    value="EmployeeName" selected=" "></cfselect>
    I want the list to default to a blank space, can this be
    done?
    If so, how?

    I figured out a way to do it, except now I ran into another
    problem. The way I have it set up, i can't make it required now.
    Any ideas?
    <cfselect name="EmployeeName" query="getname"
    value="EmployeeName" required="yes" message="Please select your
    name">
    <option value="" selected="selected"></option>
    </cfselect>

  • Survivor Space is always full and causes Full GC

    Hi, Gurus,
    I got full GCs on the server today and when I used jstat to look at it, it quite surprised me that survivor space was always full.
    Eden had about 40M free, Old Gen had about 1G free. Permant space looks fine. I don't see why there should be Full GC.
    S0C S1C S0U S1U EC EU OC OU PC PU {color:#ff0000}YGC{color} YGCT {color:#ff0000}FGC{color} FGCT GCT
    17024.0 17024.0 0.0 {color:#ff0000}17024.{color}0 136320.0 97397.6 2424448.0 983664.4 83760.0 50162.0 2389 141.766 {color:#ff0000}1182{color} 57.500 199.266
    S0C S1C S0U S1U EC EU OC OU PC PU YGC YGCT FGC FGCT GCT
    17024.0 17024.0 0.0 {color:#ff0000}17024.0{color} 136320.0 97479.5 2424448.0 983664.4 83760.0 50162.0 2389 141.766 {color:#ff0000}1182 {color}57.500 199.266
    S0C S1C S0U S1U EC EU OC OU PC PU YGC YGCT FGC FGCT GCT
    17024.0 17024.0 {color:#ff0000}17024.0{color} 0.0 136320.0 86847.5 2424448.0 1254066.8 83760.0 50181.5 2406 142.381 {color:#ff0000}1183 {color}57.547 199.928
    S0C S1C S0U S1U EC EU OC OU PC PU YGC YGCT FGC FGCT GCT
    17024.0 17024.0 0.0 {color:#ff0000}17024.0{color} 136320.0 63901.1 2424448.0 980688.6 83760.0 50194.9 2409 142.470 {color:#ff0000}1184 {color}57.629 200.099
    S0C S1C S0U S1U EC EU OC OU PC PU YGC YGCT FGC FGCT GCT
    17024.0 17024.0 0.0 {color:#ff0000}17024.0{color} 136320.0 63978.7 2424448.0 980688.6 83760.0 50194.9 2409 142.470 1184 57.629 200.099
    S0C S1C S0U S1U EC EU OC OU PC PU YGC YGCT FGC FGCT GCT
    17024.0 17024.0 0.0 {color:#ff0000}17024.0{color} 136320.0 64138.8 2424448.0 980688.6 83760.0 50194.9 2409 142.470 1184 57.629 200.099
    GC setting is:
    1.6.0_02-b05-x86_64/bin/java -showversion -verbose:gc -XX:CMSInitiatingOccupancyFraction=60 -XX:CMSIncrementalDutyCycle=50 -XX:CMSIncrementalDutyCycleMin=10 -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+UseCMSCompactAtFullCollection -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+PrintGCApplicationStoppedTime -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -Dsun.rmi.dgc.client.gcInterval=86400000 -Dsun.rmi.dgc.server.gcInterval=86400000 -Xms2534m -Xmx2534m -DLOG4J_WATCHDOG=true
    I don't know why there was no "Full GC" in the log:
    87827.250: [GC 287827.251: [ParNew: 153344K->17024K(153344K), 0.0325760 secs] 642111K->520423K(2577792K) icms_dc=10 , 0.0327100 secs]
    287827.568: [GC 287827.568: [ParNew: 153344K->17024K(153344K), 0.0260580 secs] 656743K->532347K(2577792K) icms_dc=10 , 0.0261780 secs]
    287827.823: [GC 287827.823: [ParNew: 153344K->15632K(153344K), 0.0273900 secs] 668667K->540848K(2577792K) icms_dc=10 , 0.0275110 secs]
    287828.098: [GC 287828.098: [ParNew: 151952K->17024K(153344K), 0.0304150 secs] 677168K->555053K(2577792K) icms_dc=10 , 0.0305420 secs]
    287828.403: [GC 287828.403: [ParNew: 153344K->17024K(153344K), 0.0305150 secs] 691373K->570859K(2577792K) icms_dc=10 , 0.0306520 secs]
    287828.685: [GC 287828.685: [ParNew: 153344K->17024K(153344K), 0.0379710 secs] 707179K->585425K(2577792K) icms_dc=10 , 0.0381200 secs]
    287828.985: [GC 287828.985: [ParNew: 153344K->17024K(153344K), 0.0431150 secs] 721745K->610830K(2577792K) icms_dc=10 , 0.0432430 secs]
    287829.253: [GC 287829.253: [ParNew: 153344K->17024K(153344K), 0.0345560 secs] 747150K->629754K(2577792K) icms_dc=10 , 0.0346570 secs]
    287829.551: [GC 287829.551: [ParNew: 153344K->17024K(153344K), 0.0345630 secs] 766074K->643360K(2577792K) icms_dc=10 , 0.0347040 secs]
    287829.785: [GC 287829.785: [ParNew: 153344K->17024K(153344K), 0.0347640 secs] 779680K->657564K(2577792K) icms_dc=10 , 0.0348710 secs]
    287830.046: [GC 287830.046: [ParNew: 153344K->17024K(153344K), 0.0347300 secs] 793884K->671947K(2577792K) icms_dc=10 , 0.0348460 secs]
    287830.347: [GC 287830.347: [ParNew: 153344K->17024K(153344K), 0.0375390 secs] 808267K->689272K(2577792K) icms_dc=10 , 0.0376620 secs]
    287835.620: [GC 287835.620: [ParNew: 153344K->16585K(153344K), 0.0295650 secs] 825592K->701839K(2577792K) icms_dc=10 , 0.0297360 secs]
    287841.587: [GC 287841.587: [ParNew: 152905K->15178K(153344K), 0.0240180 secs] 838159K->709028K(2577792K) icms_dc=10 , 0.0241380 secs]
    287962.309: [GC 287962.309: [ParNew: 151498K->17024K(153344K), 0.0829110 secs] 845348K->734092K(2577792K) icms_dc=10 , 0.0830450 secs]
    288325.418: [GC 288325.418: [ParNew: 153344K->17024K(153344K), 0.2753590 secs] 869434K->754338K(2577792K) icms_dc=10 , 0.2754940 secs]
    288383.372: [GC [1 CMS-initial-mark: 737314K(2424448K)] 815727K(2577792K), 0.0504460 secs]
    288383.547: [GC 288383.547: [ParNew: 153344K->17024K(153344K), 0.0361790 secs] 890658K->758050K(2577792K) icms_dc=10 , 0.0363070 secs]
    288383.800: [GC 288383.800: [ParNew: 153344K->17024K(153344K), 0.0351570 secs] 894370K->773090K(2577792K) icms_dc=10 , 0.0352870 secs]
    288384.039: [GC 288384.039: [ParNew: 153344K->17024K(153344K), 0.0304930 secs] 909410K->784697K(2577792K) icms_dc=10 , 0.0306350 secs]
    288384.323: [GC 288384.323: [ParNew: 153344K->17024K(153344K), 0.0317450 secs] 921017K->798864K(2577792K) icms_dc=10 , 0.0318700 secs]
    288384.630: [GC 288384.630: [ParNew: 153344K->17024K(153344K), 0.0366800 secs] 935184K->815969K(2577792K) icms_dc=10 , 0.0368140 secs]
    288384.852: [GC 288384.852: [ParNew: 153344K->17024K(153344K), 0.0337750 secs] 952289K->831548K(2577792K) icms_dc=10 , 0.0339080 secs]
    288385.138: [GC 288385.138: [ParNew: 153344K->16444K(153344K), 0.0300460 secs] 967868K->843332K(2577792K) icms_dc=10 , 0.0301850 secs]
    288385.403: [GC 288385.403: [ParNew: 152764K->17024K(153344K), 0.0319640 secs] 979652K->853758K(2577792K) icms_dc=10 , 0.0320770 secs]
    288385.658: [GC 288385.658: [ParNew: 153344K->17024K(153344K), 0.0295970 secs] 990078K->865590K(2577792K) icms_dc=10 , 0.0297140 secs]
    288385.947: [GC 288385.948: [ParNew: 153344K->17024K(153344K), 0.0352280 secs] 1001910K->881224K(2577792K) icms_dc=10 , 0.0353640 secs]
    288386.228: [GC 288386.228: [ParNew: 153344K->17024K(153344K), 0.0358860 secs] 1017544K->897416K(2577792K) icms_dc=10 , 0.0360310 secs]
    288386.522: [GC 288386.522: [ParNew: 153344K->17024K(153344K), 0.0505040 secs] 1033736K->920867K(2577792K) icms_dc=10 , 0.0506410 secs]
    288386.807: [GC 288386.807: [ParNew: 153344K->17024K(153344K), 0.0356400 secs] 1057187K->939937K(2577792K) icms_dc=10 , 0.0358620 secs]
    288387.088: [GC 288387.088: [ParNew: 153344K->17024K(153344K), 0.0347680 secs] 1076257K->955399K(2577792K) icms_dc=10 , 0.0348950 secs]
    288387.329: [GC 288387.329: [ParNew: 153344K->17024K(153344K), 0.0330050 secs] 1091719K->969242K(2577792K) icms_dc=10 , 0.0331310 secs]
    288387.570: [GC 288387.570: [ParNew: 153344K->17024K(153344K), 0.0357920 secs] 1105562K->982914K(2577792K) icms_dc=10 , 0.0359160 secs]
    288387.868: [GC 288387.868: [ParNew: 153344K->17024K(153344K), 0.0367610 secs] 1119234K->998638K(2577792K) icms_dc=10 , 0.0368880 secs]
    288388.512: [GC 288388.512: [ParNew: 153344K->16630K(153344K), 0.0362600 secs] 1134958K->1013366K(2577792K) icms_dc=12 , 0.0364030 secs]
    288398.870: [GC 288398.870: [ParNew: 152950K->14088K(153344K), 0.0250260 secs] 1149686K->1022215K(2577792K) icms_dc=12 , 0.0251510 secs]
    288434.572: [GC 288434.572: [ParNew: 150408K->17024K(153344K), 0.0519690 secs] 1158535K->1043752K(2577792K) icms_dc=12 , 0.0521010 secs]
    288805.656: [GC 288805.656: [ParNew: 153344K->17024K(153344K), 0.2108850 secs] 858554K->744507K(2577792K) icms_dc=10 , 0.2110200 secs]
    288999.265: [GC [1 CMS-initial-mark: 727483K(2424448K)] 806594K(2577792K), 0.0613950 secs]
    289198.629: [GC 289198.629: [ParNew: 153340K->17024K(153344K), 0.2407550 secs] 565998K->436213K(2577792K) icms_dc=10 , 0.2408970 secs]
    289394.326: [GC [1 CMS-initial-mark: 419189K(2424448K)] 498224K(2577792K), 0.0617040 secs]
    289630.132: [GC 289630.132: [ParNew: 153344K->17024K(153344K), 0.2492610 secs] 565902K->436417K(2577792K) icms_dc=10 , 0.2494310 secs]
    289798.632: [GC [1 CMS-initial-mark: 419393K(2424448K)] 497878K(2577792K), 0.0599100 secs]
    290039.842: [GC 290039.843: [ParNew: 153344K->17024K(153344K), 0.2310620 secs] 565827K->435926K(2577792K) icms_dc=10 , 0.2312040 secs]
    290210.826: [GC [1 CMS-initial-mark: 418902K(2424448K)] 498601K(2577792K), 0.0598820 secs]
    290414.495: [GC 290414.495: [ParNew: 153344K->17024K(153344K), 0.2432180 secs] 565680K->435900K(2577792K) icms_dc=10 , 0.2433510 secs]
    290644.238: [GC [1 CMS-initial-mark: 418876K(2424448K)] 498334K(2577792K), 0.0606010 secs]
    291120.210: [GC 291120.210: [ParNew: 153344K->17024K(153344K), 0.2008300 secs] 565657K->435372K(2577792K) icms_dc=10 , 0.2009970 secs]
    291164.186: [GC [1 CMS-initial-mark: 418348K(2424448K)] 496750K(2577792K), 0.0467970 secs]
    291164.359: [GC 291164.359: [ParNew: 153344K->17024K(153344K), 0.0273010 secs] 571692K->437891K(2577792K) icms_dc=10 , 0.0274210 secs]
    291164.605: [GC 291164.605: [ParNew: 153344K->17024K(153344K), 0.0372920 secs] 574211K->452665K(2577792K) icms_dc=10 , 0.0374300 secs]
    291164.860: [GC 291164.860: [ParNew: 153344K->16640K(153344K), 0.0335340 secs] 588985K->464865K(2577792K) icms_dc=10 , 0.0336600 secs]
    291165.153: [GC 291165.154: [ParNew: 152960K->17024K(153344K), 0.0331560 secs] 601185K->479410K(2577792K) icms_dc=10 , 0.0332850 secs]
    Your help is greatly appreciated.
    Jim

    The "FGC" in the jstat output could include CMS actions? If yes, that answers the later half of the question.

  • JVM - Survivor Space fills up to max

    We have run into an issue, where the survivor space fills up to the max pretty quickly, and things start running very slowly as the day progresses.
    We are using jdk1.6.0_16, and here's the JVM parameters the server runs with:
    -Xms12g -Xmx50g -XX:MaxNewSize=8g -XX:NewSize=4g -XX:SurvivorRatio=6 -XX:MaxPermSize=128M
    Here's how it looked like at one point:
    Attribute
    Max Value(MB)
    Committed(MB)
    Initial(MB)
    Used(MB)
    Heap Memory
    50176
    15980
    12288
    6392
    12
    Eden Space
    7389
    3072
    7389
    1872
    25
    Survivor Space
    399
    512
    399
    399
    99
    Tenured Gen
    43008
    8192
    8192
    4120
    9
    Non Heap Memory
    176
    132
    23
    111
    63
    Perm Gen
    128
    20
    110
    88
    69
    I'm not really sure if it's the survivor space that's causing the slowness or nor, but if so, what should I set it to, to get better performance? Or, can I just get rid of it, and let the system handle it.
    Any assistance/insight would be very much appreciated.

    Profiling the application with data that represents real traffic is the way to determine performance bottlenecks.
    If memory is actually an issue then reducing it will make the error occur more quickly, but again one should do that while profiling.

  • How to get rid of all the blank empty white space at bottom of photoshop palettes?

    on a large screen the palettes can have big tall empty white spaces below the last imput.  Sometimes the corner size adjustment box is off the screen
    and I want to eliminate the empty space..
    Can I eliminate this extra blank space (without changing display resolution)?  Why is it there?

    When I take a screen shot     see attached    It shows the bottom of the, in this case, layers and channel, patettes but it is not actually visible or accessible on  my cinema 30" screen.  I know I can change the resolution so the size adjustment boxes can be reached and resize the white space away in that manner, but I like the resolution as is 2048 x1280 for my bad eyesight and continually resizing seems like wasted effort.  There is no purpose for the extra white space so I want to make it so the palettes only show what is in them.  Probably not possible?
    separate  issue:  can you make it so the tool bar is alway in the front?  Why should it ever be behind anything?

  • 6120XP - iqn pool default is empty minor fault (UCSM 2.0(3b))

    We are running a UCS cluster as above using a pair of 6120XP's - UCSM is running 2.0(3b).
    Recently we ran some failover testing to confirm our solution was redundant. When doing this, upon each cluster failover a minor alert was generated for "iqn pool default is empty". We can clear this fauly by going to the fault and using the "Affected object" in the properties section and then using the delete action.
    The main problems we have are;
    1) We can't find any reference to an IQN pool using the standard navigation of UCSM
    2) Each time a failover event is conducted the alert is generated and the pool requires being deleted manually again
    Is there a way to ensure this default pool is permanantly removed? Is this addressed in a future UCSM release?

    Hello Jess,
    When I deleted default MAC pool, it was not re-created after FI fail over event. So I believe re-creating default IQN pool after FI fail over is a new defect.
    I have submitted following bug for development team's analysis on the design behavior.
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCuc70126
    *NOTE* It will take atleast a day to get published and visible on cisco.com web site.
    Padma

  • How to eliminate empty node space from tree when rendered property is false

    Hi
    I have created a menu Tree for my ADF BC application while working in JDev 10.1.3.3.
    I have tried two methods, first is by creating a menu model as discussed in example in ADF Developers Guide Book Section 19.2.1. Second by creating two view objects and creating the menu tree from my database table.
    Depending on the logged in user I want to decide whether to show or not to show a menu tree option to the user. For this purpose I have implemented a function in a managed bean that calls a pl/sql stored procedure to decide if the user has access to a certain component. In first case I have set the rendered property of the menu item to #{menuTree.shown}, where shown is an attribute in the menu model whose value is properly set using java functions that call pl/sql function in turn. In second method, I have also tried to set the rendered property and calling a function that returns true or false based on if the user has access to the menu option.
    Problem
    When rendered property is returned as false, although the menu option is not displayed but an empty space is displayed in my tree and remaining nodes and/or menu options are displayed with an ugly gap.
    How I can remove this unwanted gap, is there a way?
    Regards,
    Amir
    1st option:
    My menu tree:
    <af:menuTree var="menuTree" value="#{menuModel.model}">
    <f:facet name="nodeStamp">
    <af:commandMenuItem text="#{menuTree.label}"
    action="#{menuTree.getOutcome}"
    _rendered="#{menuTree.shown}_"/>
    </f:facet>
    </af:menuTree>
    2nd option:
    <af:tree value="#{bindings.MainMenuView.treeModel}" var="node">
    <f:facet name="nodeStamp">
    <af:switcher facetName="#{node.hierType.name}">
    <f:facet name="MainMenuViewNode">
    <af:outputText value="#{node.Name}" _rendered="#{userInfo.mainNodeOk}"_ />
    </f:facet>
    <f:facet name="SubMenuViewNode">
    <af:commandLink text="#{node.Name}" _rendered="#{userInfo.mainNodeOk}_">
    <af:setActionListener from="#{node.destinationUrl}"
    to="#{menuTree.getOutcome}"/>
    </af:commandLink>
    </f:facet>
    </af:switcher>
    Edited by: Amir Khan on Jan 12, 2009 8:54 PM

    Hi,
    if this reproduces in JDeveloper 10.1.3.4 then this sounds like a bug that you should file
    Frank

  • Printer List (Default) is empty

    When trying to add a new printer the default printer list comes up empty. I have not deleted any drivers, they are all still in /Library/Printers. I have tried reinstalling the drivers from the install disk, and repairing disk permissions, to no avail. Can anyone help?

    With the Print & Fax window open, point your mouse to the empty printer list then hold down Control and then click your mouse. The 'Reset printing system' dialog should appear. Select this and then restart your Mac. Now once restarted, open Print & Fax again and select to add. Select the printer from the default view or enter your network details and then see if the Print using menu has any models listed.

  • Help with Cleaning up Empty/White Space

    Hi all,
    I have a site I'm getting ready to complete, but there are a
    few things bugging me.
    One of which is the empty space at the bottom of the page.
    I'm not sure how to address it and wanted to get your opinion on
    what to do (and how to do it)
    The URL is
    http://feedyoursoul.org/indexDD.html,
    if you look at the bottom, below the footer, you'll see there is
    some white space, if you maximize your browser window is gets even
    worse. What should I do about this?
    This sample page will be just a template, so other pages will
    have considerable more content, but for this page, the home page, I
    want to clean that area up.
    So any suggestions are greatly appreciated.
    Thanks.

    First thing to do is to fix these 24 errors -
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Ffeedyoursoul.org%2FindexDD.html
    Then go read this -
    http://apptools.com/rants/spans.php
    and look at your table structure.
    Next, don't use points on the web to size your characters.
    Finally, come back and let's reconsider your layout scheme.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jcbuche" <[email protected]> wrote in
    message
    news:g28r5r$a1m$[email protected]..
    > Hi all,
    >
    > I have a site I'm getting ready to complete, but there
    are a few things
    > bugging me.
    >
    > One of which is the empty space at the bottom of the
    page. I'm not sure
    > how to
    > address it and wanted to get your opinion on what to do
    (and how to do it)
    >
    > The URL is
    http://feedyoursoul.org/indexDD.html,
    if you look at the
    > bottom,
    > below the footer, you'll see there is some white space,
    if you maximize
    > your
    > browser window is gets even worse. What should I do
    about this?
    >
    > This sample page will be just a template, so other pages
    will have
    > considerable more content, but for this page, the home
    page, I want to
    > clean
    > that area up.
    >
    > So any suggestions are greatly appreciated.
    >
    > Thanks.
    >

  • Set default 3 empty rows on edit (in the table view)

    Hi
    i need to add 3 empty rows, currently only 1 rows gets added by default on edit..
    i tried using the add method of collection wrapper.. i did not find any differrence..
    its adding only one row.
    has anyone worked on similar requirement or any help on this..
    thanks
    Dinesh.

    hi Ravi,
    thank you very much for the reply,  but i even gave 10,10 but there is no change in the display..
    even before edit and after.. in the insert button.. i am able to add 3 new empty rows but on edit
    its not working.. through collection wrapper->Add or insert methods..
    is there any other way to insert new empty rows through program on edit or is there any configuration...
    thanks
    DInesh

  • Can't get rid of empty blank space at top of website

    I'm sure this is quite simple, but I'm stuck!
    I can't get rid of the empty space between the Header
    "Upcoming Events" and the text way way below. Any advice or
    suggestions would be greatly appreciated.
    http://www.uvanyc.org/community/event_upcoming.html
    Thank you in advance for your time!

    Hello,
    This is the problem:
    <td class="body" height="6137">
    Get rid of the height="6137". Let the content determine the
    height of the
    cell.
    Take care,
    Tim
    "UVANYC" <[email protected]> wrote in
    message
    news:g36o27$1b0$[email protected]..
    > I'm sure this is quite simple, but I'm stuck!
    >
    > I can't get rid of the empty space between the Header
    "Upcoming Events"
    > and
    > the text way way below. Any advice or suggestions would
    be greatly
    > appreciated.
    >
    >
    http://www.uvanyc.org/community/event_upcoming.html
    >
    > Thank you in advance for your time!
    >

  • Deleting an empty blank space?

    I've used the milano template on pages to create my CV, however the text at the top (i think is classed as a header) is seperated from the main text by a blank space which i can't seem to delete... I've tryed pressing backspace in case there's any spaces or "returns" there, that didn't work. I tried to change paragraph spacing and that didn't work, unless i'm doing it wrong. Using "show invisibles" and "show layout" i can't see anything that's deletable! Help!
    I've attached a picture, which is obviously blurred out as it has nearly all my contact details... Just so you can see what i'm talking about. As i said before, the pages has "show invisibles" and "show layout" on from the "view" drop down list.

    It is a subtle use of the Layout function. I had to eliminate all other possibilities first.
    Apple is not making this easy or obvious for what I imagine must be the target market, people who don't know layout.
    Peter

  • Clear empty disk space

    When I use Disk Utility to Erase free space on my hard disk my whole mac grind to a holt with constant messages of 'your HD is almost full' - now it's obviously to do with how it clears the disk space but is there any way of stopping in grinding to a holt so early in the process and not alowing any apps to work?

    Why are you erasing blank space?
    If you are getting a hard drive full error, then you need to delete some files. You need ~10% of your hard drive free for the System and applications to work their behind the scenes magic.
    Disk Utility is usually run to fix problems, if you have other applications open DU will very aggressively take control of your hard drive. Don't run it with other applications open!

Maybe you are looking for

  • Can´t get SWF files to work in DW CS5

    I´m doing a personal website with DW CS5. That´s the code for the index.htm page <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <he

  • "Do you want to allow the following program..." Message

    After installing iTunes 9.2 on my Windows 7 (64bit) laptop, every time I attempt to open iTunes it gives me a message asking "Do you want to allow the following program to make changes to this computer?". Clicking yes leads the programme to open, but

  • Vertical lines on LCD screen of Qosmio G20

    Hi all, My Toshiba laptop is showing some vertical lines on the right side of the screen and the number of lines appearing are increasing day by day I have connected to an externel disply and fount no problem with that so i am quiet sure that this is

  • Small upgrade to mac osx 10.5.8

    At a recent visit to the Genius Bar, I was given a phone number to call to purchase an small upgrade to my mac osx 10.5.8.  Now I've lost the phone number. Any help?

  • Infotype 0002-field Nickname (P0002-RUFNM) Screen Spain (04) & Mexico (32)

    Hi, There is a requirement in which we have to add the field Nickname (P0002-RUFNM) in the 'Name' subscreen of transaction PA30. PA30-> Personal Data-> Display/Edit-> 'Name' Subscreen. This has to be done for two Countries- Spain (Alternative Screen