In need of a volunteer or two to test a link for me

Hi guys, I need a favour.
I am getting close to releasing an alpha version of a browser framework for JFX that I've alluded to a couple of times on the forum.
I have put together a showcase of it and, with some help from Jonathan, I've gotten through the initial setup hurdles. Jonathan's sent me some screen shots however of how it looks on his machine and the styles are not coming through. I'm hoping its just because he's using a development build so I'm looking for a couple of people to test out the application at the following link and, if possible, send me some screenshots:
http://www.zenjava.com/demo/jfxflow/showcase/
You can either email screenshots directly to me at danjz at hotmail.com or use something like TinyGrab (http://tinygrab.com/download.php).
On my machine it looks like this:
http://tardis1.tinygrab.com/grabs/b4dfc5e9614e014b82932d087d60f30b69057f719c.png
http://tardis1.tinygrab.com/grabs/b4dfc5e961ac8c84cfb466cc59efb0c5f9645f84dd.png
I'm also keenly aware of the fact that this showcase is only just styled enough not to be hideously ugly. Given its meant to be a framework to encourage slick GUIs this is something I'd like to address but there's only so much one man can do after hours. If there are any creative individuals out there interested in making the showcase more sexy (i.e. styling it up, adding more animations, putting in icons, logos and colours), please get in contact, any and all help welcome! There's no technical reason why we can't do stuff like this in JFX:
http://www.webdesignerdepot.com/2010/10/showcase-funky-and-experimental-websites/
http://www.delpadre.com/
http://www.kincreative.com/blog/A-few-funky-Flash-sites/6800/
Much appreciated!
zonski

Thanks for the feedback Michael, I definitely appreciate it!
I've just made JFX Flow public and gotten a jar up onto the site (and into a public snapshot repository). I'll put up a separate forum post with the details straight after this.
In the mean time, some comments to your helpful feedback inline below.
To my opinion it is absolutely crucial for the success of
JavaFX on the web to fully support a more App-like behaviourI agree 1 million percent (yea, that much) about the whole deployment thing. Even the slightest annoyance for the user in the Java/JFX installation and running is, in my opinion, the single biggest hurdle to JFX being taken up. Make this seamless then I genuinely believe that JFX will go as (or more) viral than Flash has, which is what I would love to see happen! This issue, plus the horrid default look and lack of styling is what stopped Swing being the king it should have been.
I use chrome and when it wants to install a plugin it just says "this page needs a plugin to run do you want to install?", - one click and 30 seconds later and its all done. If Java+JFX installation was this easy we would have rapid uptake! Currently (or last time I did it anyway) I get a prompt to install Java, which takes me to a web page, where I have to agree to T&C, I agree, I install, I then have to manually go back to my website, I run my app (again), it prompts again but this time to install JFX, I say yes, then it does some more dialogs, I then get a loading a dialog, then a do you trust app dialog, and then finally, I might see my app (unless I'm a developer who has a couple of JVMs installed in which case it seems to be pot-luck which one JFX got installed to and which one the browser launches via webstart).
Just this week I had to agree to make a traditional web-front end for one of our upcoming systems to avoid the JFX installation issues when it is used by casual, add-hoc users. Painful and sad. It would almost be worth having a plugin that bundled the JVM into JFX for now and it all installed magically, instantly, in one click, rather than wait for Java 8 or 9 or whatever when they finally bundle it into the same platform. I'm sure there's a creative solution to this problem there somewhere. Ideally we would be at least as good as Flash in this area (preferably better).
Unfortunately my framework is at the mercy of the elements here. As far as I know FXML needs the signing still (or has this been sorted?). The showcase also uses Spring's annotation based config which does internal code generation. I could take this out and use something else (or role it by hand) but I think I also mess with a few class accessibility flags in a couple of areas of JFX Flow, which I think would also trigger the security manager to barf.
I definitely could and should officially sign my jar with a real certificate and only ask for the permissions I need. At this stage, I'm kind of taking advantage of the fact that it is other developers using the showcase and you guys will be more forgiving (right?). I will definitely put this on the todo list for a final release though. If you have other ideas based on the source code of ways to achieve things, I'd love some help.
Once inside your App (I have decided to trust you :-) )Brave man ;)
I observed that there seems to be a problem with the transitions.
When I click on a link or go back to a previous page, the page
seems to be shifted back and forth by a few pixels before the
transition takes place. This somehow ruins the otherwise
very nice effect.Bummer. I was hoping this was only on my machine as I've had it before on another project but a guy at work didn't see it.
It's not actually anything to do with transitions though, if you didn't go anywhere it would still do it when you just click on the link (I think). I don't think this is specifically anything I am doing. I think it is something to do with the styles of the hyperlink and/or button changing when they get armed or vsited or something and this changes their preferred size which causes the layout manager to readjust everything slightly. I spent a good few hours on it last time and just couldn't find the magic switch to make it work. I'll add it to the todo list though (again, help appreciated :) ).
When navigating to other pages you can easily get lost and
then you feel the need for something like a home button.Jonathan suggested the exact same thing. It is definitely part of the design that you can easily add a home button (and totally customise the browser if you want).
I actually had a home button on by default in early versions but then checked major browsers and this doesn't seem so popular any more so I took it out. Thinking about it though, a home option probably makes more sense for an application though than a general browser where home is less relevant. I think I will add this to the todo list.
Thinking about it, it would also be nice to have something like
a breadcrumb bar And again Jonathan suggested the exact same thing. I'm seeing a pattern :)
A breadcrumb bar would be pretty easy to implement. A simple one could just observe the NavigationManager.backList and create/remove buttons to match. I think this would be valuable to have in the framework as an optional control (and Jonathan mentioned he might provide some of his code that does something similar already, which would be nice).
Breadcrumbs only really work however when you have an acyclic navigation path though (as far as I know anyway, people are always coming up with clever solutions to problems so maybe someone has an approach that is user friendly?). In the showcase this would work and would be great as you always drill down and then back up. If you have an application like a 'contact manager' where you could view a person and then link to an organisation from that person and then back to the person from that organisation, you would end up with a pretty weird and fairly meaningless breadcrumb trail and I don't think it would make sense to have it.
The BrowserHeader is the class that provide this and Browser has a setHeader on it, the intention being that people could build their own headers (and footers) and easily attach it to the browser. The default one I have provided is deliberately simple. It might be worth having a couple of header implementations in the JFX Flow framework however, and people can just instantiate the one that best fits their needs (or still create their own). I'll think a bit more about it, but it has some merit. Probably not an urgent feature though, but definitely a cool one.
or even bookmarks.Yea, these are possible too and I had thought about it in the early design. Every page is referenced by a 'Place' object and you can get the current place from the NavigationManager so you can just stick that in a list or something (or show it however you want). I'd sort of forgotten about this (it's more a value-add feature) and I probably need to think about making place immutable or place having a clone() method or something so you can snapshot it for your bookmarks (in case someone edits the current place, kind of like a URL rewrite - you don't want this messing up your bookmark).
When you are hovering over a link there should always be
a visual feedback. On the Navigation-Page there are images
on which you can click but you don't see this in contrast
to the title texts which get underlined when you hover over
them.Yep, agree. I couldn't get styling working on those !@#$@ ImageViews. I don't know what's wrong with them. CSS selectors make me want to stab my eye out with a pencil and it was getting late at the time. I gave up before I could find a pencil. I will have to go and have another look down the road.
Dialogs should be positioned relative to the stage. On
the Using Dialogs page the simple dialog appears somewhere
in the middle of the screen where I would not expect it.Agreed. Also when the main stage is sent to back or minimized, the dialog should go with it but it currently doesn't.
Dialogs weren't actually part of the original feature set (I tend not to use them) but it seemed like a contentious issue for a lot of users and to build it on top of JFX Flow (which has a handy top level browser) seemed like an easy win. I need to put a little more love into them though. It's probably second on the todo list after docco at this stage.
Some other feature came to my mind. I ran your demo on a high
resolution laptop (1920x1200) and the text was a little bit
too small for my old eyes :-) and thus I was immediately
missing a featue of a browser to zoom the whole content via Ctrl-+Hmm, nice idea. I'm just a lowly consumer of the JFX API and I think the closest feature I'd have for this is 'scale', which I don't think would do the job (you really just want to add/subtract to the font size and scale only images). If there's a way to do this with stylesheets or something similar it could be added to JFX Flow? Otherwise I'm going to see if we can get the UI design guy looking at this stuff soon so we can get the JFX team at least thinking about features that would support this browser-style GUI out this for future releases. I know Richard is supportive of the browser idea and Jonathan has been real helpful and supportive so far in feedback and getting me through a few hurdles.
I hope that my comments are a little bit useful for you
and that you will continue your great work because it
addresses areas where JavaFX itself is really falling short.Thanks for the comments, they are definitely helpful and I would very much like you to keep firing them through. I'm happy to continue them here, or if you rather there are a couple of things that come with the google hosting. I've not used either yet but there are issues (http://code.google.com/p/jfxflow/issues/list) where you can file bugs and (http://groups.google.com/group/jfxflow-discuss) where we can discuss enhancements and ideas etc. If you have any problems with either, give me a shout as I may not have set them up properly or something.
Maybe when JFX Flow is big enough Atlassian will let me host all this stuff with them for free ;)
I'm also very glad you can see potential for JFX Flow adding value to the JFX space :)

Similar Messages

  • I got two 4th generation ipod touch for my girls.  Can I use my Apple ID on there Ipod Touch, or do they each need their own?

    I got two 4th generation ipod touch for my girls.  Can I use my Apple ID on there Ipod Touch, or do they each need their own?

    You can use the same ID. See the following in order to allow Messages and FaceTime among all users of the same ID
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime

  • My assistant and I are using two Lightrooms (i.e. two serial numbers) and need to share between our two computers. I provide originals to her onto a flash drive. She tags them and returns them to me. I then copy the photos from her flash drive onto my com

    My assistant and I are using two Lightrooms (i.e. two serial numbers) and need to share between our two computers. I provide originals to her onto a flash drive. She tags them and returns them to me. I then copy the photos from her flash drive onto my computer and load them in my LR. The photos appear but witthout any editing or tagging. We need to be able to have her working on the photos on her computer with her copy of LR and me on my computer with my version of LR being able to access what is already tagged and given back to me. This seems hard. We need advice on if it is at all possible to have two computers simultaneously working on LR . I bought her her own version because I was told at the time of purchasing that that was the only way to share. Please advise urgently! Thanks.

    Sounds like your assistant isn't instructing Lightroom to write the tagging and editing to the files themselves, so wehn the files return to you, they don't have editing and tagging information. She need to select the photos in Lightroom and then Ctrl-S (Cmd-S on Mac). Or alternatively turn on the option to autmoatically write this information to the files.
    If you are using RAW photos, then this information will be written to a sidecar XMP file, and your assistant must provide you with the sidecar file. If these photos are not RAW photos, then the information is written directly into the photo file itself.
    Lightroom wasn't designed to be a multi-user program, and so it is truly not possible to have two people working on the same catalog at once. The way you are doing things, as modified above, is probably the way to go.
    As an alternative, you can transfer (portions of) catalogs as well as photos back and forth and then all of these issues disappear, but a catalog might be rather large for a flash drive (or maybe not, it depends)

  • Need to eliminate Space between two Pivot table view  in OBIEE 11g

    Hi,
    I have a requirement to eliminate space between two pivot table views. In a single report I have two Pivot table with two different column, I placed both of them one after another, but I need to eliminate the space between two pivot table views as if it should show as a single pivot table in OBIEE 11g.
    Could anyone please let me know how I can do this in OBIEE 11g?
    Thanks in Advance
    Anirban Mitra

    If I create narrative view it will be another view. And if I put that in between that two pivot view, it will show the space. I need to remove space between two pivot table within a single report so that it can appear as a single pivot view.
    Thanks

  • I need a script to merge two particular layers

    I need a script to merge two particular layers.They always are named the same.

    What's your budget.

  • I own a Imac and a mac book. do I need to purchase one or two verions of the osx lion?

    I own an Imac and a Mac book. Do I need to purchase one of two versions of the OXS lion.

    One, you can install it on up to 5 computers under the same Apple ID. 

  • Need to merge the below two rows

    Hi,
    I have a sample data as shown below:
    ID     OBJID     ACT_CODE     ADDNL_INFO     ENTRY_TIME
    2523540     333003736     900     from WIP default to Queue PSD1.     1/3/2012 15:07
    2523540     333003271     100     100 from Queue PSD1 to WIP For assigment. 1/3/2012 15:43
    2523540     333003744     900     900 from WIP default to Queue PSD1.     1/3/2012 15:49
    2523540     333004966     100     100 from Queue PSD1 to WIP For assigment.     1/3/2012 16:04
    I need to merge the first two rows and get a single record for each "from" and "to" as shown below (desired output)
    ID_NUMBER     ADDNL_INFO     ENTRY_TIME     EXIT_TIME     TOTAL TIME
    2523540     PSD1     1/3/2012 15:07     1/3/2012 15:43     0.025069444
    2523540     PSD1     1/3/2012 15:49     1/3/2012 16:04     0.010231481
    I have used function on the addnl_info column to display only the name of the queue "PSD1"
    (SUBSTR(ADDNL_INFO, INSTR(ADDNL_INFO, 'PSD1'), LENGTH('PSD1'))) QUEUE_NAME
    Can any one help me out in getting the desired output.

    Below is a solution to your query:
    drop table test_Table;
    create table test_Table
      ID          number,
      objid       number,
      act_code    number,
      addl_info   varchar2(500),
      entry_time  timestamp
    insert into test_Table values (2523540, 333003736, 900, 'from WIP default to Queue PSD1.', to_timestamp('1/3/2012 15:07', 'DD/MM/YYYY HH24:MI'));
    insert into test_Table values (2523540, 333003271, 100, 'from Queue PSD1 to WIP For assigment.', to_timestamp('1/3/2012 15:43', 'DD/MM/YYYY HH24:MI'));
    insert into test_Table values (2523540, 333003744, 900, 'from WIP default to Queue PSD1.', to_timestamp('1/3/2012 15:49', 'DD/MM/YYYY HH24:MI'));
    insert into test_Table values (2523540, 333004966, 100, 'from Queue PSD1 to WIP For assigment.', to_timestamp('1/3/2012 16:04', 'DD/MM/YYYY HH24:MI'));
    select * from test_table;
    select id, addl_info, entry_time, exit_time, total_time
    from
    select a.id, a.objid, 'PSD1' addl_info, a.entry_time, lead(a.entry_time, 1, null) over (order by a.entry_time) exit_time,
           lead(a.entry_time, 1, null) over (order by a.entry_time) - a.entry_time total_time, DECODE(a.act_code, 900, 'D', 'ND') disp
      from test_Table a
    where a.id = 2523540
    where disp = 'D';
    ID             ADDL_INFO            ENTRY_TIME          EXIT_TIME                     TOTAL_TIME
    2523540     PSD1     01-MAR-12 03.07.00.000000000 PM     01-MAR-12 03.43.00.000000000 PM     0 0:36:0.0
    2523540     PSD1     01-MAR-12 03.49.00.000000000 PM     01-MAR-12 04.04.00.000000000 PM     0 0:15:0.0I see a shortcoming in the design:
    1. For "WIP default to Queue PSD1" there are two records, both containing different OBJID but same ID, which in ideal case should not happen. You MUST have a COMPOSITE key on ID and OBJID; This shall help you to identify the distinct records.
    My solution is not perfect as it is based on the ENTRY TIME. The reason being SIMPLE Ordering by the OBJID would not lead to a correct difference in the Transaction Time (referred by you as TOTAL_TIME.); Hence, for this reason I had to use ENTRY_TIME to correctly get the total_time.
    If you wish you may follow the solution else I shall always recommend to change the Table Design and follow the correct approach.
    If you are changing the Table design then following shall be a solution:
    select id, addl_info, entry_time, exit_time, total_time
    from
    select a.id, a.objid, 'PSD1' addl_info, a.entry_time, lead(a.entry_time, 1, null) over (order by a.id, a.objid) exit_time,
           lead(a.entry_time, 1, null) over (order by a.entry_time) - a.entry_time total_time, DECODE(a.act_code, 900, 'D', 'ND') disp
      from test_Table a
    where disp = 'D';Regards,
    P.

  • Need to check whether first  two characters of a string is Alphabets or not

    Hi,
    Need to check whether first two characters of a string is alphabet or not.
    Lets say for Ex,
    String as 'DE123456' i need to check whether first  character is non-numeric and then second character as non numeric.
    kindly help me on this.
                    IF length(trim(p_parserec(31))) = 22 AND p_parserec(31) LIKE 'DE%'  THEN
                        AUFTRAGGEBERKONTONR := trim(p_parserec(31)) ;
                     ELSIF  (length(trim(p_parserec(31))) > 22 AND length(trim(p_parserec(31))) < 35)  AND p_parserec(31) NOT LIKE 'DE%'  THEN
                       AUFTRAGGEBERKONTONR := lpad(trim(p_parserec(31)), 34, 0) ;
                     ELSIF length(trim(p_parserec(31))) > 10 AND ascii(substr(p_parserec(31), 1, 2)) between 48 and 57 THEN
                       AUFTRAGGEBERKONTONR := lpad(trim(p_parserec(31)), 10, 0) ;
                     ELSE
                        p_errorcd   := sqlcode ;
                        p_errordata := sqlerrm ;
                   END IF ;
    Note : In the third else if condition the character should be greater than 10 and first 2 characters should not be alphabets.

    Siva.V wrote:
    Need to check whether first two characters of a string is alphabet or not.
    To this requirement only regexp_like will work too! No need of some other string function!
    Like:-
            -- in regexp_like last parameter shows to ignore case (optional).
    SQL> with t as
      2  (select 'AB123456' as key from dual union all
      3  select 'CD234567' from dual union all
      4  select 'A1234567' from dual union all
      5  select 'A52H4341' from dual union all
      6  select 'Dk274341' from dual union all
      7  select 'DE234556' from dual)
      8  select key
      9  from t
    10  where regexp_like(key,'^[A-Z]{2}','i') -- even '^[[:alpha:]]{2}' or '^\D{2}' pattern can be replaced for same result..
      11  /
    KEY
    AB123456
    CD234567
    Dk274341
    DE234556
    Thanks!

  • I have a tax exempt form and I need to get taxes removed from my creative cloud bill for two differe

    I have a tax exempt form and I need to get taxes removed from my creative cloud bill for two different accounts.  How do I do this?

    Here you go: http://helpx.adobe.com/x-productkb/policy-pricing/place-tax-exempt-order.html#main_Tax_exe mpt_orders_in_the_U_S__and_Canada
    Contact support.

  • After Effects says I need to have at least two frames to render a ram preview. I multiple frames. Ho

    After Effects says I need to have at least two frames to render a ram preview. I multiple frames. How do I make it ram preview?

    First, install the most recent updates:
    http://blogs.adobe.com/aftereffects/2012/10/after-effects-cs6-11-0-2-update-bug-fixes-and- added-gpus-for-ray-traced-3d-renderer.html
    If that doesn't solve the problem for you, we need to know a lot more if we're going to help you. Please provide answers to the questions listed here: "FAQ: What information should I provide when asking a question on this forum?"

  • I am a student and want to use indesign, illustrator och photo shop. What subscription do I need? Also, I have two computers, can I have the programs om both of them?

    I am a student and want to use indesign, illustrator och photo shop. What subscription do I need?
    Also, I have two computers, can I have the programs om both of them?
    One of the compusters is at my internship workplace and I will only be here for 3 more months, after that I want to be able to use the programs on my own computer.
    Thanks!
    Karin

    Okey, so there is no licens system which only allows use on one computer at the same time?
    Say that I want to keep working on something from work on my home computer, then that's no problem?
    Thanks!

  • I need help to get my two computers to share music on my how network..

    for years I was able to network music from my laptop to my desktop. Now since loading MS Office 2010. I can not seem to get the two computers networked up. My laptop has all my music. The desktop version of Itunes is empty. Can anyone help?

    Hi and Welcome to the Forums!
    Here is a KB that discusses that error:
    KB25869Unable to synchronize calendar appointment, contact anniversary or contact birthday with a start date prior to 1900
    Hopefully it contains something useful!
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need to get .ENV and reports.sh set up correctly for 9i/WebUtil

    We have been editing default.env, a app-specific version of default.env called duris.env, and reports. sh, trying to fix the conflict between Forms WebUtil and Reports in 9.0.2.0.1. Now, it's to the point that I can't even run Reports from Forms without core dumping(direct URL calls to Reports work fine) .
    I am pasting the contents of these 3 files into this note, in hopes someone can look at them and tell me why Reports won't even run from Forms any more. Any suggestions are welcome. My email is [email protected].
    Here is the content of our default.env:
    # $Header: default.env@@/main/25 \
    # Checked in on Wed Apr 3 15:45:42 PST 2002 by vobadm \
    # Copyright (c) 2002 by Oracle Corporation. All Rights Reserved. \
    # $
    # $Id: default.env /main/25 3-apr-2.15:45:42 vobadm $
    # default.env - default Forms environment file, Solaris version
    # This file is used to set the Forms runtime environment parameters.
    # If a parameter is not defined here, the value used will be that defined
    # in the environment in which the servlet engine (OC4J or JServ) was started.
    # NOTES
    # 1/ The Forms installation process should replace all occurrences of
    # <percent>FORMS_ORACLE_HOME<percent> with the correct ORACLE_HOME
    # setting, and all occurrences of <percent>O_JDK_HOME<percent> with
    # the location of the JDK (usually $ORACLE_HOME/jdk).
    # Please make these changes manually if not.
    # 2/ Some of the variables below may need to be changed to suite your needs.
    # Please refer to the Forms documentation for details.
    ORACLE_HOME=/usr/oracle/product/9iasr2/mtier
    # Search path for Forms applications (.fmx files, PL/SQL libraries)
    FORMS90_PATH=/usr/oracle/product/9iasr2/mtier/forms90:/usr/oracle/product/webutil/forms:/usr/oracle/apps/duris/forms/bin:/usr/oracle/apps/tools/forms/bin
    # Java class path
    # This is required for the Forms debugger
    # You can append your own Java code here
    CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar:$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar:/usr/oracle/product/webutil/lib/webutil.jar
    #@@CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar:/usr/oracle/product/webutil/lib/webutil.jar
    #CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar
    # The PATH setting is not required for Forms if the Forms executables are
    # in <ORACLE_HOME>/bin. However, it is required if Graphics applications
    # are called from Forms applications.
    PATH=/usr/oracle/product/9iasr2/mtier/bin
    # Settings for Reports
    # NOTE: This setting is only needed if Reports applications
    # are called from Forms applications
    #@REPORTS_CLASSPATH=$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar:/usr/oracle/product/webutil/lib/webutil.jar
    REPORTS_CLASSPATH=$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar
    # Settings for Graphics
    # NOTE: These settings are only needed if Graphics applications
    # are called from Forms applications
    # Please uncomment the following and put the correct 6i
    # oracle_home value to use Graphics applications.
    #ORACLE_GRAPHICS6I_HOME=<your Graphics 6i oracle_home here>
    # Search path for Graphics applications
    GRAPHICS60_PATH=
    # Settings for forms9i tracing and logging
    # Note: This entry has to be uncommented to enable tracing and
    # logging.
    #FORMS90_TRACE_PATH=<FORMS_ORACLE_HOME>/forms90/server
    FORMS90_TRACE_PATH=/ford/thishost/u/oracle
    # System settings
    # You should not normally need to modify these settings
    # Path for shared library objects
    # This is highly platform (if not machine) specific ! At install time
    # <percent>LD_LIBRARY_PATH<percent> should be replaced with the
    # actual value of the LD_LIBRARY_PATH environment variable (at install
    # time). That should ensure we have the paths for such necessities as
    # the motif and X11 libraries.
    # Explanations:
    # - Reports needs the path for libjava.so
    # (/cdm/solaris/o_jdk/1_2_2_0_0/jre/lib/sparc)
    # - Forms needs two paths to the jre, for libjvm.so and libhpi.so
    # - In ojdk 1.3.1 the location of libjvm.so is lib/sparc (there is no
    # classic directory) so we do not include the .../classic directory
    # below. There are other versions of libjvm.so (in directories server,
    # client and hotspot) but we will use the version in lib/sparc for now.
    SHLIB_PATH=/usr/oracle/product/9iasr2/mtier/lib32:/usr/oracle/product/9iasr2/mtier/jdk/jre/lib/PA_RISC:/usr/oracle/product/9iasr2/mtier/jdk/jre/lib/PA_RISC/classic:%SHLIB_PATH%
    # Added for WebUtil
    WEBUTIL_CONFIG=/usr/oracle/product/webutil/server/webutil.cfg
    Here is the content of our app-specific .ENV file, duris.env:
    # $Header: default.env@@/main/25 \
    # Checked in on Wed Apr 3 15:45:42 PST 2002 by vobadm \
    # Copyright (c) 2002 by Oracle Corporation. All Rights Reserved. \
    # $
    # $Id: default.env /main/25 3-apr-2.15:45:42 vobadm $
    # default.env - default Forms environment file, Solaris version
    # This file is used to set the Forms runtime environment parameters.
    # If a parameter is not defined here, the value used will be that defined
    # in the environment in which the servlet engine (OC4J or JServ) was started.
    # NOTES
    # 1/ The Forms installation process should replace all occurrences of
    # <percent>FORMS_ORACLE_HOME<percent> with the correct ORACLE_HOME
    # setting, and all occurrences of <percent>O_JDK_HOME<percent> with
    # the location of the JDK (usually $ORACLE_HOME/jdk).
    # Please make these changes manually if not.
    # 2/ Some of the variables below may need to be changed to suite your needs.
    # Please refer to the Forms documentation for details.
    ORACLE_HOME=/usr/oracle/product/9iasr2/mtier
    # Search path for Forms applications (.fmx files, PL/SQL libraries)
    FORMS90_PATH=/usr/oracle/product/9iasr2/mtier/forms90:/usr/oracle/product/webutil/forms:/usr/oracle/apps/duris/forms/bin:/usr/oracle/apps/tools/forms/bin
    # Java class path
    # This is required for the Forms debugger
    # You can append your own Java code here
    CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar:$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar:/usr/oracle/product/webutil/lib/webutil.jar
    #@@CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar:/usr/oracle/product/webutil/lib/webutil.jar
    #CLASSPATH=/opt/java1.3/jre/lib/rt.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj90.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar
    # The PATH setting is not required for Forms if the Forms executables are
    # in <ORACLE_HOME>/bin. However, it is required if Graphics applications
    # are called from Forms applications.
    PATH=/usr/oracle/product/9iasr2/mtier/bin
    # Settings for Reports
    # NOTE: This setting is only needed if Reports applications
    # are called from Forms applications
    #@REPORTS_CLASSPATH=$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar:/usr/oracle/product/webutil/lib/webutil.jar
    REPORTS_CLASSPATH=$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/reports/jlib/rwrun.jar
    # Settings for Graphics
    # NOTE: These settings are only needed if Graphics applications
    # are called from Forms applications
    # Please uncomment the following and put the correct 6i
    # oracle_home value to use Graphics applications.
    #ORACLE_GRAPHICS6I_HOME=<your Graphics 6i oracle_home here>
    # Search path for Graphics applications
    GRAPHICS60_PATH=
    # Settings for forms9i tracing and logging
    # Note: This entry has to be uncommented to enable tracing and
    # logging.
    #FORMS90_TRACE_PATH=<FORMS_ORACLE_HOME>/forms90/server
    FORMS90_TRACE_PATH=/ford/thishost/u/oracle
    # System settings
    # You should not normally need to modify these settings
    # Path for shared library objects
    # This is highly platform (if not machine) specific ! At install time
    # <percent>LD_LIBRARY_PATH<percent> should be replaced with the
    # actual value of the LD_LIBRARY_PATH environment variable (at install
    # time). That should ensure we have the paths for such necessities as
    # the motif and X11 libraries.
    # Explanations:
    # - Reports needs the path for libjava.so
    # (/cdm/solaris/o_jdk/1_2_2_0_0/jre/lib/sparc)
    # - Forms needs two paths to the jre, for libjvm.so and libhpi.so
    # - In ojdk 1.3.1 the location of libjvm.so is lib/sparc (there is no
    # classic directory) so we do not include the .../classic directory
    # below. There are other versions of libjvm.so (in directories server,
    # client and hotspot) but we will use the version in lib/sparc for now.
    SHLIB_PATH=/usr/oracle/product/9iasr2/mtier/lib32:/usr/oracle/product/9iasr2/mtier/jdk/jre/lib/PA_RISC:/usr/oracle/product/9iasr2/mtier/jdk/jre/lib/PA_RISC/classic:%SHLIB_PATH%
    # Added for WebUtil
    WEBUTIL_CONFIG=/usr/oracle/product/webutil/server/webutil.cfg
    Here is the content of reports.sh:
    #!/bin/sh
    # $Header: reports.sh@@/main/pl_hpux_formsreports_9i/8 \
    # Checked in on Mon Apr 8 19:40:42 PDT 2002 by diglesia \
    # Copyright (c) 2002 by Oracle Corporation. All Rights Reserved. \
    # $
    # Copyright (c) 60, 2002 by Oracle Corporation. All Rights Reserved.
    ## Example file to set environment variables in Bourne-shell or K-shell
    ## for Oracle Reports 9i. Refer to Install Doc for more detail on each
    ## of these environment variables. You need to modify some of the environment
    ## variables before doing source on this file ( % . reports.sh ).
    ##DISPLAY=< your unix machine name:0.0 >; export DISPLAY
    DISPLAY=localhost:5; export DISPLAY
    ## ORACLE_HOME=< oracle home >; export ORACLE_HOME
    ## if you need more than one diretory in your path, all directories should be
    ## separated by ':'
    PATH=$ORACLE_HOME/jdk/bin:$ORACLE_HOME/bin:${PATH}; export PATH
    ## Platform specific settings
    ## HP-UX settings
    if [ `uname -s` = 'HP-UX' ]
    then
    SHLIB_PATH=$ORACLE_HOME/jdk/jre/lib/PA_RISC:$ORACLE_HOME/jdk/jre/lib/PA_RISC/classic:$ORACLE_HOME/lib32:${SHLIB_PATH}; export SHLIB_PATH
    ## Linux settings
    elif [ `uname -s` = 'Linux' ]
    then
    LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/lib/i386:$ORACLE_HOME/lib:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH
    ## Compaq Tru64 settings (OSF1)
    elif [ `uname -s` = 'OSF1' ]
    then
    LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/lib/alpha:$ORACLE_HOME/lib:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH
    ## Default settings
    else
    LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/lib/sparc:$ORACLE_HOME/lib:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH
    ## end platform specific settings
    fi
    ## You need to set TNS_ADMIN and TWO_TASK or ORACLE_SID to connect to database
    ## Some default values have been set below
    TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN
    ## TWO_TASK=< two task name >; export TWO_TASK
    ## ORACLE_SID=< ORACLE SID >; export ORACLE_SID
    ## setting for Reports Runtime
    RW=$ORACLE_HOME/reports; export RW
    #REPORTS_PATH=$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/samples/demo:$ORACLE_HOME/reports/integ:$ORACLE_HOME/reports/printers; export REPORTS_PATH
    REPORTS_TMP=/tmp; export REPORTS_TMP
    REPORTS_NO_DUMMY_PRINTER=TRUE; export REPORTS_NO_DUMMY_PRINTER
    REPORTS_TAGLIB_URI=/WEB-INF/lib/reports_tld.jar; export REPORTS_TAGLIB_URI
    REPORTS_CLASSPATH=$ORACLE_HOME/reports/jlib/rwbuilder.jar:$ORACLE_HOME/reports/jlib/rwrun.jar:$ORACLE_HOME/jlib/zrclient.jar:$ORACLE_HOME/j2ee/home/oc4j.jar:$ORACLE_HOME/j2ee/home/lib/ojsp.jar;export REPORTS_CLASSPATH
    ##This section added by configurefont.sh
    PRINTER=fontprinter;export PRINTER
    TK_PRINT_STATUS=echo;export TK_PRINT_STATUS
    REPORTS_PATH=$REPORTS_PATH:$ORACLE_HOME/guicommon9/tk90/admin/TTF;export REPORTS_PATH
    #REPORTS60_PATH=$REPORTS60_PATH:$ORACLE_HOME/guicommon6/tk60/admin/TTF;export REPORTS60_PATH
    TK90_UNKNOWN=$ORACLE_HOME/guicommon9/tk90/admin; export TK90_UNKNOWN
    TK90_PPD=$ORACLE_HOME/guicommon9/tk90/admin/PPD; export TK90_PPD
    TK90_AFM=/opt/rational/base/cots/acrobat.4.0/hppa_hpux/Resource/font:$ORACLE_HOME/guicommon9/tk90/admin/AFM; export TK90_AFM
    TK90_FONTALIAS=$ORACLE_HOME/guicommon9/tk90/admin; export TK90_FONTALIAS

    I tried these steps here:
    http://articles.techrepublic.com.com/5100-10878_11-6174105.html
    However I don't have a selection called share Windows in my sharing prefs, nor do I have a Utility called Directory Access

  • I need to configure a new hard disk as backup disk for time machine. The set up program is running and it says it will take 9 days to backup about 56 GB. Is it normal ?

    I need to configure a new hard disk as backup disk for time machine.
    The set up program is running since two hours and it says it will take 9 days to backup about 56 GB.
    Is it normal ?

    Roberto 17 wrote:
    I started this morning at 12 and after 5 hours now the backup is about 6 GB up on 56 GB.
    The new HD is a WD My Passport Edge 500 GB capacity
    5 hours to do 6 GB of transfer is NOT normal, even for USB 2.0 so there's something wrong here. I'd say cancel it, wipe the drive and then test the integrity of the drive. Do some file transfers over to and see if it's behaving normally. It could be a bad USB cable, it could be a bad drive or bad enclosure. As it's new, I suspect you haven't really put it through its paces yet and it's important to do that first before commissioning it to serve as your "reliable backup."

  • How much pain does registering two Oracle Testing Id Cause to everyone?

    Reading the forum over the last 8 months or so seems apparent to me that if a candidate has two (or more!) Oracle Testing Id's and takes exams under both then problems will result as certifications will not be generated untill all pre-requisite passes are under the same Oracle Testing Id. (For those having taken exams under Prometric their Oracle Testing Id has been set to their old Prometric Id.)
    the pain this caused in the old Prometric days is mentioned on the Oracle Certification Blogs Here [http://blogs.oracle.com/certification/2008/09/one_plus_one_zero_when_it_come.html] (dont follow the procedure there .. its out of date).
    The procedure for sorting this still remains a merge, however now through Pearson VUE. The procedure is not directly on Support FAQs [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=82#5Q1A] though would indirectly be covered by (I have not received my success kit what do I do?). The procedure required is however authoratively mentioned at {message:id=3923313}. However as can be seen in the rest of the thread {thread:id=991553} there appears to be occasions when some Pearson Personnel VUE appear to not realise they are responsible for initiating the merge and sometimes the merge man may be on holiday (or maybe off on stress through the number of merge's perhaps?)
    Thus the candidate with two Oracle Testing Id's has a possibility (maybe even likelihood) of pain further down the line in getting it sorted. But as far as I am aware it is usually sorted ... though it may take a while. Pain to Candidate.
    Oracle and Pearson VUE have pain through this as well. There is a support cost dealing with the Oracle Testing Id Merge. Not just in authenticating and performing the merge but also when the query comes as a problem but the root cause is found to be multiple Oracle Testing Ids. While this does give support teams an opportunity to perform the net effect is increased costs for Oracle/Pearson VUE - which means reduced profits or perhaps more likely increased exam costs for everyone - in other words a pain for everyone.
    Basically no one wins on this.
    Why does it happen? I'll exclude why people have had multiple Prometric Id's (Oracle Testing Id's) for exams taken under Prometric. What was done under Prometric has been done.
    However under Pearson VUE why might this happen?
    If I start off at the linke [http://www.pearsonvue.com/Oracle] - Click on My Account - then the Link Create a new web account a form is presented:
    The key part of this form is in the Previous Testing History Frame :
    Please provide the following information.
         Have you tested with Oracle Certification Program before?
         (*) No, this will be my first time testing with Oracle Certification Program.
         (*) Yes, I have tested with Oracle Certification Program before.
               Enter your Oracle Testing ID, if available:If people answer NO to this question and subsequently then need/request an Oracle Testing Id Merge in my opinion they should be charged for this. This is a blatant mistruth. I suspect some people may rush to get regsitered and take the exam and or care about the registration details; or are happy for it to be sorted afterwards rather than getting the Oracle Testing Id. Sorted now.
    HOWEVER:
    - There needs to be a further email just in case they has the wrong button selected by mistake, so after registering the fact there has been no oracle testing needs to be confirmed. I believe, because of form design, there may be a signifcant chance of this happening.
    - There also needs to be indications that if two Pearson VUE Oracle Accounts have been created then subsequently different exams have been passed on each then merging will incur a cost. This is just slopiness by the registrant.
    If the people answer yes; but make a mistake in the Oracle Testing Id, they hopefully that would be picked up.
    IF people answer yes, but leave the Oracle Testing Id blank, hopefully Pearson is on top of getting it sorted and not let the issue propogate. The effects of leaving this blank as unclear to me, and I hope good procedures are in place for handling it.
    There is also IMHO a big issue here that it is not obvious from this page that canididates should enter their old Prometic Testing Id here.
    +++++++++++++++++++++++++++
    In summary I believe people having mulitple Oracle Testing Id's hurts us all, and to prevent this I would suggest a charge for merge where a candidate have incorrectly siad they have not done Oracle Testing before and where they have a had clear chance to correct this in the event the relevant form radio button has flipped without them noticing.
    But I also believe Pearson VUE could probably do a couple of minor changes to procedures, pages and boilerplates to reduce the chances of problems occuring. I think some problems could be stopped before they start.
    Notes:
    (1) Any pages referenced are by myself from UK at time of post. Sometimes from other countries they can be different

    I'd just like to add to this that one poster {message:id=4029960} appears not to have given a Oracle Testing ID when registering with Pearson VUE and that Pearson VUE appears to have located it for him. I assume he indicated he had tested previously and presumably his profile details matched those held by Oracle from Prometric. This appears to be a single (unverified) instance of this working correctly; and the candidate not ending up with multiple Oracle Testing Ids'.

Maybe you are looking for

  • How can I get Thumbnails back in the file View Menu?

    My computer died and I had to re-install CS6.  I had originally installed it to an external hard drive expecting that I could just hook up a new computer when the time came and everything would work as before.   Not to be.   I contacted Adobe and got

  • How do I get photo's from Iphoto to an hotmail post?

    I am trying to mail some photo's that are in Iphoto with my hotmail, but how do I do this? I cannot drag a photo from iphoto into the web browser into my email message, so how do I do this? André

  • Solaris 8 0 FTP

    A windows applications does a FTP get from a folder on a Sun box with Solaris 8. It works fine. Upon installing the 8 patches (approx 150), the FTP connections now keeps dropping. On restarting the NT application,a new FTP connection is established,b

  • Spry collabsible panel add button or text link to get panel to close

    I have a spry collapsible panel here www.AmericanContractorsExchange.com.  I am using the col-panel to hide what wil become the login area.  I would like to add both "text" and buttons to various parts of the page to open or close the panel. Example

  • How Can I sync Garage Band via Camera via I movie?

    My goal is to get the sound out of the recording software rather than out of the crappy camera mics How can I do this WITHOUT having to overdub the sound over a video take?