Netbeans 4.1 input form problem.

hi all.
i have a problem with netbeans ide 4.1 Build 200505031930 (Java 1.5.0_05).
When i run (F6) my project (already builded), netbeans show me an input form (in the output window) but only for few moments.
i can't write the inputs (the input form disappear instantaneously) for my little project and i receive this error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 (because i use args[0]!)
Actually netbeans doesn't ask me input parameters...or better..i haven't time for write anything!
my code:
public class Main {
public static void main(String[] args) {
String a = args[0];
System.out.println(a);
tnx :)

NB commandline argument input is done via a form, not in the output window. IIRC (I'm using NB 5), open the project's properties, there's an entry area.

Similar Messages

  • Input form problem

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

  • Radio Button/Input Form Problem

    Hi folks,
    I have created a form which sends the inputted values as an email. The file takes a name, delivery address etc and also should allow a quantity to be input. There is also an option where a different delivery address can be specified like so:
    The code looks okay, with no compiling errors, but the 'user input quantity' does not work and when changing different address, the original invoice address is showing up
    Any help or pointers would be gratefully appreciated
    My code looks like this:
    stop();
    // The display function
    System.useCodepage = true;
    send_btn.onRelease = function() {
         my_vars = new LoadVars();
         my_vars.designName = designName.text;
         my_vars.designPosition = designPosition.text;
         my_vars.designAddress = designAddress.text;
         my_vars.designTel = designTel.text;
         my_vars.designFax = designFax.text;
         my_vars.designMob = designMob.text;
         my_vars.designEmail = designEmail.text;
         my_vars.invoiceName = invoiceName.text;
         my_vars.invoicePosition = invoicePosition.text;
         my_vars.invoiceAddress = invoiceAddress.text;
         my_vars.invoiceTel = invoiceTel.text;
         my_vars.invoiceFax = invoiceFax.text;
         my_vars.invoiceEmail = invoiceEmail.text;
         my_vars.invoiceDate = invoiceDate.text;
         my_vars.jobNumber = jobNumber.text;
         if ("same" eq delivery.getValue) {
              my_vars.deliveryName = invoiceName.text;
              my_vars.deliveryPosition = invoicePosition.text;
              my_vars.deliveryAddress = invoiceAddress.text;
              my_vars.deliveryTel = invoiceTel.text;
              my_vars.deliveryFax = invoiceFax.text;
              my_vars.deliveryEmail = invoiceEmail.text;
         } else  {
              my_vars.deliveryName = deliveryName.text;
              my_vars.deliveryPosition = deliveryPosition.text;
              my_vars.deliveryAddress = deliveryAddress.text;
              my_vars.deliveryTel = deliveryTel.text;
              my_vars.deliveryFax = deliveryFax.text;
              my_vars.deliveryEmail = deliveryEmail.text;
         if ("other" eq quantity.getValue) {
              my_vars.quantity = quantityOther.text;
         } else {
              my_vars.quantity = quantity.getValue();
         if (my_vars.designName != "" and my_vars.designPosition != "" and my_vars.designAddress != "" and my_vars.designTel != "" and my_vars.designFax != "" and my_vars.designMob != "" and my_vars.designEmail != "" and my_vars.invoiceName != "" and my_vars.invoicePosition != "" and my_vars.invoiceAddress != "" and my_vars.invoiceTel != "" and my_vars.invoiceFax != "" and my_vars.invoiceEmail != "" and my_vars.invoiceDate != "" and my_vars.jobNumber != "" and my_vars.deliveryName != "" and my_vars.deliveryPosition != "" and my_vars.deliveryAddress != "" and my_vars.deliveryTel != "" and my_vars.deliveryFax != "" and my_vars.deliveryEmail != "" and my_vars.quantity != "") {
              my_vars.sendAndLoad("mailer.php", my_vars, "POST");
              gotoAndStop(2);
         } else {
              error_clip.gotoAndPlay(2);
         my_vars.onLoad = function() {
              gotoAndStop(3);
    name1.onSetFocus = Position.onSetFocus = address.onSetFocus = telephone.onSetFocus=fax.onSetFocus=Mob.onSetFocus = email.onSetFocus = invoiceName.onSetFocus = invoicePosition.onSetFocus=invoiceAddress.onSetFocus =  invoiceTel.onSetFocus = invoiceFax.onSetFocus = invoiceEmail.onSetFocus = invoiceDate.onSetFocus = jobNumber.onSetFocus = quantity.onSetFocus=function () {
         if (error_clip._currentframe != 1) {
              error_clip.gotoAndPlay(6);
    Many thanks !

    if ("same" eq delivery.getValue()) {
    and
    if ("other" eq quantity.getValue()) {
    If that doesn't fix the problem, then you may have more that I didn't notice, or the error isn't related to that.  In any case, if the error persists, provide the error message you are getting

  • Form problem - invalid input

    iv been using the same code to make input forms ever since i
    started but im having this recurring problem with one form. when
    people fill in the form when they hit send, sometimes it sends and
    other times it goes to a blank screen which says "invalid
    input!".there is a line at the top of the php code which mentions
    this and then refers to $field for which there is nothing in the
    form called this.is that the problem? why would it only work
    sometimes?
    the line of code is this:
    <?
    function checkOK($field)
    if (eregi("\r",$field) || eregi("\n",$field)){
    die("Invalid Input!");
    the code for the page can be found here:
    http://www.mathminds.co.uk/tutor_application_form.html
    thanks.

    Greetings,
    It appears that you are checking for carrige returns or newlines in the form fields.
    Then calling die(); if one or the other is found.
    Why not do some form validation to sanitize the input from your form fields correctly.
    HTH
    -Rb

  • Use of oledb database connection in input form of process

    I've created dynamic pdf form with data connection to mssql database and with script that automatically adds rows to table and fills fields.
    When I try to open this form as input form for my process in workspace it generates an error: Unable to create SOM expression. That means that sql database connection works not properly.
    How can I fix this? Is it possible to use data connection to oledb database in the input form?

    Hi,
    I have a form that includes db connection (OLDB ->Access). But in
    workspace I have an error while initiating it. The error is an Adobe Acrobat message;
    "Unable to create SOM expression $record.tablename.fieldname"
    I am using Acrobat 9 pro ext. and when I use reader then there is no problem.
    I removed enhanced security settings in preferences of Acrobat. What else i can do? Any suggestions?
    Thank in advance..

  • JDev10g and ADF/Struts input form errors

    I followed a demo for creating an input JSP form from Business Components. However, although I can create and run a report or read-only form without a problem, I cannot create and run an input form at all as I keep getting the following error:
    javax.servlet.jsp.JspException: No getter method for property FirstName of bean org.apache.struts.taglib.html.BEAN
         at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968)
    Any ideas?

    Justin,
    This usually happen because the data binding called FirstName cannot be found in the binding container associated your JSP.
    The binding container associated with your page is most likely the name of your page with UIModel.xml.
    You can see the list of bindings available in the binding container by selecting the DataBinding.cpx file in the Navigator and look at the Struture Pane.
    The FirstName binding might not be thre of the wrong binding container may be associated with the page.

  • Preventing input form from showing existing record

    Hello,
    I'm creating a series of web pages to collect info from a user. On the first page, create.jsp, I have a CommandLink bound to the Create binding action. It forwards to the input form on its own page, form.jsp. The defaults (sequence number, creation date) from the model layer appear nicely in the form. If the user follows the page flow, the record is committed and everything is swell.
    The problem is that users can enter "form.jsp" directly into their location bar in their web browser, and the input page will display the first record in the table. I cannot use an authorization scheme to prevent access because any general user of the web should be able to input their info. (In other words, you can't be logged-in before creating your login.)
    How can I disable this? Or, is there a hook in the processing lifecycle that I can use to determine if a user has created a new row before displaying the input form?
    I'm using JDev 10.1.3 production, ADF Faces, ADF BC.
    Thanks,
    -Anthony

    I figured this out myself, actually this was quite simple.- just set the 'immediate' property on the component (button) to 'true'.

  • ADF input form, changing mode to input rather than display

    aim of what i am tring to do:
    create an input form using ADF and UIX which accepts input and moves to a different page.
    approach taken:
    I have a data control based on a business component created from a database table. I have dragged the columns onto a UIX page as an input form without navigation.
    the problem/question:
    how do i set the data controls mode to create upon displaying the page? I want the page just to accept input and submit. it will never be used for displaying data, which is its current default state.
    i have tried calling the create method of the data control from a few places, but i am not sure where the correct place to call this is.

    You can create a dataaction before the page is called and drag the Create method on to it.
    Or you can add the create method as a button to the page that will end up calling your insert page.
    http://www.oracle.com/technology/obe/obe9051jdev/ADFWorkshop/BuildingADFApplicationsWorkshop.htm

  • SAP BPC 10 - Error on Refreshing Reports  Input Forms

    Hi all,
    We are working on an BPC 10 Consolidation project for the Netweaver Version.
    We setup the Environment, Dimensions, Models, etc. We created a few reports too using the Excel interface.
    These were tested and they worked well.
    However, then one day we started getting this message, whenever we opened any Report or Input Form -
    "The Report that was defined is invalid - at least one of the axis contains no members."
    We observed that this message appeared when there was no data available for EPM Context (Current View) given.
    In short -
    - The data is pulled out in the report, where for a CV there is data available.
    - However, if the CV is changed to something which has no data available, the report does not go blank (i.e. does not get refreshed) and it keeps showing the old figures.
    We tried opening reports in the SAP delivered IFRS Starter Kit too but got the same message.
    We are not able to locate what went wrong. Did we change any option by mistake.
    If anybody has faced this message and got it resolved or has an idea why this message might be appearing, please reply.
    Any help would be highly appreciated!
    Thanks!
    Rajneesh

    Hi Rajneesh,
    Check whether you have both the row-axis and column-axis of the input template through 'edit report'.
    Probably your input template has some member dimensions missing in your template.
    We have faced the same problem before and corrected it.
    This error occurs sometimes when we create a input template by clearing defining the row & column axis in the template but afterwards try some EPMOlapmember in any axis by deleting the original report elements.
    So check the input template once again. I think you will track the error.
    Regards,
    Bishwajit

  • Tab Order in Visual Composer Input Form

    Hi,
    I am trying to set the tab order on my visual composer input form.  I enter a number in "tab order" but it does not seem to have any effect on the tab sequences.  Tabbing is sequential when I set layout to "horizontal" or "vertical" but not for "absolute".  I would like to use the absolute layout - does anyone know why I cannot control tab order?
    Thanks.
    Edited by: Patti Gray on Jul 31, 2009 2:13 AM

    Hi
    Normally 'Tab order' works fine for all the fields & it works as per given in SAP Library. But sometimes it doesn't work so there is workaround which i tried & it works fine in my case. IN the form you have created all the fields, just hide all the fields. & then select one by one as per the sequence you want. It works.
    You can go to 'Layout Board' & there also you can arrange the sequence.
    Have i understood your problem correctly? or you are looking for something else.
    Regards
    Sandeep
    Edited by: Sandeep Patki on Jul 31, 2009 6:10 AM

  • JSP + MYSQL question: input form value into a SQL table

    Hello,
    I am writing some JSP code to read input information from a input form to write this information into a SQL field.
    My problems are:
    - how can i pass the input form information to other jsp file ? (like Getproperty of something like this)
    - how can i move the content of any input information into a variable ? I mean something like this:
    String a1;
    username.value.of.the.input.field.in.forum_jsp = a1.in.addmessage_jsp;and then:
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");------
    The SQL table looks like this:
    stmt.executeUpdate("CREATE TABLE forummessages (messagecode int AUTO_INCREMENT PRIMARY KEY, usercode int, messagedate date, message char(255) not null)");My codes are:
    forum.jsp - this one should pass the input information to addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
      String sql = "SELECT * FROM forummessages,users,bmwecode WHERE (forummessages.usercode=users.usercode) AND (users.bmwcode=bmwecode.bmwcode)";
      ResultSet rs = stmt.executeQuery(sql);
    %>
    <html>
    <head>
    <title>JSP + MYSQL Teszt</title>
    </head>
    <body>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>
    <form action="addmessage.jsp" method=post">
    Felhasznalo:
    <input type="text" name="username">
    <br><br>
    Hozzaszolas:
    <input type="text" name="message">
    <br><br>
    <input type="submit" value="Uj hozzaszolas">
    <br><br>
    <table border="0">
    <tr>
    <th>messagecode</th>
    <th>user</th>
    <th>car type</th>
    <th>message</th>
    </tr>
    <%
      while(rs.next()){
    %>
    <tr>
    <td><%=rs.getInt("messagecode") %></td>
    <td><%=rs.getString("username") %></td>
    <td><%=rs.getString("bmwtype") %></td>
    <td><%=rs.getString("message") %></td>
    </tr>
    <%
      } // end while
    %>
    </table>
    </body>
    </html>
    <%
    } catch (Exception e) {
      out.println("<font color=red><h3>Error:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %> ----
    addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");
    } catch (Exception e) {
      out.println("<font color=red><h3>Hiba:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>---
    Thank you for your help in advance.

    SELECT DISTINCT
    hou.name
    ,poh.segment1 po_num
    ,pol.line_num po_line_num
    ,poh.currency_code
    --,trunc(poh.creation_date) po_creation_date
    ,pol.cancel_flag
    ,msi.segment1 item_num
    ,pol.unit_price
    ,round(cost.item_cost,5)
    ,round((&p_rate * pol.unit_price),5) "CONVERSION"
    ,(cost.item_cost - round((&p_rate * pol.unit_price),5)) difference
    ,pov.vendor_name
    FROM
    po.po_headers_all poh
    ,po.po_lines_all pol
    ,po.po_vendors pov
    ,hr.hr_all_organization_units hou
    ,inv.mtl_system_items_b msi
    ,bom.cst_item_costs cost
    WHERE
    poh.po_header_id = pol.po_header_id
    and pov.vendor_id = poh.vendor_id
    and poh.org_id = hou.organization_id
    and hou.organization_id = :p_operating_unit
    and poh.currency_code = :p_currency
    and poh.creation_date between :po_creation_date_from and :po_creation_date_to
    and poh.type_lookup_code = 'BLANKET'
    and msi.inventory_item_id = pol.item_id
    and cost.INVENTORY_ITEM_ID = pol.ITEM_ID
    --and (cost.item_cost - pol.unit_price) <> 0
    and (cost.item_cost - round((&p_rate * pol.unit_price),5)) <> 0
    and cost.organization_id = 1
    and msi.organization_id = 1
    and cost.cost_type_id = 3 --- Pending cost type
    and nvl(upper (pol.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(upper (poh.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(pol.cancel_flag, 'N') = 'N'
    and &p_rate user parameter
    I want this p_rate to be passed as a user parameter.

  • Multiple instances of parameter input form opens in Citrix environment - stumped

    Post Author: debmilner
    CA Forum: General
    One of our clients is getting multiple parameter input forms, specifically 4 instances, opening when running a report.  This only happens when she attempts to run the report when connected to the software using Citrix, but does not occur when running the report on her test server. She reports that other reports open only one parameter screen, as they should.  There is only one instance of each parameter in the report.
    We are calling the reports through our client app against a MS-SQL2005 database, and these are not web based.  The report is written using a select statement in the Database - Command option, on a file.dsn connection.  I cannot duplicate this behavior, and am totally stumped.
    Any ideas?
    Thanks

    Joonas,
    as this appears to be a portal problem it is better to post this question to the WebCenter forum WebCenter Portal as it is out of scope for core ADF
    Frank

  • Variables to a BI Query from input form and chart?

    Hi,
    I have a query (QUERY A) to which I connected an input form to define the variables. The output is a chart which tells us a status overview.
    Now I want to use the input form as well for entering the variables for QUERY B. This is no problem as the variables are passed through correctly. However, I also wanna filter on status by selecting the status in the chart. This does not work unfortunately.
    Situation:
    INPUT FORM ----------> QUERY A ---------------> CHART----------------------------
                                      |                                             |
                                      |                                             |                             
                                      |                                             |
                                      ----->QUERY B <--------------------------------
                                                  |
                                                  |
                                                  ----------->OUTPUT (VARIABLES FROM INPUT FORM AND CHART}
    Is this possible at all?
    Best regards,
    Jan Laros

    Hi Jan,
    I suspect that you are only partially passing the variables in two separate select events.  You should be able to meet your requirement with the following approach:
    1) Connect a select event from the output port of the form to the input/variable port of Query B.  In the input parameters reference both the relevant form fields AND the chart fields you want to filter by;
    2) Connect a select event from the output port of the chart to the input/variable port of Query B.  In the input parameters reference both the relevant form fields AND the chart fields you want to filter by;
    In other words, each select event link should reference the same fields from both the form and the chart.
    Regards,
    Mustafa.

  • Create Input Form

    I started to build a Fusion App with EJB-JPA business layer.
    I am working to create an Input Form but I can't follow exactly the paragraph 26.6 of Fusion Dev. Guide (create an Input Form) because I can't have a createInsert operation on my DataControl.
    How can I create an Input Form into application whit DacaCOntrol created from EJB-JPA business components ?

    I am very frustrating , it is ever more clear for me that it's impossible to build a nice Fusion App without to use the SDF BC .
    In this case I have a entity , Account .
    Simply I want to create a form to insert all fields of Account.
    Then I dragged the accountFindAll collection from data control and dropped it as ADF Form.
    After, I have created 1 methodAction to call the persistAccount (Account) method and one action to initially have an Account object as current row of accountFindAll iterator.
    Seem all ok , or not ?
    Instead I have a lot of problem :
    1) when using the page to insert Account and after return to other page listing all Account , I see 2 Account created with the same data, one is Account really inserted in DB and another is Account stored in current row of accountFindAll iterator
    2) when I reuse the insert page in the second time the account form is populated with data previously inserted
    please help me ... I want to make a form to create a Simple object but I have a EJB-JPA business layer ,not ADF BC , it's possible ???
    This is my page def :
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.2.60.17" id="createAccountPageDef"
    Package="admin">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <page path="templates.mainTemplatePageDef" id="ptb1" Refresh="ifNeeded"/>
    <iterator Binds="root" RangeSize="-1" DataControl="AdminServiceLocal" id="AdminServiceLocalIterator"/>
    <accessorIterator MasterBinding="AdminServiceLocalIterator" Binds="accountFindAll" RangeSize="-1"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.Account"
    id="accountFindAllIterator" Refresh="never"/>
    <invokeAction id="ia1" Binds="Create" Refresh="prepareModel"/>
    <accessorIterator id="userFindAllIterator" MasterBinding="AdminServiceLocalIterator" Binds="userFindAll"
    RangeSize="25" DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    Refresh="prepareModel"/>
    <!--
    <accessorIterator MasterBinding="accountFindAllIterator" Binds="userList" RangeSize="25"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    id="userListIterator"/>
    -->
    </executables>
    <bindings>
    <attributeValues IterBinding="accountFindAllIterator" id="dataSaldo">
    <AttrNames>
    <Item Value="dataSaldo"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="descr">
    <AttrNames>
    <Item Value="descr"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="iban">
    <AttrNames>
    <Item Value="iban"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="saldo">
    <AttrNames>
    <Item Value="saldo"/>
    </AttrNames>
    </attributeValues>
    <action IterBinding="accountFindAllIterator" id="Create" RequiresUpdateModel="true" Action="createRow"/>
    <methodAction id="persistAccount" RequiresUpdateModel="true" Action="invokeMethod" MethodName="persistAccount"
    IsViewObjectMethod="false" DataControl="AdminServiceLocal"
    InstanceName="data.AdminServiceLocal.dataProvider"
    ReturnName="data.AdminServiceLocal.methodResults.persistAccount_AdminServiceLocal_dataProvider_persistAccount_result">
    <NamedData NDName="account" NDValue=""
    NDType="org.savino.hb.model.entity.Account"/>
    </methodAction>
    </bindings>
    </pageDefinition>
    Edited by: Kronos72it on Oct 6, 2011 6:14 PM
    any reply ?

  • Input Form using an EJB DataControl

    Hi,
    I have a question about how to create an input form in a ADF Faces – TopLink app.
    First, I created a DataControl over the TopLink mappings, and then I created a JSF page with an Employee form (I’m using the HR database), I dropped a Commit button from the DataControl palette, and this works fine.
    But now I’m reading the ADF Developer’s Guide, and this document recommends to create a EJB service and a DataControl over the EJB. I did it, and I recreated the same JSF page with an Employee form. I dropped a mergeEntity method from the DataControl palette, and I defined ${bindings.findAllEmployeeIter.currentRow.dataProvider} as the argument of the method. But if I execute the app, and I make a change on the data, the mergeEntity button doesn´t update the database. What am I missing?
    Is there any problem in generating the DataControl directly from the TopLink mappings? Is it preferrable to generate the DataControl from an EJB? Why?
    Thanks
    Juan Claudio Navarro

    Juan,
    Try asking this in the toplink forum.
    TopLink/JPA
    The reason to front your TopLink objects with a session facade is for scalability.
    So it will also depend on the number of users your application will have.
    The TopLink guys will be able to give you more details.

Maybe you are looking for

  • The application was unable to start correctly (0xc00000fd). Click OK to close the application.

    Trying to move Acrobat 7.0 Standard (Version 7.0.9) to a new computer.  found the website to download a new copy of the application.  Downloaded and installed.  When trying to start the application an error message immediately pops up - "The applicat

  • What's wrong with this display???

    My MacBook Pro 2.2 GHz had a cracked screen. I'm pretty handy so I wanted to fix it myself. Well, disassembly and reassembly went well as planned and I wanted to test it out before I put it all back together. When I turned it on for the first time to

  • File content conversion query

    hi, i have sender and received side -file content conversion. in sender communication channel - Recordset structure is -> Header,1,Detail,* Message type structure is MT1 has 2 subnodes Header and Detail. In my message type,there is no field identical

  • Learning to create ebooks/kindle

    Hi, I am still using CS5 (master suite) and want to learn how to create ebooks -- particularly kindle, from start to finished product ready to upload. I don't really know where to start. Is there a book or course that can be recommended? Can I do it

  • Jsf-naming:namingContainer leads to ClassCastException

    Hi, I am having a problem creating a JSF-Portlet (JSF 1.2) in a WebLogic Portal 10.3.2 I am trying to create a portal JSF-Portlet using the jsf-1.2_09 libraries (WebLogic default). The Portlet works great until I try to integrate the <jsf-naming:nami