Adf bc project little bug

When creating a new adf bc project the name for the project is wrong displayed, a "0" is added to the name.
Model0 is displayed instead of Model or model depending on the location

Can you provide more step-by-step instructions of what you are clicking on and doing to reproduce?
Are you using the New Application dialog? Which application template are you picking?
Are you generating an application into a directory that might already have had a "Model" directory?
More specifics please. Thanks.

Similar Messages

  • Cann't launch the ADF Swing Project

    Hello,
    I have created java-application(swing,adf bc) in Jdev10.1.3, and created the Java Web Start(JNLP) files for the application ,run ant target: sign. it created all files ,build ok.
    but when I run the local.html in the Jdev1013, it open IE window, then I clicke the Launch JClient Link and it asks me to download the local.jsp file or open the file.
    If I download , the file "local.jsp.jnlp" would be saved, if I open, it display beblow:
    <?xml version="1.0" encoding="Big5" ?>
    - <jnlp spec="1.0" codebase="http://127.0.0.1:8991/TestJClient-View-context-root">
    - <information>
    <title>Title</title>
    <vendor>Vendor</vendor>
    <description>My ADF Swing Project</description>
    </information>
    - <security>
    <all-permissions />
    </security>
    - <resources>
    <j2se version="1.3+" />
    <jar href="client.jar" />
    <jar href="mymt.zip" />
    <extension name="common" href="localmt.jsp" />
    </resources>
    <application-desc main-class="test.view.test" />
    </jnlp>
    I review the local.jsp in Jdev1013, find some error "should not exist the element jnlp" about below:
    <?xml version="1.0" encoding="Big5"?>
    <jnlp spec="1.0" codebase="<%= buf.toString() %> ">
    Maybe that is jdev1013 bug.
    Anyone know the reason or how to deal with the error ?
    Thanks

    Hi,
    you are mixing releases here. You start with JClient in JDeveloper 10.1.2 and end up with ADF Swing in 10.1.3. Now what is the release you have the problem with. For 10.1.2 we have a whitepaper explaining how to use Java WebStart. We didn't upgrade this paper for 10.1.3, but I get Web Start deployment working when i tried it last time in JDeveloper 10.1.3.
    Note that no file should be downloaded to teh client and instead the JSP file should be executed to generate the JNLP file
    Frank

  • I just run into an anoying little bug with SimpleDateFormat......

    Try run this code:
    Filename: Foo.java
    import java.util.*;
    import java.text.*;
    public class Foo {
      public static void main(String args[]) {
        DateFormat df = new SimpleDateFormat("dd.MM.yyyy");
        Date date = null;
        try {
          date = df.parse("31.12.2002");
        } catch (Exception e) {
          e.printStackTrace();
        System.out.println("Date initiated: "+date.toString());
        df = new SimpleDateFormat("yyyy-ww");
        System.out.println("Week expected is 2003-01");
        System.out.println("Rendered week : "+df.format(date));
    End of file
    Output from code:
    H:\>java Foo
    Date initiated: Tue Dec 31 00:00:00 CET 2002
    Week expected is 2003-01
    Rendered week : 2002-01
    Anyone know any workaround to get the expected result?
    I am sitting on a DW project that has met this anoying little bug, and I have posted this to the bug parade aswell, but I have no time to wait for a new release of the JDK :) Hope you can help
    My os:
    Windows 2000 SP 2
    My JDK version (cannot use 1.4):
    java version "1.3.1_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
    Java HotSpot(TM) Client VM (build 1.3.1_04-b02, mixed mode)
    Any help is appreciated.

    As Sun says, calculations using Date are ok for computers. but if you need to do things that people want to do with dates, use Calendar/GregorianCalendar. Here's a couple of examples
    import java.util.*;
    import java.text.*;
    public class Calendar2 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance(); // today as Calendar obj;
            cal.add(cal.MONTH, 6);
            // change to Date object for better format control;
            Date sixMonthsFromNow = cal.getTime();
            // create custom format;
            DateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
            // apply format and print;
            System.out.println(sdf.format(sixMonthsFromNow));
    import java.util.*;
    public class Calendar1 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance();
            for( int n = 0; n < 7; n++ ) {
                    System.out.println(cal.get(cal.DATE) + "/" + (cal.get(cal.MONTH) + 1) + "/" + cal.get(cal.YEAR));
                    cal.add(cal.DATE, 1);
    }

  • Cannot deploy ADF JSF project from JDeveloper 10.1.3.3.0 to AS 10.1.2.0.2

    Hi All,
    I've a small deployment issue which you guys might be able to help me with.
    I've developed an ADF BC JSF project using JHeadstart 10.1.3.2.50 and it was running fine on my self contained OC4J instance. But when I try to deploy it across to my Oracle 10G AS version 10.1.2.0.2., it had the following errors:
    ----- START OF LOG ------
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy D:\OraHome_3 D:\jdevstudio10133\jdev\mywork\PAM2070C\ViewController\deploy\webapp1.ear webapp1 UNDEFINED
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = c0a8238746b50fc1d5b78e274fcfb38b81a490036726
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c0a8238746b50fc1d5b78e274fcfb38b81a490036726
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-8)
    #### HTTP return code was -8
    Exit status of DCM servlet client: -8
    Elapsed time for deployment: 18 seconds
    #### Deployment incomplete. #### 15/05/2008 17:00:33
    ---- END OF LOG ----
    Has anyone been able to deploy ADF JSF project with JHeadstart using JDeveloper 10.1.3.3.0 to Oracle 10G AS 10.1.2.0.2? I'm using window environment. Any feedback is much appreciated. Thank you for your assistance and have a nice day.
    Kind Regards,
    John

    Hi all,
    I had also tried out something else...
    I am now portalizing the ADF application using PortalFacesBridge and portlet.xml. Then I deploy it on the Local OC4J of my system and expose it as a WSRP Portlet using the url: 'http://hostname:portname/warFileName/info and generating a WSDL URL...
    I am then using this WSDL URL to regester this portalized application on the Oracle Portal10.1.4 which i am able to accomplish successfully...
    However after regestration, when I try to view this on the portal page, It is throwing the following error:-
    Error: Could not get markup. The cookie or session is invalid or there is a runtime exception.
    Also I would like to add that this method was working perfectly fine previously...
    What might be the clue for this sudden error...
    Any kind of help is greatly appriciated... Thanks...

  • I can't delete bookmarks page in my bookmarks list on toolbars, maybe there is a little bugs. Thx.

    I can't delete bookmarks page in my bookmarks list on toolbars, maybe there is a little bugs. Thx.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Error while deploying ADF Model Project to OIM 11g R2

    Hi
    I am getting the following error when deploying ADF Model Project in OIM 11g R2
    oracle.jbo.NoDefException:JBO-25058: Definition UsrLastName of type Attribute is not found in UsrLastName
    any inputs is appreciated...thanks in advance....

    See if you can find something helpful in the following links:-
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2329750
    oracle.jbo.NoDefException: Error in Quick Search when we use View  Criteria

  • Nokia N8 - Little Bugs

    I know everyone has different things going on with their wonderful N8's frm like little bugs as i would like to put it...I recently received my Nokia N8 and i will say that i am happy with what i have accept for the fact that their are a few little things that i come across that irritate me sometimes. Now i know some people might dissagree but i will say this everyone that owns the phone is having some lil problem..
    Firmware Upgrade Suggestions:
    1). When double tapping on image in the photoviewer..(After tapping to zoom in the Screen goes blank..
    2).Please add a feature to add album art in the N8 like the N95 and 5800.
    3). Sometimes during texting or even just browsing the web - the phone goes back to the home menu out of  nowhere (and yess my fingers are nowhere near the exit or home button)
    4). Can you make an app for Facebook so that we dont have to log in first through OVI....
    5). Video loading during playback....Please fix that
    6). When in the music library i click the option GO TO MUSIC STORE (it just takes me back to the home screen)
    7). Can add back Video Ringtones... I miss those
    8). I dont like the lagg of 2 sec when tryting to go through the menu (and yess i have all applications closed)
    Thats all thanks

    I am unable to replicate the blank screen fault when double tapping 12mp images on my '3' UK dark grey N8. Maybe try saving to the memory card instead of internal memory?? Also there is no 2 second delay in the menu on mine or videos stopping, be sure not to close the menu and it comes up instantly! There must be something different about the 3 branded firmware, I can't find many glitches!!

  • JDeveloper - ADF Faces projects - calling a jspx from another project

    I have an ADF Faces project which has a jspx file and a backing bean. The jspx file is called 1.jspx and the backing bean is called 1.java. Navigation within the page and outside of the page is controlled by the faces-config.xml.
    However, I want to be able to navigate to another jspx in another project. Let's call this jpx, 2.jspx. How would I be able to make this call without losing the current context in my first project? Please note I do not want to have to copy the 2.jspx and 2.java files into my current project.
    Thanks
    Chris

    Hi,
    according to the JavaEE specs, a J2EE context demarks the scope of a session, which means that as soon as you call out to another application, you start a new session, loosing all the information of the other session. So if you don't want to deploy this all in one application, then you have to find a way of persisting context information (e.g. using a shared database instance)
    Frank

  • Why not generating adf bc projects and components from offline database

    I imported offline database objects from my production database that is big. I would like designing some business components without necessarily the database running and be connected.
    Is it a reason why an adf bc project may necessarily connect to an on line database ?
    Why it is not possible to generate adf bc components from off line database objects ?

    The ADF BC design time has always required a database connection, to be able to test the validity of expert-mode SQL statement for one reason, but not the only one. We have not lifted that requirement in the 11g release.
    I filed ER# 6056701 to track your request. Thanks.

  • Little bug in the dashboard

    Yep, it look like even Apple software can have little bugs. To trigger it, open the dashboard then click and try to access menus of any system icons in the upper right part of the screen (except spotlight) with the click and hold method. You might have to move the mouse a bit before the bug is triggered. The menu souldn't appear right
    That's it.

    The menu souldn't appear right
    Well, it appears right , but dashboard doesn't disappear (because it doesn't disappear until you release the mouse button). If you want, you can send a bug report to -you'll have to sign up for a free ADC account.
    Good luck!

  • Generating a sequence diagram for an ADF/BC project

    hi folks,
    is there an automatic way to produce a sequence diagram? Read something about debug mode but its not working that way.
    Any help apreciated

    Hi John,
    thanks for the info but the documentation says somewhat about break points, but where to set them isnt mentioned - so nothing gets drawn in the diagram. Any info on that would be appreciated. Do i need several break points and especially where do i set them?
    I was allready wondering how a sequence diagram for an adf/bc project would look like - especially if no beans are involved.

  • PL36 Batch "little" bug?

    Hello,
    I am trying to make an inventory transfer with a batch managed item.
    When pressing the Create button, batch selection window appears to select the batches to transfer. Here  I try to find some bach. So, I type the batch number in the Find field and then press TAB. When pressing TAB the following message appears and then SAP is closed:
    Microsoft Visual C++ Runtime Library
    Program:..... \SAP Business One.exe
    abnormal program termination
    Same thing happens in "Goods Issue" stock transaction.
    I think this could be a "little" bug of PL36 (2005A). The strange thing is that this is not happening in PL34, but now I cannt go back to PL34.
    I really dont know how to deal with this!
    I would appreciate your help!

    It is curious, however, that doing the same thing in PL34 does not make any error.
    I think it only occurs when arriving PL36 through upgrade (in my case, PL34). Otherwise, it seems to work properly.
    Thanks any way for your quick reply

  • What happened to the little bug icon on the safari 5.1.3 toolbar?

    What happened to the little bug icon on the safari 5.1.3 toolbar?

    Hi ...
    If you mean this:    (but reporter icon), appaerenlty it's been removed from View > Customize Toolbar window.
    edited by:  cs

  • Solutions and/or suggestions for documenting ADF Faces projects

    Hello everybody,
    does anyone have solutions and/or suggestions for documenting ADF Faces projects? For C, C++, C#, PHP and Java projects we use Doxygen, but what to use für ADF Faces projects?
    Thank you in advance for your tips!

    Hello everybody,
    does anyone have solutions and/or suggestions for documenting ADF Faces projects? For C, C++, C#, PHP and Java projects we use Doxygen, but what to use für ADF Faces projects?
    Thank you in advance for your tips!

  • How to use ActionForm validate() method in ADF/Struts project

    Hi
    We are developing a project using ADF/Struts. We are not planning to use entity level validation. Rather we prefer to have it at Struts Form Bean level. So we need to have validate() method in Form Bean.
    That mean we need to have seperate bean for all the actions /jsp. The ADF's DataForm form bean is not gonna work for us. Is that correct.
    Please let me know...am I in the right direction.
    That could be a different discussion why we don't prefer entity level validation

    You can use the Struts validator plug-in (there's a howto on doing that on OTN) and it will handle the basics for you through XML definitions.
    If you want to specifically have a Form bean with a Validate() then the issue is that the current "DataForm" is a generic bean driven of the databinding files, so yes you'd have to write a bean per screen to use instead and loose that benefit of having a universal Bean. (Internally the DataPage and DataActions will respect the ActionForm APIs so you can pluf your own ActionForm subclass in with no problem.
    Plan B might be to leave the DataForm Bean in place and instead override the lifecycle of the datapage, probably in prepareModelUpdates()

Maybe you are looking for

  • OS 10.5 - Boot Camp - Windows won't read Mac Disc for Driver Install

    Hello everyone. I have been through half a dozen headaches and a dozen hours of time wasted on this problem. I've tried multiple windows discs untill finally I bought a brand new version of Windows XP Pro. I've followed all of the instructions in my

  • RMBP - external screen turns black for a few seconds every once in a while

    My external screen (Dell U2711) connected via Thunderbolt to Displayport cable turns black every once in a while. The rMBP is in clamshell mode. When it starts it randomly blackens the screen for 2 seconds with an interval of 10 seconds to 5 minutes.

  • External system Sales Order no and Line Item no in to BAPI_HU_CREATE

    Hi Friends Packing is done and Handling units are created in External System. For this requirement SAP ECC has to update Handling Units creation and  Materials Packing in to HU with reference External System Sales Order no and Line Item no. Could you

  • Print PDF Pages quality not high enough

    I'm pretty happy with using Aperture to design relatively simple photo books. Its great to stay in one tool. But I'm not happy with how it exports JPGs from the book I designed. Don't think its a problem with my automator workflow file either.  I'm u

  • Can't open Offic:mac

    Can't open any of the Office:Mac features, Word, Entourage, Exel or Powerpoint. The icons jump up and down as usual then just quit. Reinstalled Office:Mac from the CD which came with my computer. it set up a new icon with all the symbols but even the