Not Yet Documented ADF Sample Applications download link not working

Steve Muench Not Yet Documented ADF Sample Applications located at http://blogs.oracle.com/smuenchadf/examples/
The download link for the samples does not work. It directs us to Oracle JDeveloper Products Page instead.
Clicking on the title of any sample application used to enable the download of the sample file. Now it points to http://www.oracle.com/technetwork/developer-tools/jdev/overview/index.html
Is there an alternative way to download the sample applications?
Thanks in advance for your help.
Mitesh

Unfortunately the link https://smuenchadf.samplecode.oracle.com/samples does not work. It gives message URL is not valid.
Your samples are a very important source of reference for us. Hopefully all the samples can be migrated to the new site soon.
I am using JDev 11.1.1.2. I am using editable checkboxes is a table with RowSelection = Single. When I click on a selectBooleanCheckbox on a different row other than the current table row, the checkbox value changes at first but immediately reverts back to the previous state. It works fine so long as I remain on current row of the table. If I turn RowSelection off then I don't face this issue.
For information, I wanted to take a look at your sample 145. Using a CheckBox in an Editable Table with Boolean/Button Binding.
Thank you for your help.
Mitesh.

Similar Messages

  • Cannot download Not Yet Documented ADF Sample Applications

    Hi:
    I am having problems to download the examples in this page:
    http://blogs.oracle.com/smuenchadf/examples/
    When clicking on a link to download a sample I get asked my user name and password and after that I get an internal server error:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    I've asked some colleagues to try the procedure to see if it is a problem with my account, but they get the same result, we are all Oracle employees.
    Regards,
    Cesar

    hi Cesar
    I must say that the RestoreCurrentRowAfterRollback.zip file I downloaded looks a little strange
    see http://www.consideringred.com/files/oracle/img/2011/RestoreCurrentRowAfterRollback-zip-20110118.png
    It is a ZIP file with one single file inside it "RestoreCurrentRowAfterRollback" (no extension) which seems to be a ZIP file (add ".zip" extension).
    success
    Jan

  • Not Yet Documented ADF Sample Applications #113.Apply Bind Varible Val @11g

    Hi ,
    I am trying to apply this to 11g but I am facing some weird issues. I am using an editable inline detail table and when I edit a row and refresh the page it adds a new row with the updated value to the table.
    Should I use a different way to Apply Bind Varible Values to Filter View Link Accessor RowSets in 11g ?
    113.Apply Bind Varible Values to Filter View Link Accessor RowSets
    Thanks

    Hi Frank,
    Would really apprecaite your feedback and Muhammad has same issue and he is
    trying work around for this issue using view accessor.
    I read your wonderful blog everytime, I am stuck in problem , I would appreciate ,if you can give me answer to my issue.
    Let us consider : Item , SubItem relationship.
    Component : Item VO , SubItemVO , Item can have many subitem.
    1.Created ItemVO
    2.Create SubItemVO
    3.Create View Link based on ItemVo-ItemId that is FK in SubItem table.
    4.Created JSF page and Dragged ItemVO from Datacontrol to JSF Pagen as ADF ReadOnly Table.
    5.Expanded Item table structure in Structure window and open the detailstamp.
    6.Dragged SubItemVO in detailstamp as ADF ReadOnly table.
    Expected Result :
    1. ItemVO First Row
    1.SubItems belonging to ITEMVO First Row
    2.SubItems belonging to ITEMVO First Row
    2.ItemVO Second Row.
    1.SubItems belonging to ITEMVO Second Row
    Current Result :
    1. ItemVO First Row
    1.SubItems belonging to ITEMVO First Row
    2.SubItems belonging to ITEMVO First Row
    2.ItemVO Second Row.
    1.SubItems belonging to ITEMVO First Row
    2.SubItems belonging to ITEMVO First Row
    Description: Second ItemVO when expanded shows first ItemVO SUBITEMS.
    Thanks,

  • Not Yet Documented Array Example as JSP doesn't work.

    Example:
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html
    Steve, in the Not yet documented examples, you have an Array of String Domain Example. We tried to modify this to create a simple struts flow that sets up the view with some parameters and then shows a datapage of the results.
    When run in batch mode, you get:
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-28302: Piggyback write error
    oracle.sql.CharacterSet1Byte
    JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-25063: Operation getCurrentRowSlot cannot be performed because the working set object is not bound.
    JBO-25063: Operation getCurrentRowSlot cannot be performed because the working set object is not bound.
    the 28302 and 25063 errors are undocumented.
    If you switch to Immediate mode, it works.
    Similarly, we tried to use a numeric Array in our current project to filter a view of records to a specific client list (client and his associations). The view renders OK the first time, but when you click a setCurrentRowWithKey hyperlink, the view ends up getting "refreshed" so that our JSTL expressions that point back to this "master page" bindings, i.e. ${data.MasterPageUIModel.ViewPfRptsDueView1} show incorrect data.
    Normally, if you drop a view object on the page, and have a setCurrentRowWithKey, then navigate to a detail set, it RETAINS the row selected when you return to this view. Without changing ANYTHING else, other than the where clause to read: client_id in (' || my_client_list ||')', it worked perfectly. It also worked perfectly if we switched our sync mode to: Immediate instead of batch.
    Can you/anyone elaborate why it works in one mode and not in another?

    Repost.
    Here's a section of the batch mode bc4j.log:
    [221] Array.getInternalArray(281) Warning:No element type set on this array. Assuming java.lang.Object.
    [222] RuntimeViewRowSetIteratorInfo.rangeRefreshed(1266) [RangeRefreshEvent: EmpArrayView1 start=0 count=3]
    [223] Diagnostic.printStackTrace(405) java.io.NotSerializableException: oracle.sql.CharacterSet1Byte
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1054)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1304)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
    =====> at oracle.jbo.domain.Array.writeObject(Array.java:748)
    ... [ much removed ] ...
    NOTE [221] and [223].
    It appears to work in batch mode, if you make a call to the array method: useElementType, i.e.
    arr = new Array(descriptor,conn,names);
    arr.useElementType( java.lang.String.class);
    However, this method appears to be written incorrectly. IF I just change the array.java useElementType method to read:
    public void useElementType( Class claz )
    if ( mElemType == null )
    mElemType = claz;
    instead of:
    public void useElementType(Class claz)
    if (mElemType != null)
    mElemType = claz;
    it works.
    I'm just trying to get some closure on this.

  • Not Yet Documented ADF Ex 9 Dynamically Binding to Dynamically Created View

    I have dynamically created a View Object and would like to build a dynamic HTML Table on a web page based upon my view. I think something similar is done in Steve Muench's sample #9. My problem is I am new to ADF and the example was done in an earlier version of JDev (I am using 10.1.3.0.4) and the JSP page in the example will not compile. I get an error at:
    <textarea style="width: 100%" name="sql" rows="3" ><c:out value="${param.sql}"/></textarea><br>
    Saying required param "cols" is missing. I also get a nesting error in this code:
    <tr>
    <c:forEach var="attributeLabel" items="${bindings.DynamicViewObject.labelSet}">
    <th>
    because (I think) the compiler expects a </tr> and it is seeing the <c:forEach var="attributeLabel"> tag.
    Is there a setting in JDeveloper I can use to allow this application to compile? Is there a similar example done in JSF as that is what my current application is being developed using.
    TIA,
    Jeff

    Any help on this? Kind of Urgent...
    Thanks,
    Jeff

  • Where can I access a version 5 download? Version 6 is not yet compatible with an application I use for school.

    Is there a version 5 download available on the website? Version 6 is not yet compatible with an application I use for school.

    I think this link will work:
    ''moderator deleted a hyperlink to an unsupported version''
    I suggest, that while Mozilla is on a "rush to release updates faster than fixing bugs" kick, NO ONE should have "automatic updates" on. Go into "tools" and turn off that option, and NEVER agree to accept an update unless you know that things have been made compatible and that the bugs have been ironed out.
    It's also wrong of them to release NON-beta copies, automatically, which cause incompatibility, every few weeks. That should only happen every year or two.
    We need to ban together and quit installing their updates until they quit rushing them out too quickly.

  • Verizon Access Manager Download link not working

    Hi,
              Verizon Access Manager Download link not working, Following Links
    http://www.vzam.net/download/download.aspx?productid=872
    http://pcdn2-download.vzw.com/win/7.7/VZAM_7.7.1_2727b-AC30-Web.exe
    plz help to download verizon five spot access manager.
    thanks
    karthirocks

        Hi karthirocks! I'm sorry to see you're having any difficulties using these links. I've clicked on both, but had no problems getting pages to launch or in getting the application to download. If this is still a problem for you, please describe the issue you're experiencing. Also, please share the browser version you're using, and if you've enabled any security feature that prevents access to certain secure sites or services. Thanks!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Purchased Lightroom 5 and Download link not working. Please advise

    I have Purchased Lightroom 5 followed the download instructions and Download link not working.
    I get a dialog box stating that I have Explorer 4 and I need a later version.
    I am in fact running Explorer 10.
    Please advise.
    Bob Spree
    England

    Please see http://forums.adobe.com/thread/1229333 where this topic has been discussed.

  • HT2188 I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    The message is referring to iTunes on your computer, not the iPad : http://www.apple.com/itunes/download/
    The built-in apps on the iPad can only be updated via iOS updates, so if your iPad mini is on iOS 6.0.2 then its up-to-date

  • Set Application Parameters link not activate under Web Admin Tasks of Admin

    In the " How to do currency translation..." paper, there is a statement as following:
    "The currency conversion business rules tables can also be activated by going through the web
    admin parameters where the following parameter is set to u201C1u201D.
    FXTRANS                                              1
    However after I login to BPC Admin consol, I notice that Set Application Parameters link not activate under Web Admin Tasks of Admin Consol.
    Where should do this? Should I do it under Set AppSet Parameters?

    DFW,
    In the non-web Admin Console, you should also be able to accomplish the same thing by going to the application, clicking "Modify application", then "Change application type", then "Modify Application", then choosing the "Currency Conversion" application option.
    In general, this is how business rules can be turned on without messing around in the application parameters, and should really be the preferred method unless you have done some kind of customization that an application modification will interfere with.
    Ethan

  • According your advice reset my home screen layout but not yet show apple store application and another question when I any thing brows from apple site by safari then show "this address is invalided" please advice me......

    According your advice reset my home screen layout but not yet show apple store application and another question when I any thing brows from apple site by safari then show "this address is invalided" please advice me......

    I am using windows Vista and having this problem also (not exactly, but iTunes gives pop-up that "files are in use"). Acting a suggestion from another answer in this thread, I clicked on Computer and selected eject...windows did warn me that the device was in use, but also gave me a CONTINUE button, which I clicked and it was ejected...had to go back to iTunes and eject the iPod there also, but it did eject

  • My iphone was stolen so I decided to delete my device in find my iphone,  but the it has not yet been deleted bec the device is not connected to the internet yet. Can I undo my changes before it will be deleted from icloud? Thank you

    Hi Suport,
    My iphone was stolen yesterday so I decided to delete my device in find my iphone,  but the it has not yet been deleted bec the device is not connected to the internet yet. Can I undo my changes before it will be deleted from icloud? I want to undo the changes because I may find my phone when it connects to the internet. Thank you
    See image below:
    email is [email protected] for questions thank you Apple. I hope you could help me.

    Sorry, you can't undo your action remotely.

  • Photoshop will not launch. last week I re downloaded and it worked. 6 days later no launch. Is there anything I can do to launch the program that is on my computer?

    photoshop will not launch. last week I re downloaded and it worked. 6 days later no launch. Is there anything I can do to launch the program that is on my computer?

    Sign in, activation, or connection errors | CC, CS6, CS5.5
    For anything beyond that you will have to provide proper technical information about your system.
    Mylenium

  • Where to get ADF Sample Applications with Documentation.

    Hi All,
    I am new to ADF.I have followed oracle tutorials to learn ADF.
    Now I am looking for some sample applications with documentation so I can build some applications in ADF.I did one procurement application using following link.
    http://www.scribd.com/doc/13088674/Oracle-ADF-11g-Learning-Application-My-Procurement-Application
    Also I got one more application from Baig's Blog.But documentation is not there.
    http://baigsorcl.blogspot.com/2010/07/sample-code-quiz-application-in-oracle.html
    I will be very thankful if you provide me the documentation of Baig's application or some other applications with documentation.
    Regards,
    SHD

    Hi SHD,
    U can find some samples and their documentions here http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    But learning the basics u can go through the developer guide and some hands on Application
    Ref : http://www.oracle.com/technetwork/developer-tools/adf/overview/index.html
    U can start ur learning here http://www.oracle.com/technetwork/developer-tools/jdev/overview/jdeveloper-reviewrguide-086026.html
    Developer Guide : http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/toc.htm
    make use the links below
    http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html#adf
    http://www.oracle.com/technetwork/developer-tools/jdev/index-087798.html
    http://www.oracle.com/technetwork/developer-tools/jdev/viewlet-097827.html#adf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adfinsider-093342.html#adf
    Regards,
    Suganth.G

  • Website image and zip file download links not working in Dreamweaver Air application

    Hi
    I have successfully created and AIR app for an existing business website using the Dreamweaver AIR Extension. The site works very well in all respects except for the part where we have high resolution images and zip files available for download. The download links refuse to do anything, and right-click (PC) / ctl-click (Mac) does nto work either.
    I suspect this may be an AIR sandbox/security issue but am I correct and what can I do to fix it?
    Thanks in advance for any assistance you may be able to give.
    Martin

    I am now facing the same problem. I wrote a servlet .
    code like this
             response = (HttpServletResponse) faces.getExternalContext().getResponse();
             response.setContentType("application/x-download");
             String agent = request.getHeader("USER-AGENT");
             boolean isIE=false;            
            if (null != agent && agent.indexOf("MSIE")!=-1) { 
                isIE=true;
            if (isIE) {
                fileName = URLEncoder.encode(fileName, "UTF-8");
            } else {
                fileName = new String(fileName.getBytes("utf-8"), "ISO-8859-1");
            response.setHeader("Content-Disposition","attachment;filename="+fileName);
            ServletOutputStream os = response.getOutputStream();
            byte b[]=new byte[1024];
            int n;
            while((n=in.read(b))!=-1){
                os.write(b,0,n);
           in.close();
           os.close();
    and i open a new window refer to above jsp ,also i set a breakPoint at os.close(),the program has passed through,but nothing happened in the window.
    If i use IE or FF ,the browser will open a small window to allow me select whether open or  save the file.So can anybody give me some advice.Is it because air using webkit engine and the engine does not do this kind of job?
            Thanks.

Maybe you are looking for

  • ERROR VNIC creation job failed

    Hello All, I have brought oracle VM X86 manager into ops center 12c control. When I try to create a new virtual machine it is throwing the 'ERROR VNIC creation job failed' error. Can anybody throw some light over this issue. Thanks in advance. Detail

  • Itunes Library .itl file in one folder, music in another Itunes makes no sense!

    A while ago I attempted to move one of my libraries to another folder to try to force Itunes to orginise my files in a way that makes sense.   Older versions of itunes apparently used a Music folder and the new one doesn't (or is it the other way aro

  • Link to action doesn't work in a POWL application

    Hi, I have developed a web dynpro ABAP application and it is called by portal, This WD calls standard POWL, in a POWL there is a LinkToAction field. When I click on field the system should open a new window (shopping cart detail), but it doesn't happ

  • How to create a duplicate database

    version 10.2.1.0 i just got a laptop and i needed to create a duplicate db from the server. i was thinking installing oracle binaries and restoring from the backup of the server will do the trick. Also i intended making the duplicate a standby. pls i

  • New issue with Signatures -wrapping!

    Anyone seen this.... A signature I've used forever now wraps really strangely when it is automatically put in. If I then manually select another signature and then my normal one, everything is fine. Driving me crazy, though -- I now have to perform t