Book about apex

Hello Is there a good book about APEX (sampe code, explanation). This for advanced user and use
Many thank already for a Typ
Best regards Ulrich

Hello,
You can search amazon.com for HTMLDB – the former name of ApEx. AFAIK, all the books were written under that title.
If you are looking for some advance stuff, the best would be to download Carl's application - http://htmldb.oracle.com/pls/otn/f?p=11933:104 – and follows his examples. Almost each example contains a link to a forum thread, making things a bit clearer.
Another good resource can be Vikas' examples on http://htmldb.oracle.com/pls/otn/f?p=24317:500 .
Regards,
Arie.

Similar Messages

  • Books about MVVM, architecture, design patterns for Windows Phone 8.1

    Hi,
    I'm looking for a book or books (or other resources) that explain how to develop an app with a proper architecture. I mean what each layer (bussines layer, data layer, network access) should do and how should it look like. I'm also looking for a book about
    MVVM.
    Right now I'm struggling with how to create a layer for network communication - how to separate classes for requests and responses, how to manage requests and create some queue of requests and also to provide some way to cancel them when they are no longer
    needed, how to work with servers that use some level of security (cookies, certificates etc.).
    Another thing is caching - how to design a short-term cache or a persistant cache (database), what technologies I can use etc.
    Last thing that I'm struggling with is also naming. How to name classes in those layers, e.g. to distinguish between classes mapping data from some ORM database, for mapping on JSON in network communication. etc.
    I hope you got the idea :)
    Thanks.

    Currently, I don't find a book about MVVM pattern for Windows Phone 8.1, but I think MSDN and some blogs have some useful samples and conceptions: http://msdn.microsoft.com/en-us/library/windows/apps/jj883732.aspx
    http://channel9.msdn.com/Series/Windows-Phone-8-1-Development-for-Absolute-Beginners
    And I think your question includes too much scopes, maybe you need to split it into some blocks and get help in the related forum
    Best Regards,
    Please remember to mark the replies as answers if they help

  • Few questions about apex + epg and cookie blocked by IE6

    Hi,
    I would like to ask a few questions about apex and epg.
    I have already installed and configured apex 3.2 on oracle 10g (on my localhost - computer name 'chen_rong', ip address -192.168.88.175 ), and enable anonymous access xdb http server.
    now,
    1. I can access 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' without input username / password for realm 'XDB' in IE6;
    2. I can access 'http://localhost/apex/apex_admin' , 'http://192.168.88.175/apex/apex_admin' , and I can be redirected into apex administation page after input admin/<my apex admin password> for realm 'APEX' in IE6;
    3. I can access 'http://chen_rong/apex/apex_admin' in IE6, but after input admin/password , I can not be redirected into administation page, because the cookie was blocked by IE6.
    then, the first question is :
    Q1: What is the difference among 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' ? I have already include site 'chen_rong' into my trusted stes! why the cookie was blocked by IE6. I have already tried firefox and google browser, both of them were ok for 'chen_rong', no cookie blocked from site 'chen_rong'!
    and,
    1. I have tried to use the script in attachment to test http authentication and also want to catch the cookie by utl_http .
    2. please review the script for me.
    3. I did:
    SQL> exec show_url('http://localhost/apex/apex_admin/','ADMIN','Passw0rd');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm XDB for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    MS-Author-Via: DAV
    DAV: 1,2,<http://www.oracle.com/xdb/webdav/props>
    Server: Oracle XML DB/Oracle Database
    WWW-Authenticate: Basic realm="XDB"
    Date: Tue, 04 Aug 2009 02:25:15 GMT
    Content-Type: text/html; charset=GBK
    Content-Length: 147
    ======================================
    PL/SQL procedure successfully completed
    4. I also did :
    SQL> exec show_url('http://localhost/apex/apex_admin/','ANONYMOUS','ANONYMOUS');
    HTTP response status code: 500
    HTTP response reason phrase: Internal Server Error
    Check if the Web site is up.
    PL/SQL procedure successfully completed
    SQL> exec show_url('http://localhost/apex/apex_admin/','SYSTEM','apexsite');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm APEX for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    Content-Type: text/html
    Content-Length: 147
    WWW-Authenticate: Basic realm="APEX"
    ======================================
    PL/SQL procedure successfully completed
    my second questions is :
    Q2: After I entered into realm 'XDB', I still need went into realm'APEX'. how could I change the script show_url to accomplish these two tasks and successfully get the cookie from site.
    the show_url script is as following:
    CREATE OR REPLACE PROCEDURE show_url
    (url IN VARCHAR2,
    username IN VARCHAR2 DEFAULT NULL,
    password IN VARCHAR2 DEFAULT NULL)
    AS
    req UTL_HTTP.REQ;
    resp UTL_HTTP.RESP;
    name VARCHAR2(256);
    value VARCHAR2(1024);
    data VARCHAR2(255);
    my_scheme VARCHAR2(256);
    my_realm VARCHAR2(256);
    my_proxy BOOLEAN;
    cookies UTL_HTTP.COOKIE_TABLE;
    secure VARCHAR2(1);
    BEGIN
    -- When going through a firewall, pass requests through this host.
    -- Specify sites inside the firewall that don't need the proxy host.
    -- UTL_HTTP.SET_PROXY('proxy.example.com', 'corp.example.com');
    -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
    -- rather than just returning the text of the error page.
    UTL_HTTP.SET_RESPONSE_ERROR_CHECK(FALSE);
    -- Begin retrieving this Web page.
    req := UTL_HTTP.BEGIN_REQUEST(url);
    -- Identify yourself.
    -- Some sites serve special pages for particular browsers.
    UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
    -- Specify user ID and password for pages that require them.
    IF (username IS NOT NULL) THEN
    UTL_HTTP.SET_AUTHENTICATION(req, username, password, 'Basic', false);
    END IF;
    -- Start receiving the HTML text.
    resp := UTL_HTTP.GET_RESPONSE(req);
    -- Show status codes and reason phrase of response.
    DBMS_OUTPUT.PUT_LINE('HTTP response status code: ' || resp.status_code);
    DBMS_OUTPUT.PUT_LINE
    ('HTTP response reason phrase: ' || resp.reason_phrase);
    -- Look for client-side error and report it.
    IF (resp.status_code >= 400) AND (resp.status_code <= 499) THEN
    -- Detect whether page is password protected
    -- and you didn't supply the right authorization.
    IF (resp.status_code = UTL_HTTP.HTTP_UNAUTHORIZED) THEN
    UTL_HTTP.GET_AUTHENTICATION(resp, my_scheme, my_realm, my_proxy);
    IF (my_proxy) THEN
    DBMS_OUTPUT.PUT_LINE('Web proxy server is protected.');
    DBMS_OUTPUT.PUT('Please supply the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the proxy server.');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Please supplied the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the Web page.');
    DBMS_OUTPUT.PUT_LINE('Web page ' || url || ' is protected.');
    END IF;
    ELSE
    DBMS_OUTPUT.PUT_LINE('Check the URL.');
    END IF;
    -- UTL_HTTP.END_RESPONSE(resp);
    -- RETURN;
    -- Look for server-side error and report it.
    ELSIF (resp.status_code >= 500) AND (resp.status_code <= 599) THEN
    DBMS_OUTPUT.PUT_LINE('Check if the Web site is up.');
    UTL_HTTP.END_RESPONSE(resp);
    RETURN;
    END IF;
    -- HTTP header lines contain information about cookies, character sets,
    -- and other data that client and server can use to customize each
    -- session.
    FOR i IN 1..UTL_HTTP.GET_HEADER_COUNT(resp) LOOP
    UTL_HTTP.GET_HEADER(resp, i, name, value);
    DBMS_OUTPUT.PUT_LINE(name || ': ' || value);
    END LOOP;
    -- Read lines until none are left and an exception is raised.
    --LOOP
    -- UTL_HTTP.READ_LINE(resp, value);
    -- DBMS_OUTPUT.PUT_LINE(value);
    --END LOOP;
    UTL_HTTP.GET_COOKIES(cookies);
    dbms_output.put_line('======================================');
    FOR i in 1..cookies.count LOOP
    IF (cookies(i).secure) THEN
    secure := 'Y';
    ELSE
    secure := 'N';
    END IF;
    -- INSERT INTO my_cookies
    -- VALUES (my_session_id, cookies(i).name, cookies(i).value,
    -- cookies(i).domain,
    -- cookies(i).expire, cookies(i).path, secure, cookies(i).version);
    dbms_output.put_line('site:'||url);
    dbms_output.put_line('cookies:');
    dbms_output.put_line('name:'||cookies(i).name);
    dbms_output.put_line('value:'||cookies(i).value);
    dbms_output.put_line('domain:'||cookies(i).domain);
    dbms_output.put_line('expire:'||cookies(i).expire);
    dbms_output.put_line('path:'||cookies(i).path);
    dbms_output.put_line('secure:'||secure);
    dbms_output.put_line('version:'||cookies(i).version);
    END LOOP;
    UTL_HTTP.END_RESPONSE(resp);
    EXCEPTION
    WHEN UTL_HTTP.END_OF_BODY THEN
    UTL_HTTP.END_RESPONSE(resp);
    END;
    /

    I use oracle database enterprise edtion 10.2.0.3. I have already figured out the epg on 10.2.0.3 to support apex 3.2.
    And as I described above, the apex site works fine for ip address , and localhost. but the cookie will be blocked by IE6, if I want to access the site by 'http://computername:port/apex/apex_admin'. This problem does not occured in firefox and google browser. Could someone give me answer?

  • Searching for a good book about [Arch Linux]

    Hello friends,
    I'm here stuck with Windows 8, making a couple of tests about installing Arch Linux in VMware Workstation, if it succeeds, I'll move to Arch completely. My question is: Is there a good book about Arch (installation, maintenance, best practices, security, and so on)? I tried "Arch Linux Environment set-up How-To", but unfortunately, it wasn't what I expected.
    I'm a little confused about UEFI + GRUB2 + GPT/MBR but I think I'll dominate it soon...
    My system:
    [PROCESSOR] >> Intel® Core™ i7-3840QM (8M Cache, up to 3.80 GHz)
    [GRAPHICS] >> Dual Nvidia GeForce GTX 680M GPU With 4GB GDDR5 Video Memory (SLi)
    [RAM] >> 16GB DDR3 SDRAM 1600MHz
    [SSD] >> OCZ Vertex 4 (256GB)
    [HDD] >> Seagate Momentus XT Hybrid (750GB)
    I wonder in how many seconds the system will boot up...

    @op  As others have mentioned, do not seek out knowledge from a book.  There has been quite a few shifts in Archlinux, specifically to uefi and systemd.  There are a few starters for your concern.
    https://wiki.archlinux.org/index.php/Un … _Interface
    https://wiki.archlinux.org/index.php/UEFI_Bootloaders
    https://wiki.archlinux.org/index.php/Beginners'_Guide/Installation
    Other then that, there is the forums and a quick search will land you on a goldmine of knowledge.  Great idea to start it up in a vmware, although it will not require the uefi boot, but it will still get you a bit more familiar with the install process and iron out some basic questions.  Good luck!

  • Want to learn about Apex..!!

    Hello Everybody,
    I want to know much about apex. Can somebody please guide me.
    Here's why i want to learn apex.
    I want to design one application which opens in web browser, i want to implement it on my local PC, i am using Vmware (Red Hat Linux enterprise 4 OS) as my server, Database is Oracle 10gR2 on server, i have one database created on it.
    For practice i have one package that has HTML code in it and i want to run that package on web browser, I ran that package before in my company using Apache with mod_plsql cartridge by setting up Dad configuration..
    I want to try it on my local PC. My question is do we have to install Apache with mod_plsql or just installing APEX will work in this case...???
    Any help will be greatly appreciated..
    Thanks
    Regards
    -Harsh.

    Hi,
    if you don't want to go for 11g - try 10g Rel.2 -
    my recommendation:
    1. Install the Oracle DB
    2. Download the "Companion CD", which has APEX and an OHS Oracle Http Server = Apache WITH the MOD-PLSQL integrated in it.
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html
    looks as follows:
    Oracle Database 10g Companion CD Release 2 (10.2.0.1.0)
    - 10201_companion_win32.zip (653,693,751 bytes) (cksum - 3264572193)
    - Download latest Oracle Application Express (formerly HTML DB)
    When you start the Installer of the Compnaion CD you get the option of installing TOGETHER : APEX and OHS/Apache
    Do that ! - and its an hassle free install both installed ready to go (watch the url which is given in the status window at the end of the install and make a note).
    The APEX/Apache install takes areound 18 min. - be patient !
    TIPP: make a note of the user/pwd you used, because you need this exactly when upgrading.
    Later you can easily upgrade to the latest APEX version (Downlaod as above mentioned).
    Hope that assisted !
    Bernhard

  • Books about Business Rules and Decision Management?

    Hi,
    I read the book Decision Management Systems by James Taylor that was very inspirational for me. Can anyone recommend other books about that topic?
    Best Regards,
    Tobias

    From Oracle documentation:
    [http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_8004.htm]
    WITH CHECK OPTION Specify WITH CHECK OPTION to indicate that Oracle Database prohibits any changes to the table or view that would produce rows that are not included in the subquery. When used in the subquery of a DML statement, you can specify this clause in a subquery in the FROM clause but not in subquery in the WHERE clause.
    [...]

  • Looking for a good book about threads

    Hello all,
    I am looking for a good book about threads.
    I would like something which is both practical, but also provides some theoretical basis.
    I am an experienced programmer, with some, but not much, experience with concurrent design.
    I would greatly appreciate any suggestions.

    I found the "Java Threads" book by Oaks and Wong to be fantastic:
    http://www.oreilly.com/catalog/jthreads2/
    - K
    Hello all,
    I am looking for a good book about threads.
    I would like something which is both practical, but
    also provides some theoretical basis.
    I am an experienced programmer, with some, but not
    much, experience with concurrent design.
    I would greatly appreciate any suggestions.

  • Good Book about JUnit

    Hello folks,
    I'm looking for a good book about JUnit. Does anyone know a good one?
    Regards
    Der Hinterwaeldler

    "JUnit in Action" by Manning.

  • Can Anyone Recommend Books About Mac and Tiger?

    Hello,
    I'm heading back to the homeland for a short visit in a week's time. I'd like to buy a book that can explain a few things about Tiger so I don't always have to visit the Apple Store and bother the Geniuses there.
    Can anyone recommend any good books about Mac and Tiger? I know of "Mac For Dummies" but I've never been a big fan of that series. Cheers and thanks.

    Hi, jasperboy.
    My "Learning About Mac OS X" FAQ has a number of resources that you will find helpful including books, online training, and more.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Hi, I´m new at the community. My book about the life of a bull who died in a bull fight was a best seller in Perú, and is been studied in many schools there. But I don't live there any more. People ask me about the book and is not any more at the lib

    Hi, I´m new at the community. My book about the life of a bull who died in a bull fight was a best seller in Perú, and is been studied in many schools there. But I don't live there any more. People ask me about the book and is not any more at the libraries. I would like to make a tradition to english, portugues, and may be another language that could be interesting to do.
    I am a psychologist with an specialization in couple and family therapy. I am writing more and more material and the people who reads me are asking me more.
    My mother thong is Spanish, my second Portuguese , and my third is english. I apologize if I make some mistakes trying to express myself.
    The situation is that I need to upload my book to iBook and I don't know how to do it. If I can pass that step I will like to upload more material I am sure people will enjoy and learn as they did with my first one.
    I really appreciate any help.
    Oliveste

    oliveste wrote:
    I need to upload my book to iBook and I don't know how to do it.
    Read the FAQ and come back if you have questions after you have signed up
    http://www.apple.com/itunes/working-itunes/sell-content/books/book-faq.html

  • Books about SCM?

    Hello,
    are there any books about the Oracle SCM? I don't mean the SHORT docs which I can find on technet, or is there a guide to the SCM?
    But as you know, best would be a good old paper book.
    Thank you very much

    Henrik,
    Sorry, I know of no Oracle SCM books, though I do know that at least one is being worked upon at the moment.
    I will post a note when it becomes available.
    regards,
    David

  • Off Topic: Books about Regular Expression

    Hi
    Somebody can to indicate books about Regular Expression in Oracle ?
    Thanks

    Regex tag of Blog of Volder.
    http://volder-notes.blogspot.com/search/label/Regular%20Expressions
    This entry mentions my regex solution :-)
    http://volder-notes.blogspot.com/2007/10/removing-duplicate-elements-from-string.html
    By the way
    My regex homepage mentions regex problems of perl like regex (regex of EmEditor).
    http://www.geocities.jp/oraclesqlpuzzle/regex/
    example questions (written by Japanese language)
    http://www.geocities.jp/oraclesqlpuzzle/regex/regex-2-1.html
    http://www.geocities.jp/oraclesqlpuzzle/regex/regex-3-5.html
    http://www.geocities.jp/oraclesqlpuzzle/regex/regex-4-4.html

  • Available first book about SpeedGrade, writing for Alexis Van Hurkman

    Hi.
    Already available the first book about SpeedGrade on Amazon: http://t.co/f0ckZAJs
    At the moment only in Kindle version. I hope soon in paper.

    About time! Thanks for sharing. Will be helpfull for my trainings.

  • Good Book About Sun One Studio

    Is there any good book about Sun One Studio4 ? Does anyone using it and liking it ?
    Thanks
    Marco

    on the program itself I have never used it before I talked to one person who has and he likes it. DrJava is not too bad it has a REPL which comes in hand once and a while, emacs is really good too well the best really there is so many docs on it too.

  • Looking for book about building secured webpages

    Hi, I'm looking for a good book about building secured webpages, the use of SSL etc.
    Can't find much about this subject. Anyone?!
    Greetings BG

    It depends on what you wish to do and which language you wish to use (php, asp, .net, jave, etc), also which server you will be using.
    If you are new to the subject a good starting point would be a book on your preferred langages security, (e.g. PHP security, .net security), a simple search at any of the on-line book stores will deliver a long list (the newer ones are normally better as they cover the newer versions of the language).
    As for building an e-commerce system (or similar), the above books and a good book in programming generally is also helpful, (ensure it covers processing on-line payments).
    If you wish to build a 'ssl vpn', then I have found, "SSL VPN: Understanding, Evaluating and Planning Secure, Web-Based Remote Access" by  Joseph Steinberg a good start.
    HTH
    PZ

Maybe you are looking for

  • Switching music from one iTunes account to another?

    I have been using my parents iTunes account since I started listening to music. I now have my own computer and just got an iPhone and want to create my own iTunes account. How do I get all of the music I bought/ added to my parents library onto one o

  • Interchanging MacBook Air and MacBook Pro Retina power adaptor

    Hi, We have both a MacBook Air 2014 and a Retina MacBook Pro in our home. Is it safe to use the MBA charger with the MBP and vise versa? Thanks. Tareq

  • Exchange mailbox recovery from DPM

    Hi, I am trying to use DPM 2012 for exchange 2010 mailbox backup and restore operations. My requirement is to make DPM call VSS hardware provider for taking the snapshots/recovery points. But it some how never uses the hardware provider and always pr

  • Applying FDM security at group level

    Hi Folks Does anyone know if there is a way in 11.1.1.3 to apply FDM roles at a group level in FDM? I can apply the roles in Shared Services, but when I go into FDM User Maintenance it appears that the roles have to be applied at an individual user l

  • Archive & Install Using a Target Disk

    I need to perform an Archive & Install on an iBook G4 which seems easy enough except that the disc drive is broken. So, I am looking for step-by-step instructions to perform this function from a MacBook Pro using the iBook in target mode. How can I i