New UIX  Developer Help

I've got a quick question I can't seem to find the answer to anywhere else so here goes:
I've been tasked by my company to do some JSP development for a simple application (accessing a DB, printing reports, etc). They'd like it done in UIX because of the preformatted feel. Since I'm relatively new to this technology I've been using the wizards and hacking the pages as needed.
So far so good. But on one of the editing pages (i.e. where you add/modify records) I'd like to not use the default input renderer (<bc4juix:InputRender...>) that the wizard provides (which produces a textbox) and use a combo box instead. The problem is if i use <jbo:InputSelect...> the combo box is kicked out of the UIX layout and defaults to the upper lefthand corner of the screen. Also, if i use <uix:choice...> I can't figure out how to map the values to the column in the table i'm using.
I know this probably has a simple answer to it, but I'd appreciate help on either figuring out how to get jbo:InputSelect to fall into the UIX page layout or how to map the information in uix:choice to the database. Any other suggestions would be helpful
If this doesn't make sense, let me know. Also can anyone suggest some good resources (either on the 'net or bookwise) for JSP and/or UIX development?
Thanks in advance.

Not sure how to customize the <bc4juix:InputRender> JSP tag, but you can find more information about many UIX topics in the UIX Developers Guide in the JDeveloper Help system.
Also available online, at:
http://helponline.oracle.com/uix/help/
Kind Regards.

Similar Messages

  • I have 3dparty software wirelessly with a cryptographic authentication system without my consent (seems to be new technology developed by stanford) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail break. Now what?

    I have 3rd party software wirelessly injected and used on my iphone with a cryptographic authentication system without my consent (seems to be new technology developed by stanford and apple security is not updated for this technology) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail breaking my phone, adding and removing software, changing settings all from a remotely controled device from different location (I have a Mac address I'd of this device to know for sure). Almost undetectable. When I look at the legal section of my phone it shows a list of all the unauthorized 3rd party software "as is" copyright encrypted on the phone.  This is the most basic way to legally steal software of any kind.  Because of this legalality 3rd party ownership have total control of certain software correlated with hardware use including visualization technology, etc.  most people luckily will never have this happen to them so it's unlikely many readers have not a clue of what I'm saying currently.  Either way, without needing to obtain specific warranty of any kind "as is" copyright control makes system restores not a solution because the source code is not directly encrypted on the actual hardware device only a copy right notice must appear on the specific device 3rd party software validation making it extremely difficult for me to take control of the situation. Apple claims their iOS technology prevents this type copyright obstruction from being possible, however, according to my phone a new form of technology was used developed by Tom wu of Stanford university called the STANFORD SRP AUTHENTICATION TECHNOLOGY which uses Some form of cryptographic authentication system and uses quote "secure remote password" which seems to suceed in hacking iOS apple technology apple claims is not possible to jailbreak an unstolen phone or without the owners consent As well as loading the device with 3rd party copyright Notices to make all of this legalized. My phone shows atleast 30 pages worth of legalized 3rd party copyright permissions! Yesterday my apple care provider labeled me a jailbreaker and refused to look at my legal documented proof which completely blew my mind because it voides my apple care contract I spent 100 on. This employee did not take all factors into consideration and made quick assumptions as well as verbally speaking to me as I'm an automatic criminal. I left the store yesterday with no payed insurance help on a problem I had no control over and couldn't prevent, leaving with voided contracts. This is an apple users worst nightmare and I have spent days researching all of this like i am some kind of lawyer only to be able to use my phone the way it should and spent alot of money on.  I can legally backup any claim I have just wrote above currently and have a large source of data collected to prove apple is wrong in voiding insurance support on this issue. The problem lies in apple avoiding and not wanting to believe their software can legally be obtained ot "hacked". Yet still labeled a jailbreaker basically.. What should I do????? Been to local apple store 3 times and rebooted my phone as well sprint service restore 4 times and spoke with reps twiice on the phone. Spoke with my phone provider who said apple has full control over these matters so they can't help me.  My case is according to apple "still open"...Anyone else heard of this or of Stanford's office of technology licensing? Maybe I need to buy a blackberry again or just use a landline so I can stop being my own lawyer and focus on other productive areas in life instead of this horrible mess. I shouldn't have to prove to apple I not a jailbreaker they should have to prove I'm one before voiding support I desperately need!!

    Mullaly75 wrote:
    I assume u guys don't understand what open source software is
    Yes, I think most of us do understand what open source software is. It sounds as if you don't. Here's some information:
    Open-source software (OSS) is computer software that is available in source code form: the source code and certain other rights normally reserved forcopyright holders are provided under an open-source license that permits users to study, change, improve and at times also to distribute the software.
    Open source software is very often developed in a public, collaborative manner. Open-source software is the most prominent example of open-sourcedevelopment and often compared to (technically defined) user-generated content or (legally defined) open content movements.
    from http://en.wikipedia.org/wiki/Open_source_software
    Yes, Tom Wu of Stanford wrote a paper on something called Secure Remote Access Protocol. It's a form of Asymetric Key Exchange and has nothing to do with hacking anything. It's actually intended to protect data.

  • Convert C++ prog into Java( I m new in java)help urgent

    hi all,
    i am very new in java. i have code of C++.i have to convert it in to Java.please help me on urgent basis.plz provide me solution.
    I am looking for positive response.code is below:
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sys/stat.h>
    #include <fstream.h>
    #include <iostream.h>
    //#include <sha.h> //24112003
    //#include<wincrypt.h>
    char ntc(unsigned char n){
    if (n<26) return 'A'+n;
    if (n<52) return 'a'-26+n;
    if (n<62) return '0'-52+n;
    if (n==62) return '+';
    if (n==63)return '/';
    unsigned char ctn(char c){
    if (c=='/') return 63;
    if (c=='+') return 62;
    if ((c>='A')&&(c<='Z')) return c-'A';
    if ((c>='a')&&(c<='z')) return c-'a'+26;
    if ((c>='0')&&(c<='9')) return c-'0'+52;
    if (c=='~') return 80;
    return 100;
    int b64decode(char from,char to,int length){
    unsigned char c,d,e,f;
    char A,B,C;
    int i;
    int add;
    char *tot=to;
    for (i=0;i+3<length;){
    add=0;
    A=B=C=0;
    c=d=e=f=100;
    while ((c==100)&&(i<length)) c=ctn(from[i++]);
    while ((d==100)&&(i<length)) d=ctn(from[i++]);
    while ((e==100)&&(i<length)) e=ctn(from[i++]);
    while ((f==100)&&(i<length)) f=ctn(from[i++]);
    //if (f==100) return -1; /* Not valid end */
    if (c<64) {
    A+=c*4;
    if (d<64) {
    A+=d/16;
    B+=d*16;
    if (e<64) {
    B+=e/4;
    C+=e*64;
    if (f<64) {
    C+=f;
    to[2]=C;
    add+=1;
    to[1]=B;
    add+=1;
    to[0]=A;
    add+=1;
    to+=add;
    if (f==80) return to-tot; /* end because '=' encountered */
    return to-tot;
    int b64get_encode_buffer_size(int l,int q){
    int ret;
    ret = (l/3)*4;
    if (l%3!=0) ret +=4;
    if (q!=0){
    ret += (ret/(q*4));
    /* if (ret%(q/4)!=0) ret ++; */ /* Add space for trailing \n */
    return ret;
    int b64strip_encoded_buffer(char *buf,int length){
    int i;
    int ret=0;
    for (i=0;i<length;i++) if (ctn(buf)!=100) buf[ret++] = buf [i];
    return ret;
    int b64encode(char from,char to,int length,int quads){
    // 3 8bit numbers become four characters
    int i =0;
    char *tot=to;
    int qc=0; // Quadcount
    unsigned char c;
    unsigned char d;
    while(i<length){
    c=from[i];
    *to++=ntc(c/4);
    c=c*64;
    i++;
    if (i>=length) {
    *to++=ntc(c/4);
    *to++='~';
    *to++='~';
    break;
    d=from[i];
    *to++=ntc(c/4+d/16);
    d=d*16;
    i++;
    if (i>=length) {
    *to++=ntc(d/4);
    *to++='~';
    break;
    c=from[i];
    *to++=ntc(d/4+c/64);
    c=c*4;
    i++;
    *to++=ntc(c/4);
    qc++; /* qz will never be zero, quads = 0 means no linebreaks */
    if (qc==quads){
    *to++='\n';
    qc=0;
    /* if ((quads!=0)&&(qc!=0)) to++='\n'; / /* Insert last linebreak */
    return to-tot;
    char* mEncryptPassword(char* mPassword)
    char mEncryptedPassword[200]; // To hold encrypted password.
    //char* mEncryptedPassword = new char[200];
    char mPrimEncryptedPassword[200];
    char * temp = new char[200];
    //unsigned char* md; // 19122003
    //md = new unsigned char[100]; // 19122003
    memset(mEncryptedPassword, '\0', sizeof(mEncryptedPassword));
    memset(mPrimEncryptedPassword, '\0', sizeof(mPrimEncryptedPassword));
    strcpy(mPrimEncryptedPassword, mPassword);
    //strcpy(mPrimEncryptedPassword, (char*) SHA1((unsigned char*) mPassword, strlen(mPassword), NULL));
    //strcpy(mEncryptedPassword, (char*) SHA((unsigned char*) mPassword, strlen(mPassword), md)); // 19122003
    //strcpy(mEncryptedPassword, (char*) SHA((unsigned char*) mPassword, strlen(mPassword), md)); //19122003
    b64encode(mPrimEncryptedPassword, mEncryptedPassword, strlen(mPrimEncryptedPassword), 0);
    // If successfully encrypts..
    if (mEncryptedPassword != NULL)
    //char * temp = new char[strlen(mEncryptedPassword)+1];
    strcpy(temp,mEncryptedPassword);
    // strcpy(mRetVal,mEncryptedPassword);
    return (char*)temp;
    //return (mEncryptedPassword);
    //return (char*) md; // 19122003
    else
    return ("Error");
    char* mDecryptPassword(char* mPassword)
    char mDecryptedPassword[200]; // To hold decrypted password.
    char mPrimDecryptedPassword[200];
    char * temp = new char[200];
    // 02032007
    memset(mDecryptedPassword, '\0', sizeof(mDecryptedPassword));
    memset(mPrimDecryptedPassword, '\0', 200);
    strcpy(mPrimDecryptedPassword, mPassword);
    b64decode(mPrimDecryptedPassword, mDecryptedPassword, strlen(mPrimDecryptedPassword));
    // If successfully decrypts..
    if (mDecryptedPassword != NULL)
    //char * temp = new char[strlen(mEncryptedPassword)+1];
    strcpy(temp,mDecryptedPassword);
    // strcpy(mRetVal,mDecryptedPassword);
    return (char*)temp;
    //return (mEncryptedPassword);
    //return (char*) md; // 19122003
    else
    return ("Error");
    void main(int argc, char* argv[])
    cout << mEncryptPassword(argv[1])<<endl<<flush;
    cout << mDecryptPassword(mEncryptPassword(argv[1]))<<endl<<flush;
    Anubhav

    endasil wrote:
    I just thought of how ridiculous this would sound in any other profession:
    Surgeons:
    plz plz help I have patient dying need to insert new kidney into 90yr old patient plz someone come do itLawyers:
    Help client guilty need good defense (I m new in law)help urgentHow come we get stuck with the lazy low-lifes?Because there's no legal requirement that a software developer must be licensed

  • Settlement of New Product Development Projects

    Hi Experts,
    We are working on New Product Development project. Our client involves in development of a proto-type as per their client's requirement. Receipt of Sales order, Design, Production of Prototype Sample & customer approval are the stages invloved.
    But no revenue will be generated until the delivery & approval of Sample.
    How can we settle these kind of projects? Please advise.
    Thanks & Regards,
    Kabir

    Hi Hemant & Venu,
    Thanks for the replies. Points awarded.
    @Hemant...There is no billing element used in this project. I guess i cannot consider this as an Investment project fully as it does not have an Asset. Please correct me and advise.
    @Venu...Can i settle all objects to the cost center for this kind of project? Please help me with Settlement configuration Tips.
    Thanks & Regs,
    Kabir

  • New Lightroom community help system

    Adobe is pleased to announce the new Lightroom community help system, which provides core Adobe documentation for Lightroom as well as links to additional learning content from around the web. The URL for the Lightroom community help system is http://learn.adobe.com/wiki/display/LR/Home.
    The new site takes the current online helpLiveDocsand makes it more useful and interactive. You can still navigate to topics using links the left side of the browser. But now, when you click a topic to read about it, you'll find a Basics panel with Adobe documentation as well as a Learn More panel that offers links to tutorials, white papers, technical articles, and other instructional content.
    This site is administered by Adobe, moderated by community experts, and developed with the assistance of a panel of Lightroom Learning Advisors. So you'll also find links to the moderators and advisors favorite Lightroom sites, plus links to troubleshooting sites and a page that lists third-party presets, galleries, and extensions.
    We invite you to visit, comment on our documentation, add links to your favorite tutorials and articles, and share your opinions by commenting on the links that others have posted. And feel free to send feedback on the site to us at [email protected]
    -Anita Dennis | Lightroom community help editor | Adobe Systems Inc.

    Greetings
    L R 2.5   Library   To move, sorte pictures. In the Sorte Panel  "USER ORDER" is missing. I`m using a PC
    Question: How do I move pictures?
    Thank you kindly
    Henry

  • I keep being asked to update my Safari but when I do a Software update it scans but never gives me a list and just says no new updates. Help please!

    I keep being asked to update my Safari but when I do a Software update it scans but never gives me a list and just says no new updates. Help please!

    There are no updates to either OS 10.5.8 or Safari 5.0.6.
    If you need a later version of Safari you must first upgrade your operating system to a later version of OS X.

  • My dad and I have shared an iTunes account for years and I just created a new apple id but I have no Idea how to get all those purchases to this new account. Help please?

    My dad and I have shared an iTunes account for years and I just created a new apple id but I have no Idea how to get all those purchases to this new account. Help please?

    The old Apple ID (presumably your dads) owns those songs and your new Apple ID does not.  However, your dad can authorize your iD to use the songs by going to Store > Authorize This Computer from your iTunes menu and entering his Apple ID and password.

  • Does anyone have any new recommendations to help iTunes recognize that my 128 iPhone and 128 iPad aren't 16 GB models?

    I have suffered from this problem for years, but since upgrading to 128 iOS devices in September, the mysterious iTunes/iOS hidden data disease has gotten intolerable. Here's the deal:
    I use my iPhone and iPad mostly for media consumption. I don't have a ton of apps. I have lots of videos, music through iTunes Match, and a few pictures. I'm one of those dinosaurs who doesn't use the cloud but downloads it, stores it, and syncs it via USB frequently (which I would bet is the root of my problem). Although I have a large capacity devices, I sync almost daily. And each time I sync, my displayed free space and the space iTunes allows me to use differs more and more. Old fixes used to involve such things as restoring the devices, turning off automatic syncing, turning off photo syncing, turning off other syncing apps, etc. And these things were temporary fixes.
    Let me give you an example of what I mean by temporary. It has been exactly eight days since I last restored my iPad to brand spanking new, retaining nothing. In those eight days and approximately eight or nine manual USB syncs, each with an average of 60 GB transferred, I mysteriously have managed to lose 40 GB. This afternoon during my most recent sync, iTunes showed 86.3 GB free. However, as usual, it wouldn't sync anything close to that. By the time I had whittled my selections down to an acceptable amount, it still showed I had 47.2 GB free both in iTunes and in Settings on the iPad. Yet when tested it by trying to sync a 50 MB app, it said there was not enough available space. In days past, problems like this would take weeks or maybe even months to accumulate. And the culprit would usually be the "Other" category. When that happened, the remedies I described would help. This new beast is something else, though. Like I said, this took only eight days.
    I finally decided to post something, though, after I reset my iPhone to factory settings this evening. When I was syncing the initial apps and videos, it would not let me sync more than 30 GB of material. I don't know what to do, guys. I bought the maximum capacity devices because I like my HD content. Does anyone know what I'm doing wrong? If you say I just need to sync less, (1), Apple needs to get its act together, and (2) It might sound crazy, but I can probably only push it to 2 days, so I'd only be postponing my problems a few days.
    If anyone can help, I would appreciate it. Forgive me if this has been addressed elsewhere. I have spent time searching, but all I found was the answers I have already tried numerous times.

    Emily Sitton wrote:
    I got my baby iPhone the day it came out. Seriously, I love it. I'm not really mad about the price drop, a little frusterated, but I knew what I was getting myself into when I purchased mine so early. But, now that I know there are ringtones in the future, I just can't wait.
    So basically, does anyone know for sure when we will be able to get the ringtones? And what about iTunes on the iPhone, when will that pop up? I'm sure these questions have been posted already, but I just can't seem to find a sure answer.
    I'm worried that it is just my iPhone/computer that can't find the update to get all the cool new feautres, any help?
    thanks in advance!
    Sit tight, once it's out you WILL KNOW. The Apple Discussions will be bombed!
    William

  • About a month ago my wifi switch greyed out. I went through all the trouble shooting and ended up going to the Genius Bar and got a new iPhone 4S. Now the switch greyed out on the new one.. help!

    About a month ago my wifi switch greyed out. I went through all the trouble shooting and ended up going to the Genius Bar and got a new iPhone 4S. Now the switch greyed out on the new one.. help!
    I've had my new one for less than 3 weeks. What gives? I'm loosing faith in apple

    no body?

  • TS1368 I can't download anything from the app store or iTunes today on my ipad2. Doesn't matter whether it is a previously purchased app or a new one. Help???

    I havent had any problems with my iPad2 until today. I cannot download anything from the app store or iTunes. Doesn't matter if it's a previously purchased app or a new one. Help???
    I just get a message--- after a long wait where the app icon says "waiting" that I can't connect to iTunes.
    Wifi signal is strong. All bars.

    Try these articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    If this will not work, best to contact phone support.
    http://support.apple.com/kb/HE57

  • I am getting the message "The windows installer Service could not be accessed when trying to install Itunes on my new computer, any help would be appreciated.

    I am getting the message "The windows installer Service could not be accessed when trying to install Itunes on my new computer, any help would be appreciated.

    Hey there Frank0619,
    If you have not been able to install iTunes because the Windows Installer service is not available, I would recommend the troubleshooting in the following troubleshooting to help.
    Issues installing iTunes for Windows
    These in particular: 
    Make sure you have an administrator account.
    To install iTunes, you'll need to log in to your computer with an administrator password. If you're not sure if you have an administrator account, read Windows 7: How do I log on as an administrator? You could also refer to your computer's help system, contact your IT department, or visit support.microsoft.com for assistance.
    Install the latest Microsoft Windows updates.
    To download the latest updates, visit the Microsoft Windows Update website. iTunes for Windows requires Windows XP, Windows Vista, Windows 7, or Windows 8 with the latest Service Pack installed. If you can’t install the updates, refer to your computer's help system, contact your IT department, or visit support.microsoft.com for assistance.
    Download the latest version of iTunes.
    The latest version of iTunes can be downloaded at http://www.apple.com/itunes/download/.
    Disable conflicting software.
    Some Windows background processes can cause issues for other programs and processes. These conflicts can prevent applications, such as iTunes, from installing. Disable conflicting processes by starting your computer using MSConfig: 
    Using Msconfig to troubleshoot conflicts in Windows XP
    Using Msconfig to troubleshoot conflicts in Windows Vista, Windows 7, and Windows 8
    Some security software made by other companies can't be disabled using MSConfig. If you've installed security software and you're having issues installing iTunes or QuickTime for Windows, you might need to disable or uninstall security software to resolve installation issues.
    Restart your computer.
    Install iTunes.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Creation of New Custom Development Object in Solar02

    Hi,
    We are trying to create an object type of Form for a new custom development object in solar02 under tab Development,and for this I get an error that the object doesn’t exist in development environment. 
    Based on my analysis, it looks like Solution Manager only allows to link pre-existing development objects but not creating new objects.  Is that right?  If  not please advice how can we add new custom objects through solution manager.
    Thanks & Regards,
    Sandeep Alapati

    hi,
    solar01/02 is the tools for documenation, it is not for creating objects. 
    basically it should allow you to enter any developement objects names, irerespective of whether they are created in the back end system or not.
    please provide the screenshots.
    Thanks
    Jansi

  • Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. Thanks.

    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. I am getting lots of spelling errors as the MacBook laptop screen is too small. Thank you so much! .

    Contentmom6 wrote:
    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work.
    Normally, you just connect the monitor to the MacBook using a VGA adaptor that you can buy from an Apple Store.  Now try System Preferences > Displays > Detect Displays.  You should now be able to select a display mode for the monitor.  If it still doesn't work, then I'd check that everything is properly connected.  I've had problems with colours disappearing due to a faulty connection in the VGA adaptor.
    Bob

  • I currently use photoshop elements 10 on my laptop. My laptop has crashed and i need to install the exsisting software on my new laptop. please help?

    I currently use photoshop elements 10 on my laptop and my laptop crashed. I need to install the existing software on my new laptop. please help!

    Yes you can directly use the upgrade version.
    You can visit this page Photoshop Elements (PSE) knowledge base. for further assistance.
    Regards
    Kishan

  • I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    That's probably not a good idea to try to share apps since you will have to switch ID's each time you update apps and sync apps from iTunes.
    And technically - according to Apple's terms - you cannot share apps using different ID's. You can actually lock yourself out of an ID for 90 days if you switch ID's and if you associate the iPad with another ID.
    The bold type is a copy and paste from the site that I referenced below.
    When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID. This article describes how to manage these associations.
    http://support.apple.com/kb/ht4627

Maybe you are looking for

  • CachedRowSet problem in Weblogic 6.1 and Oracle thin driver 9.0.1

    Has anyone used the CachedRowSet class successfully? (this classes are new and from the JDBC extension pack) I am experiencing "Not in a transaction" errors when executing cachedrowset.populate(resultset), even though I'm inside a correct ut.begin an

  • I can't compile fuction (table or view doesb't exist)

    Hi I have strange problem. I wanted create simple function My steps: 1. Connect as HAM (HAM user has DBA role) 2. I successfully created table: CREATE TABLE ham_adm_user (id NUMBER(16,0) NOT NULL, uzytkownik VARCHAR2(50), aktywny_od DATE, aktywny_do

  • Lightroom keywords in Bridge?

    I hope that I'm overlooking some very simple thing, but none of my keywords that I have set for my pictures in Lightroom show up in Bridge (nor are they searchable). Also, if the keywords do not work together in both programs, what would the purpose

  • Keyboard sound keys not working (F10, F11 & F12)

    I just purchased a wired keyboard for my iMac and can't seem to get my volume control keys (F10, F11 and F12) working.  I've unticked the "Use all F1, F2 etc" box within system preferences > keyboard, and still doesn't seem to work.  Previously I was

  • Call SAP Transaction Variant from Iview

    Hello, I know we can pass parameters into a SAP transaction via the 'Application Parameters', but this does not always work especially for complicated selection screen options. Can the actual transaction variant ID be passed instead? Regards Mr.T