The status and statement about Oracle embrace JavaServer Faces

Hi all:
Have any expert could talking about the status and statement about Oracle embrace JavaServer Faces standard,
whether Jdeveloper 10g have full support this standard now, and UIX direction ?

development based on oracle technology and tool, If we wish adopt JavaServerFace technology, we should direct using Sun Java standard library or oracle UIX technology,
give us some suggestion, how to start JavaServerFace application development ? is start from UIX ? and what is learning step ?

Similar Messages

  • Difference between upgrdae and migration about oracle database

    Difference between upgrdae and migration about oracle database
    please give the comments

    Well, the question is almost philosophic...<br>
    In 9i, there is a Migration Guide whereas in 10g there is a Upgrade Guide.<br>
    Furthermore, in 9i, there is the command line startup migrate whereas in 10g that's startup upgrade.
    Somebody think upgrade when go to new release, and migration when go to new version.<br>
    Others think upgrade when new version replace database in place, and migration when new version include a move of database.<br>
    Another point of view is : upgrade is for technical, and migration for application/data.<br>
    <br>
    Well, after these explanations, your upgrade/migratation notion will not be more clear, but I think that is not very important, only a terminology game. The most important is to know what you need : new version or new release.<br>
    <br>
    Nicolas.

  • Printing the Name and State of Servers

    Hi,
    Please can somebody help in executing the below mentioned code which will print the name and state of the servers.
    Below Java file taken from the following location : http://docs.oracle.com/cd/E23943_01/apirefs.1111/e13951/core/index.html
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.util.Hashtable;
    import javax.management.MBeanServerConnection;
    import javax.management.MalformedObjectNameException;
    import javax.management.ObjectName;
    import javax.management.remote.JMXConnector;
    import javax.management.remote.JMXConnectorFactory;
    import javax.management.remote.JMXServiceURL;
    import javax.naming.Context;
    public class PrintServerState {
    private static MBeanServerConnection connection;
    private static JMXConnector connector;
    private static final ObjectName service;
    // Initializing the object name for DomainRuntimeServiceMBean
    // so it can be used throughout the class.
    static {
    try {
    service = new ObjectName(
    "com.bea:Name=DomainRuntimeService,Type=weblogic.management.
    mbeanservers.domainruntime.DomainRuntimeServiceMBean");
    }catch (MalformedObjectNameException e) {
    throw new AssertionError(e.getMessage());
    * Initialize connection to the Domain Runtime MBean Server
    public static void initConnection(String hostname, String portString,
    String username, String password) throws IOException,
    MalformedURLException {
    String protocol = "t3";
    Integer portInteger = Integer.valueOf(portString);
    int port = portInteger.intValue();
    String jndiroot = "/jndi/";
    String mserver = "weblogic.management.mbeanservers.domainruntime";
    JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname,
    port, jndiroot + mserver);
    Hashtable h = new Hashtable();
    h.put(Context.SECURITY_PRINCIPAL, username);
    h.put(Context.SECURITY_CREDENTIALS, password);
    h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
    "weblogic.management.remote");
    connector = JMXConnectorFactory.connect(serviceURL, h);
    connection = connector.getMBeanServerConnection();
    * Print an array of ServerRuntimeMBeans.
    * This MBean is the root of the runtime MBean hierarchy, and
    * each server in the domain hosts its own instance.
    public static ObjectName[] getServerRuntimes() throws Exception {
    return (ObjectName[]) connection.getAttribute(service,
    "ServerRuntimes");
    * Iterate through ServerRuntimeMBeans and get the name and state
    public void printNameAndState() throws Exception {
    ObjectName[] serverRT = getServerRuntimes();
    System.out.println("got server runtimes");
    int length = (int) serverRT.length;
    for (int i = 0; i < length; i++) {
    String name = (String) connection.getAttribute(serverRT,
    "Name");
    String state = (String) connection.getAttribute(serverRT[i],
    "State");
    System.out.println("Server name: " + name + ". Server state: "
    + state);
    public static void main(String[] args) throws Exception {
    String hostname = args[0];
    String portString = args[1];
    String username = args[2];
    String password = args[3];
    PrintServerState s = new PrintServerState();
    initConnection(hostname, portString, username, password);
    s.printNameAndState();
    connector.close();
    When executing the above mentioned code getting the following error
    Exception in thread "main" java.net.MalformedURLException: Bad IPv6 address: t3:
    //localhost
    at javax.management.remote.JMXServiceURL.validateHost(Unknown Source)
    at javax.management.remote.JMXServiceURL.validateHost(Unknown Source)
    at javax.management.remote.JMXServiceURL.validate(Unknown Source)
    at javax.management.remote.JMXServiceURL.<init>(Unknown Source)
    at PrintServerState.initConnection(PrintServerState.java:39)
    at PrintServerState.main(PrintServerState.java:84)
    Caused by: java.net.UnknownHostException: t3://localhost
    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(Unknown Source)
    at java.net.InetAddress.getAddressesFromNameService(Unknown Source)
    at java.net.InetAddress.getAllByName0(Unknown Source)
    at java.net.InetAddress.getAllByName(Unknown Source)
    at java.net.InetAddress.getAllByName(Unknown Source)
    at java.net.InetAddress.getByName(Unknown Source)
    ... 6 more

    Hi,
    Copy the below code and save it as PrintServerState.java,
    I also have copied the code from
    http://docs.oracle.com/cd/E21764_01/web.1111/e13728/accesswls.htm#i1116377
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.util.Hashtable;
    import javax.management.MBeanServerConnection;
    import javax.management.MalformedObjectNameException;
    import javax.management.ObjectName;
    import javax.management.remote.JMXConnector;
    import javax.management.remote.JMXConnectorFactory;
    import javax.management.remote.JMXServiceURL;
    import javax.naming.Context;
    import java.lang.*;
    public class PrintServerState {
    private static MBeanServerConnection connection;
    private static JMXConnector connector;
    private static final ObjectName service;
    // Initializing the object name for DomainRuntimeServiceMBean
    // so it can be used throughout the class.
    static {
    try {
    service = new ObjectName(
    "com.bea:Name=DomainRuntimeService,Type=weblogic.management.
    mbeanservers.domainruntime.DomainRuntimeServiceMBean");
    }catch (MalformedObjectNameException e) {
    throw new AssertionError(e.getMessage());
    * Initialize connection to the Domain Runtime MBean Server
    public static void initConnection(String hostname, String portString,
    String username, String password) throws IOException,
    MalformedURLException {
    String protocol = "t3";
    Integer portInteger = Integer.valueOf(portString);
    int port = portInteger.intValue();
    String jndiroot = "/jndi/";
    String mserver = "weblogic.management.mbeanservers.domainruntime";
    JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname,
    port, jndiroot + mserver);
    Hashtable h = new Hashtable();
    h.put(Context.SECURITY_PRINCIPAL, username);
    h.put(Context.SECURITY_CREDENTIALS, password);
    h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
    "weblogic.management.remote");
    connector = JMXConnectorFactory.connect(serviceURL, h);
    connection = connector.getMBeanServerConnection();
    * Print an array of ServerRuntimeMBeans.
    * This MBean is the root of the runtime MBean hierarchy, and
    * each server in the domain hosts its own instance.
    public static ObjectName[] getServerRuntimes() throws Exception {
    return (ObjectName[]) connection.getAttribute(service,
    "ServerRuntimes");
    * Iterate through ServerRuntimeMBeans and get the name and state
    public void printNameAndState() throws Exception {
    ObjectName[] serverRT = getServerRuntimes();
    System.out.println("got server runtimes");
    int length = (int) serverRT.length;
    for (int i = 0; i < length; i++) {
    String name = (String) connection.getAttribute(serverRT,
    "Name");
    String state = (String) connection.getAttribute(serverRT[i],
    "State");
    System.out.println("Server name: " + name + ". Server state: "
    + state);
    public static void main(String[] args) throws Exception {
    String hostname = args[0];
    String portString = args[1];
    String username = args[2];
    String password = args[3];
    PrintServerState s = new PrintServerState();
    initConnection(hostname, portString, username, password);
    s.printNameAndState();
    connector.close();
    Now compile it as javac -d . PrintServerState.java
    Then Execute WL_HOME/weblogic92/server/bin/setWLSEnv.sh
    Now Execute ur class file generated as
    java -classpath .:WL_HOME/weblogic92/server/lib/wljmxclient.jar PrintServerState ipaddress port username password
    The output will be as follows
    Server name: Server3.   Server state: RUNNING
    Server name: Server2.   Server state: RUNNING
    Server name: Server1.   Server state: RUNNING
    Server name: Server4.   Server state: RUNNING
    Regards
    Fabian

  • How to get the name of the city and state of the current location of the user

    Hi all
             i need to get the name of the city and state (full address) of the current location of the user.
    need help.

    The best way to do this is to put the monitor name as a property bag in the script and pass that to your event details. Otherwise, we're looking at querying the database each time the monitor generates an event, and this is overhead that is really not
    necessary. The other option, which is just even worse in terms of performance, is to use powershell to query the SDK for the monitor name. Both of these options are not going to be a good solution, because now you need to implement action accounts that can
    either query the database or the sdk.
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • How can I add the status and profile picture features on an account that was created before iOS 5?

    How can I add the status and profile picture features on an account that was created before iOS 5?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • I just got my mac and well, i made a mistake. i accidentally put my downloads in the trash and forgot about it, i neglected to look at what was in the trash when i pressed the 'empty trash' button. please help me get it back!!!!

    I just got my imc, and well....i made a mistake. i accidentally put my downloads in the trash and forgot about it. when i emptied the trash later i neglected to look what was in the trash before i deleted it adn i cant get it back. please help me!

    Go back to the site(s) from where you got the downloads from & redownload them. 

  • How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    On an envelope, there's not supposed to be. The US Postal Serveice prefers no punctuation, which can interfere with machine sorters. USPS Address Format

  • The new MERGE statement in Oracle 9i

    Has anyone used the new Merge statement to process large amounts of data? Currently we use PL/SQL to update/insert into our tables when we are loading large amounts of data (close to one million rows) because we can set commit points and avoid rollback problems. I am wondering if we use Merge instead how this will affect rollback? Are we still going to have to code for this problem?
    Thanks in advance!

    Thanks for the suggestions. Our problem is that the base table contains 50 million rows and seven indexes, and each month we try to insert/update one million rows. Some of the data in the base table is historical so if we implemented your solution we would lose any records not being updated.
    What I am really trying to determine is if the MERGE statement has any redo log ramifications. Will we run in rollback space problems if we implement it instead of running PL/SQL in the following format:
    FOR cur_rec in c1 LOOP
    UPDATE table a
    SET col a = cur_rec.col a, ...
    WHERE ...
    IF SQL%NOTFOUND THEN
    INSERT (col a , col b, col c...)
    VALUES (cur_rec.col a, cur_rec.col b...);
    END IF;
    We commit every 10,000 records (as determined by SQL%ROWCOUNT). This can be time comsuming and Oracle claims that the new MERGE command will avoid costly overhead and reduce data scans. However, I am concerned that we may hit rollback problems if we implement a straight SQL statement such as MERGE. Any thoughts?

  • HT1349 hi, i am trying to enable my sons disabled ipod touch after he changed the passcode and forgot about it. I can get it into dfu mode but when im trying to restore it using itunes it keeps tripping out with an error message saying could not be restor

    hi
    my son has disabled his ipod touch and has forgotton the pass code, i have followed all the websites and got it into dfu mode but when itunes is restoring it back to its factory settings it is telling me that there are about 35 hours to go and then an error message comes up saying a problem with uploading and that my network isnt working (which is wrong) and to try again......donr this about 10 times now and everytime get the same error message......any help would be much appreciated
    cheers
    Paul

    Ask him if he has 'jailbroken' the ipod touch. Some jailbreaking firmware resets it to Ipad firmware and so it is very difficult to restore as itunes simply doesnt recognise it for what it is. It's Apple's solution to try and stop mass jailbreaking.

  • What is the user and password to Oracle 8.17

    Dear expert,
    I have loaded IDES 4.7 with Oracle 8.17.
    I wish to query the SAP table using Oracle PL/SQL.
    What is the user, password and string to login into SAP Oracle database? Since I was not asked for user and password when installing Oracle I do not know how to login.
    Also can you let me know how to view/change table fields in SAP tables. I understand there are different ways but which in your opinion is the easiest to find the record I want to correct(as some tables have many fields).
    Your kind assistance is appreciated.

    Thank you for your reply. Both the user and password does not work on my IDES 4.7e system.
    However I tried with user Internal and without password and I successfully login.
    I then create a new user and also change the user=system
    password.

  • Uploaded softwear on phone last night, now my computer cannot restore the phone and update. about 5min into it, i get the message that iphone has not been restored even though that is the button i clicked on.

    I upgraded my iphone last night on the phone, today I cannot get the computer and the phone to work together. When I click restore iPhone, and my only choice is to restore and upgrade, when it starts the upgrade, it says the phone has not been restored.  I did just upgrade the itunes on the computer also.

    This may not solve your problem but may clear up a couple of things.
    1: Re the connected to wi-fi, plugged in and locked thing is for automatic backups. It doesn't need to be plugged in or locked for it to work when you go to Settings > iCloud > Backup and tap Back Up Now. Mine completes the backup quickly without being plugged in or locking (but I don't have a lot to backup).
    2: Locked just means the lock screen is on (press the sleep/wake button on top) -- it will work without a passcode (& again, the lock screen on is only required for the automatic backup).
    3: You can see what is using your storage and maybe reduce some of it so that you don't have to pay for storage. Instructions in Manage your iCloud storage - Apple Support

  • TS3367 I cannot locate toggle automatically on in the settings and I cannot get to use face time

    I cannot get to use FaceTime
    Have tried settings but the toggle automatically on does not appear in settings what am I doing wrong

    What are you talking about ...toggle automatically? That setting is in the date and time. Settings>General>Date and Time>Set Automatically>On.

  • What Are The Pro And Cons About The Air

    Can you please answer me because i want to get the best for my money
    The Laptop in question is the 13'' thanks!
    PLEASE ANSWER xx

    Look there is No Best. Simple fact is, throughout your life, you will spend your money on things and they will either work or not. And you can be assured that at some point whatever you buy and whatever amount of money you spend on it, a lot or a little, eventually it will fail. Just like all people die, they fail eventually.
    So stop worrying about it, go down to a store, Look over what they offer, take notes, go home and search the internet for problems, then go back and buy what seems to fit you the best.
    Or be like me. I see something I like, I look at the price, if I can afford it I Buy IT.

  • Itunes asked to download the lastest update for my iphone i did now im in restore and have been in it for 4 hours its 3:46 am in the morning and im about to put this **** phone in a blender

    im about to crash and die please help me i dont knnow what happened it takes forever to verify and back up start sync the finish it normally i can even get through it without it saying the required files are missing or an unknown error acoured or what ever im so ****** this is my phone the one time i choose to update it it ***** itself

    Put it into DFU mode - hold the sleep/wake button and home button until the screen goes black (ignoring the slide to turn off slider). When the screen goes black release the sleep/wake button but hold the home button. Continue holding the home button for 10 seconds, then release it. The screen should stay black. Plug it into iTunes and it should come up with this message "iTunes has detected an iPhone in recovery mode. It must be restored before use", that's when it is successfully in DFU mode. Now press the restore button in iTunes and it should run smoothly :)

  • How can I get the username and password from Oracle Forms to PJC !

    Dear Sir,
    I have username,password and push button fields in oracle forms. When user clicks the push button, I need to get username and password field contents to my Pluggable Java Program to authenticate the user trying to login. How can I get those text field contents to my java program..? Looking forward from you soon sir.
    Thanks in Advance,
    S Ramkumar

    I tried that trigger but nothing reflects. I write that method in WHEN_BUTTON_PRESSED trigger.
    In the form module I written,
    Set_Custom_Property('BL.USERNAME',1,'NAME','');
    Set_Custom_Property('BL.PASSWORD',1,'PASS','');
    Implementation class of the push button I gave my java class file name.
    In Java Code I tried register the form fields like,
    public static final ID userName = ID.registerProperty("NAME");
    public static final ID passWord = ID.registerProperty("PASS");
    In Java Code I tried get the contents from registered properties,
    public boolean setProperty(ID property, Object value) {
    if(property == userName) {
    System.out.println("Just I wish to see the name entered" + value.toString());
    if(property == passWord) {
    System.out.println("Just I wish to see the pass entered" + value.toString());
    But even System.out.println() is working.
    What's wrong with this code sir ???
    Can you tell me How to register and get those field values in Java ?

Maybe you are looking for

  • Flash Buttons Not Working in DREAMWEAVER !!!!!!!!!!! :(

    Ive made an animation in flash of curtians opening to a stage of dancers, who are all buttons. When i put this animation into dreamweaver and test the web page the buttons do NOT work PLEASE HELP ME !! lmack

  • The Video Converter for the new

    I don't know if all creative players use the same video converter but for the new ZEN I have a problem with cropping the widescreen videos. I tick the box and everything but the converter doesn't crop the video, it stays exactly the same and I have t

  • How to calculate some value that referring to another table

    Hi... Need help asap The questions are : Q1 : In Microsoft Excell, we can take value from one cell and use it to another cell. How about in BO, if we want to take value (ex. 93.75) from the other table and use or refer the value that we want to to an

  • Error when trying to process a dimension

    When I try to add some members in the dimension, it says Student_account(name of dimension)'s member OEM has a invalid hierarchy parent "confg". Please advise. thanks.

  • Meaning of cost element

    please explain about cost element. In OBYC we use this concept. since i am not a FI consultant neither  I have FI background. I have gone through the defination but could not understand the concept. Please donot provide that definations as it won't s