JDev 9.0.3, Business comp wizard, is this a bug?

Howdy,
Found something that perhaps is a bug, hoping you guys have fixed for the real release.
1) Create a database connection, but don't fill in username/password. Don't check deploy password.
2) Create new workspace and project.
3) create new business component package in the project. On step 2, point Connection name to username/password-less connection. Alert says prompt will ask for credentials. No matter what I put in, with valid username/password entries, a Connect Error pops saying invalid arguments in call. Exception: oracle.jdeveloper.cm.CMException.
Is this a bug? We're using dynamic credentials in our app with data sources, so username/password is left off.
Thanks,
Joe Tseng
Technical Management Consultant
TUSC
[email protected]

Joe,
I've filed Bug#2561459 to track this problem.

Similar Messages

  • JDeveloper 3.1 Crashes when using business objects wizard

    I am having a problem keeping the business object wizard from crashing the program. When i select my tables to create objects from the wizard crashes when it is generating the java code and xml files. If I select one object at a time the program seems to behave better.
    There are other instances where either the program hangs or crashes. Is there something wrong with my environment? I am running windows 98 on a laptop with 128Mb of memory. I am using the Java vm that came with Jdeveloper 3.1 as far as i know.
    Thanks.

    Ahh .. boy I feel silly. I am trying to use the tool for about 44 tables. Again if I create objects for one table at a time it seems to work better.
    The other problems I have is the random hanging or crashing. If I am patient and rety my operations a lot the tool's functionallity generally works.
    Is there any plan to certify this tool on 98?
    Thanks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team (Laura):
    Jason,
    JDev 3.1 is not certified on Windows 98, only Windows NT and 2000.
    That said, how many tables are we talking about, and what version of the database?<HR></BLOCKQUOTE>
    null

  • How to customise the default business component wizard

    I Would like to customize the default Business component wizard for my application so that some of the option should be dissabled. (e.g when I associate my business component with several tables I see a window which shows insert '+', delete 'x' etc) will come by default I would like to hide delete from this.
    Can any one tell me how do I customise my Business application window?
    Thanks
    Jitendra

    I looked into "Modifying Data Form Generation Templates" which says there will be template.properties but could not find this file.
    Actually my problem is I would like to add/delete some of menu item in the default business component browser. If possible to do this ?
    Or would like to create a browser something similar to BC4J browser which gives me a list of tables to browse and each table gets opened as a data frame (Frame is easy to modify). Something like MDI for Data Frame.
    Any help on this would be helpful.
    Thanks
    null

  • Oracle 8 Lite & J Developer - Business Component Wizard

    When I run the Business Component Wizard against the Oracle 8 Lite database it checks the connection ok, but fails with SQL Error [POL-5130] table or view not found.
    This is at the step 3 of 3 - where it shows the available tables etc.
    The default tables exist with data and this has been verified using SQL Plus
    Any ideas ?
    null

    Oracle8 Lite & JDeveloper & Business Component - combination is not working. The next version (JDeveloper) will fix that (atleast that is what oracle finland told me)

  • Business components wizard still querying

    Hello,
    I'm running JDeveloper 10.1.2. and have following problem. I had setup new connection to my database(Oracle 9i) and everything looks ok. I can see all schemas and tables. But when I run Business Components Wizard and choose setuped connection then wizard still querying database objects and find nothing. I can only see schemas but no tables. Could somebody please help?
    Thank you very much in advance.
    Jan

    I also tried to make new installation of Jdeveloper but it doesn't help anyway :( Nobody know what is wrong?

  • Business Components Wizard and Turkish Characters

    Hi,
    JDeveloper Business Components wizard produces source code which includes turkish characters. For example entity class created for table named TIP is Tıp. Actually in Turkish lowercase for I is ı but I would like the source code to be produced with i instead of ı("Tip"), since we develop our code in English. Is there any way of doing this. Making wizard work with english language.
    Thanks in advance...

    I also tried to make new installation of Jdeveloper but it doesn't help anyway :( Nobody know what is wrong?

  • Another instance of distiller is busy starting up. This instance cannot continue.

    "Another instance of distiller is busy starting up. This instance cannot continue." This message keeps coming up after boot time. CS5 + Windows 7. Why?

    I did your recommendation and let me say that issue persists in the new fresh installation. Other issue that I can see is that Acrobat is installed twice, as you can see in the Programs and Features panel, on the Control Panel. I'm using Windows 8.1 x64 with all Adobe CC 2014 products.
    The problem is that uninstalling any Acrobat version (or row), Adobe Acrobat is uninstalled fully.
    Other issue detected with multiples instances is related to the Adobe CEF Helper application. This application appears, three or four times in the Task Manager.
    Really annoying this issue.
    Regards
    César Qüeb

  • Database objects not displaying in Business components wizard

    I am trying to create new entity object based on a table using Entity Object Wizard. But I dont see that the tables,views,sysnonyms enabled and also do not get the list of tables in the dropdown
    Following are the steps that I am following :
    1] in the navigator, have right-clicked and selected the "New Entity Object " Wizard Option.
    2] Entered the name and the package and in the schema object lov, do not see the list of all the tables at all and also the Database Schema is disabled.
    I have connected to the database from JDeveloper using database connections, but do not while creating an Entity object. Can you pls help me resolve this.
    Version of Jdeveloper is 11.5.10(CU3)

    Select your project in Jdev, right click and select "Edit business components project". In the new window check the value used for connection.
    --Shiv                                                                                                                                                                                                                                                                                                               

  • Error in Creating Custom Business Methods using ADF Business Comp. Tutorial

    I've been working with Jdev 10g Preview for a while. Now that we have Jdev 10g, I have to unlearn some of the Preview methods and learn the "real" way of doing things. To that end, I went out to the "Creating Custom Business Methods using ADF Business Components" tutorial. Unfortunately, I've found what I think is a mistake in the example code.
    Specifially, ADF treats the default iterator on View Objects differently than previous BC4J versions. In the older versions, the iterator was positioned before the first row when you first executed a query. In that case, the hasNext() method was used to see if you had any rows at all. In ADF, however, the default iterator is positioned at the first row. So, if your query only returns one row, then the hasNext() method returns false!
    Here's the code posted in the tutorial:
    public Number getDeptSalaryTotal(String dept_id)
    // get a department view object
    DepartmentsViewImpl dept = getDepartmentsView1();
    dept.setWhereClause("DEPARTMENT_ID = " + dept_id);
    dept.executeQuery();
    dept.first();
    EmployeesViewImpl emps = getEmployeesView3();
    Number salaryTotal = new Number(0);
    while (emps.hasNext() )
    Row empsRow = emps.next();
    salaryTotal =
    salaryTotal.add((Number)(empsRow.getAttribute("Salary")));
    return salaryTotal;
    As you can see, this is coded using the pre-10g semantics. It checks hasNext() at the top of the while loop. If there is only one Employee in the Department, hasNext() will return false since the emps View Object will already be positioned at the first and only row. There won't be a next row. So, the salaryTotal will be zero instead of the correct value. Alternatively, if there is more than one row, then hasNext() will be true, but the routine will skip the first row and start totalling salaries from the second row on.
    The routine should be recoded as follows:
    public Number getDeptSalaryTotal(String dept_id)
    // get a department view object
    DepartmentsViewImpl dept = getDepartmentsView1();
    dept.setWhereClause("DEPARTMENT_ID = " + dept_id);
    dept.executeQuery();
    dept.first();
    EmployeesViewImpl emps = getEmployeesView3();
    Number salaryTotal = new Number(0);
    Row empsRow = emps.first(); // Get the first row
    while (empsRow != null ) // while we have a row
    salaryTotal =
    salaryTotal.add((Number)(empsRow.getAttribute("Salary"))); // add in the salary
    empsRow = emps.next(); // get the next row
    return salaryTotal;
    I haven't actually executed this code, so there may be a typo or two in there. However, the basic idea is sound -- I think!
    Please update the tutorial so we don't mislead people right at the start! :-)

    Gary:
    I have two questions for you:
    1) Could you post the preferred code here?
    2) Why is it the preferred method? I would think that creating and destroying another object (the temporary iterator) would be a bad thing.

  • ADF business component wizard with tables referencing junction table

    I have a three tables, user, devices and a link/junction table to map the user's assigned devices.
    <<user>>
    user_id
    user_name
    <<device>>
    device_id
    device_name
    <<userdevice>>
    user_id
    device_id
    I wanted to create a view page where I can search a user then display the list of devices assigned to this user. The association between these two tables is the userdevice table.
    Using the wizard alone couldn't satisfy my objective. Have you encountered the same issue? Thanks.

    Hi Cyrus
    I'm not sure which Wizard are you referring to; can you clarify?
    Which area of WebCenter Portal are you using where you're seeing this issue?
    ~Sripathy

  • Why do i get this error when i run my application which has one Business comp Frame

    I do have one application and a business component frame.
    I followed all the steps of how to create a workspace a project , application and a business component. But my application when it runs gives the following errors.
    This error is from the following statement in the Constructor of Frame
    Frame(){
    jbInit();
    //the above statement executes well
    sessionInfo.publishSession(executeQueriesNow);
    //the above statement gives the error shown below.
    null
    java.lang.NullPointerException
    void oracle.jbo.server.DBTransactionImpl.initTransaction()
    void oracle.jbo.server.DBTransactionImpl.<init>(java.lang.String, java.lang.String, java.lang.String)
    oracle.jbo.server.DBTransactionImpl oracle.jbo.server.DatabaseTransactionFactory.create(java.lang.String, java.lang.String, java.lang.String)
    void oracle.jbo.server.NullDBTransactionImpl.connect(java.lang.String, java.lang.String, java.lang.String)
    oracle.jbo.ApplicationModule oracle.dacf.dataset.SessionInfo._createAppModule()
    void oracle.dacf.dataset.SessionInfo.connect()
    void oracle.dacf.dataset.SessionInfo.openProducerObject()
    void oracle.dacf.dataset.ProducerObject.open(boolean)
    void oracle.dacf.dataset.SessionInfo.publishSession(boolean)
    void package22.Frame1.<init>()
    void package22.Application1.<init>()
    void package22.Application1.main(java.lang.String[])
    oracle.dacf.dataset.DataSourceOperationException: SessionInfo: Application module creation failed; className: MyProject9
    void oracle.dacf.dataset.ProducerObject.open(boolean)
    void oracle.dacf.dataset.SessionInfo.publishSession(boolean)
    void package22.Frame1.<init>()
    void package22.Application1.<init>()
    void package22.Application1.main(java.lang.String[])
    null

    I solved the problem. The invoked method was not part of the VO, but was part of the AM.

  • Is this a bug of JAAS/JAZN  in JDev 10.1.3 ?

    Hi All,
    I implement file based security eith JAAS and JDev10.1.3, that works but there are two strange things that I wonder where it is bug :
    1.) When I go to JAZN Data Properties from JDev , I see many 'uncreated' users like : DataBase_User_zbLu50HDPQULTOUZkmbSn3fjEowJ-YHy, DataBase_User_lE4mfb1ETJPcD3sOeYaSfiHw3n0hM8BQ etc, what are these ?
    (they get deployed also when I deploy the app to OC4J)
    2) When I deploy to OC4J stand alone, my real users I created from JDev for testing do not seem to get deployed, only the 'garbage' users that I mentioned above get deployed.
    On the OC4J Server, to make it workm I have to manually copy : jazn-data.xml
    FROM : C:\OC4J\j2ee\home\applications\MyApp\MyAppViewArchive\WEB-INF\classes\META-INF
    TO : C:\OC4J\j2ee\home\application-deployments\MyApp
    Is this also a bug ?
    Thank you for your help,
    xtanto

    Xtanto,
    1) what you call "garbage" users are the database connects you have defined in JDeveloper. You can delete them from jazn-data.xml before deployment. The "garbage" you see is used for password indirection, to make sure the clear password is not added to the jazn-data.xml file
    2) Create jazn-data.xml file in your project. Add the users you like to use. Then create orion-application.xml in the same project, which by default points to the jazn-data.xml file in the project. This then should make OC4J using the jazn-data.xml file of your project instead of generating a new one
    Frank

  • Wizard generated table control: bug in insert line function?

    Hi,
    I added a table control to a dynpro using the wizard in the screen painter. Now I have an issue with the inserting line button:
    If I add a new line the first time, a new empty line is added to the table control before my last line. So far so good.
    If I add now another line, again a new line empty is added before my last line and two lines are added after my last line: one empty line and a line with the same content as my former second last line.
    The following should explain it a bit better:
    table before inserting new line:
    line 1
    line 2
    line 3
    line 4
    line 5
    after inserting a new line:
    line 1
    line 2
    line 3
    line 4
    new empty line
    line 5
    table before inserting the second line:
    line 1
    line 2
    line 3
    line 4
    line 5
    line 6
    after inserting the second line:
    line 1
    line 2
    line 3
    line 4
    line 5
    new empty line
    line 6
    new empty line
    line 5
    I didn't change the generated coding yet!
    Thanks in advance and regards,
    Martin
    Edited by: fischerman on May 29, 2008 9:08 AM

    Here is the code of the form which is called in PAI if the insert button was pressed:
    FORM fcode_insert_row
                   USING    p_tc_name           TYPE dynfnam
                            p_table_name             .
    *&SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
       DATA l_lines_name       LIKE feld-name.
       DATA l_selline          LIKE sy-stepl.
       DATA l_lastline         TYPE i.
       DATA l_line             TYPE i.
       DATA l_table_name       LIKE feld-name.
       FIELD-SYMBOLS <tc>                 TYPE cxtab_control.
       FIELD-SYMBOLS <table>              TYPE STANDARD TABLE.
       FIELD-SYMBOLS <lines>              TYPE i.
    *&SPWIZARD: END OF LOCAL DATA------------------------------------------*
       ASSIGN (p_tc_name) TO <tc>.
    *&SPWIZARD: get the table, which belongs to the tc                     *
       CONCATENATE p_table_name '[]' INTO l_table_name. "table body
       ASSIGN (l_table_name) TO <table>.                "not headerline
    *&SPWIZARD: get looplines of TableControl                              *
       CONCATENATE 'G_' p_tc_name '_LINES' INTO l_lines_name.
       ASSIGN (l_lines_name) TO <lines>.
    *&SPWIZARD: get current line                                           *
       GET CURSOR LINE l_selline.
       IF sy-subrc <> 0.                   " append line to table
         l_selline = <tc>-lines + 1.
    *&SPWIZARD: set top line                                               *
         IF l_selline > <lines>.
           <tc>-top_line = l_selline - <lines> + 1 .
         ELSE.
           <tc>-top_line = 1.
         ENDIF.
       ELSE.                               " insert line into table
         l_selline = <tc>-top_line + l_selline - 1.
         l_lastline = <tc>-top_line + <lines> - 1.
       ENDIF.
    *&SPWIZARD: set new cursor line                                        *
       l_line = l_selline - <tc>-top_line + 1.
    *&SPWIZARD: insert initial line                                        *
       INSERT INITIAL LINE INTO <table> INDEX l_selline.
       <tc>-lines = <tc>-lines + 1.
    *&SPWIZARD: set cursor                                                 *
       SET CURSOR LINE l_line.
    ENDFORM.                              " FCODE_INSERT_ROW

  • Failover Cluster Manager : Add node wizard Error " This operation returned because the timeout period expired" Windows Server 2012

    Hi Everybody,
    I have two node cluster and trying to add the third node (which is a Virtual Machine), all nodes are in different subnet and can communication with each other. While adding the third node it gives the error at the end of wizard "  This operation
    returned because the timeout period expired ". My domain controller is 2008 Enterprise Server and nodes are all running Windows Server 2012 Standard Edition. Any idea what is causing the issue.
    thanks 

    Hi,
    Before you add a server (node) to a failover cluster, we strongly recommend that you run the Validate a Configuration Wizard for the existing cluster nodes and the new node
    or nodes. The Validate a Configuration Wizard helps you confirm the configuration in a variety of important ways. For example, it validates that the server to be added is connected correctly to the networks and storage and that it contains the same software
    updates. Please post the error or warning report.
    Please try to install the Recommended hotfixes and updates for Windows Server 2012-based failover clusters:
    Recommended hotfixes and updates for Windows Server 2012-based failover clusters
    http://support.microsoft.com/kb/2784261
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can you download a PDF Wizard that converts Microsoft Office files to PDF through a print command. The PDF wizard does this but costs 40 US Dollars?

    Does anyone know if you can download a PDF Printer that converts all microsoft office files to pdf format via a print command. The PDF Wizard fromPDF Suite does this but it costs 40 US Dollars?

    Hi Justin,
    You can purchase a Create PDF subscription and use the Create PDF desktop pinter which can be downloaded once you are a paying subscriber. The subscription costs $9.99 per month and you can end your subscription at anytime. Learn about this service.
    Hope this helps.
    Thanks,
    Karen

Maybe you are looking for

  • Error while doing portal configuration

    Hi All, After doing all the configuration in portal, while performing the connection checks I am getting http/http(s) related error. Pls help. System Connection Tests SAP Web AS Connection -: SAP Web AS Connection   Test Details: The test consists of

  • Photoshop 'Save As' window cannot be re-sized??

    The window that pops-up when you try and do a 'save as' in Photoshop has gone full screen which is very annoying, and I cannot find a way to resize it. Dragging the corners do nothing., This may be a Windows issue rather than Photoshop, but it only h

  • Windows Server 2008 Standard Drivers for Intel I217LM Gigabit Network adapter

    Hi everybody, I am unable to find Network drivers for Intel® I217LM Gigabit Network adapter for Windows Server 2008 Standard (32-bit). I have found the drivers for Windows Server 2008 R2 but that being 64-bit do not work.Kindly help me in sorting out

  • Simple use of iCal

    I have 3 questions. I assume you want 3 separate posts. For reference, the other 2 subjects are: "Can't add eventl" and "Color coding etc." In searching for answers it appears most of the questions regard synch and communication of iCal between multi

  • Install pdk for jdeveloper

    I´ve downloaded pdksoftware101202 and i want to install this for jdeveloper, can anyone tell me a step by step to do it?. Ones i install it, can i see the pdkstruts library in the jdeveloper´s Component Palette? thanks in advance