Collection support in generated multi-occurrence methods

Hello;
Wondering if there are plans to add support for java collections to the generated
multi-occurence methods?
It would be useful to be able to do things like this:
Collection items = myPO.getItemCollection();
items.removeAll();
Or
Iterator itemIt = myPO.getItemIterator();

Hi,
[1] Are there any current issues with use of arrays? How does XMLBeans
handle programatic additions to the number of elements in an XML document
for example?
Reference: from Sun site "The length of the array must be specified when it
is created. You can use the new operator to create an array, or you can use
an array initializer. Once created, the size of the array cannot change. To
get the length of the array, you use the length attribute"
[2] If you have an existing object model which utilises HashMap and you
wanted to use XMLBeans as a toolkit to assist in creating XML from java,
what is the normal approach noting XMLBeans does not support collections?
No doubt an adaptor type layer to convert data between the existing java
domain model (i.e. with a hashmap) to the XMLBean generated java classes
(which use arrays). Seems to still be some manual effort here.
Greg
"Arek Stryjski" <[email protected]> wrote in message
news:[email protected]...
>>
Wondering if there are plans to add support for java collections to thegenerated
multi-occurence methods?
It would be useful to be able to do things like this:
Collection items = myPO.getItemCollection();
items.removeAll();
Or
Iterator itemIt = myPO.getItemIterator();
..I disagree. In my opinion using comfortable array manipulation methods is
one of the advantages comparing XMLBeans to JAXB.
Most of the time you don't use only:
Iterator itemIt = myPO.getItemIterator();
But you need to put it in for loop. And then you need to make cast foreach
object in Iterator. This doesn't make code simpler, and it perform longer.
Then you get whole array you can do all operation like on Iterator butthere
is no cast needed.
To remove all elements you can just set an empty array to parent node.
The only case then Collections could be more comfortable then array willbe
sorting elements. I believe that then XMLBeans will support XQuery it will
be also possible to make it simple without Collections.
So if in future you plan to add Collection methods pleas leave also ones
which operate on arrays.
Regards
Arek

Similar Messages

  • Generating multi-level xml in oracle

    Hi,
    I want to create a multi-level XML structure from oracle, is there a way?
    Presently oracle provides DBMS_XMLQUERY and XMLGEN package to generated XML structure given a query. But the structure so generated is of single level. That is say I use
    select XMLGEN.getXML('select * from employees') from dual;
    the output is
    <EMPLOYEE>
    <ROW num="1">
    <NAME>Mark</NAME>
    <TEL>451-638191</TEL>
    </ROW>
    </EMPLOYEE>
    That I call a single level output.
    To create a multiple level XML I went in for object type in oracle. But the problem with this is that if I want to have multiple children for a single parent then object types fail. The structure below is not possible with object type.
    <EMPLOYEE>
    <ROW num="1">
    <NAME>Mark</NAME>
    <CONTACT>
    <ROW>
    <RESIDENCE>
    <ADDRESS>
         <ROW>
         Fifth Avenue, New York
         </ROW>
    </ADDRESS>
    <TEL>
         <ROW>451-638191</ROW>
         <ROW>451-638192</ROW>
         <ROW>451-638193</ROW>
    </TEL>
    </RESIDENCE>
    </ROW>
    <ROW>
    <RESIDENCE>
    <ADDRESS>
         <ROW>
         Fouth Avenue, New York
         </ROW>
    </ADDRESS>
    <TEL>
         <ROW>452-638191</ROW>
         <ROW>452-638192</ROW>
         <ROW>452-638193</ROW>
    </TEL>
    </RESIDENCE>
    </ROW>
    </CONTACT>
    </ROW>
    </EMPLOYEE>
    Then I tried nested tables. Here one needs to create an object type to create a table type. One cannot create a table type out of another table type. So that leavs me with 2 levels
    object type
    used by
    table type
    used by
    table.
    Presently to generated a multi-level output as shown above I'm using cursors and build it in a clob variable.
    Is there any other way that one can build a multi-level structure. Or is there a build in package that comes with orace 8i (and higher).
    Regards,
    Milton.

    Milton,
    I was able to generate hierarchical XML from Oracle using object views and XML-SQL Utility (XSU).
    Here is a simplified version of my OR schema:
    /* Physical spec object */
    create or replace type physical_specifications_object as object (
    physical_specifications_id number(15),
    page_count number(10),
    product_id number(10),
    four_color_count number(10),
    two_color_count number(10),
    table_count number(10),
    binding_type varchar2(100),
    height varchar2(20),
    width varchar2(20)
    /* Market object */
    create or replace type market_object as object (
    market_id number(15),
    master_class_name varchar2(50),
    market_name varchar2(100),
    market_type varchar2(100),
    market_description varchar2(500),
    level_rank varchar2(15),
    market_code varchar2(100),
    product_id number(10)
    /* List of markets */
    create or replace type market_table as table of market_object;
    /* Market object view */
    create or replace view market_object_view of market_object
    with object identifier (market_id) as
    select mkt.market_id,
    class.master_class_name,
    mkt.market_name,
    mkt.market_type,
    mkt.market_description,
    prod_mkt.level_rank,
    mkt.market_code,
    p.product_id
    from market mkt,
    product p,
    product_market prod_mkt,
    master_class class
    where p.product_id = prod_mkt.product_id
    and prod_mkt.market_id = mkt.market_id
    and mkt.master_class_id = class.master_class_id(+);
    /* Feature object */
    create or replace type product_feature_object as object (
    feature_id number(15),
    feature_text varchar2(3500),
    feature_type varchar2(100)
    /* List of features */
    create or replace type product_feature_table as table of product_feature_object;
    /* Product object */
    create or replace type product_object as object (
    product_id number(10),
    title varchar2(150),
    media_type varchar2(20),
    standard_number varchar2(100),
    physical_specifications physical_specifications_object,
    markets market_table,
    product_features product_feature_table
    /* Product object view */
    create or replace view product_object_view of product_object
    with object identifier (product_id) as
    select p.product_id,
    p.title,
    p.media_type,
    p.standard_number,
    physical_specifications_object(spec.physical_specifications_id,
    spec.page_count,
    spec.product_id,
    spec.four_color_count,
    spec.two_color_count,
    spec.table_count,
    spec.binding_type,
    spec.height,
    spec.width),
    cast(multiset(select *
    from market_object_view mkt
    where mkt.product_id(+) = p.product_id) as market_table) as markets,
    cast(multiset(select f.feature_id, f.feature_text, f.feature_type
    from feature f
    where f.product_id = p.product_id) as product_feature_table) as product_features
    from product p,
    physical_specifications spec
    where p.product_id = spec.product_id(+)
    The objective is to generate XML for a product list with all the product subelements. The simple query "select * from product_object_view" when fed to the XML-SQL utility generates multi-level SQL. Note that Oracle 8i allows up to two level collection nesting in object types. Oracle 9i removes this limitation.
    Check XSU documentation at http://otn.oracle.com/docs/tech/xml/xdk_java/doc_library/Production9i/doc/java/xsu/xsu_userguide.html#1014886
    Hi,
    I want to create a multi-level XML structure from oracle, is there a way?
    Presently oracle provides DBMS_XMLQUERY and XMLGEN package to generated XML structure given a query. But the structure so generated is of single level. That is say I use
    select XMLGEN.getXML('select * from employees') from dual;
    the output is
    <EMPLOYEE>
    <ROW num="1">
    <NAME>Mark</NAME>
    <TEL>451-638191</TEL>
    </ROW>
    </EMPLOYEE>
    That I call a single level output.
    To create a multiple level XML I went in for object type in oracle. But the problem with this is that if I want to have multiple children for a single parent then object types fail. The structure below is not possible with object type.
    <EMPLOYEE>
    <ROW num="1">
    <NAME>Mark</NAME>
    <CONTACT>
    <ROW>
    <RESIDENCE>
    <ADDRESS>
         <ROW>
         Fifth Avenue, New York
         </ROW>
    </ADDRESS>
    <TEL>
         <ROW>451-638191</ROW>
         <ROW>451-638192</ROW>
         <ROW>451-638193</ROW>
    </TEL>
    </RESIDENCE>
    </ROW>
    <ROW>
    <RESIDENCE>
    <ADDRESS>
         <ROW>
         Fouth Avenue, New York
         </ROW>
    </ADDRESS>
    <TEL>
         <ROW>452-638191</ROW>
         <ROW>452-638192</ROW>
         <ROW>452-638193</ROW>
    </TEL>
    </RESIDENCE>
    </ROW>
    </CONTACT>
    </ROW>
    </EMPLOYEE>
    Then I tried nested tables. Here one needs to create an object type to create a table type. One cannot create a table type out of another table type. So that leavs me with 2 levels
    object type
    used by
    table type
    used by
    table.
    Presently to generated a multi-level output as shown above I'm using cursors and build it in a clob variable.
    Is there any other way that one can build a multi-level structure. Or is there a build in package that comes with orace 8i (and higher).
    Regards,
    Milton.

  • VLD-1119: Unable to generate Multi-table Insert statement for some or all t

    Hi All -
    I have a map in OWB 10.2.0.4 which is ending with following error: -
    VLD-1119: Unable to generate Multi-table Insert statement for some or all targets.*
    Multi-table insert statement cannot be generated for some or all of the targets due to upstream graphs of those targets are not identical on "active operators" such as "join".*
    The map is created with following logic in mind. Let me know if you need more info. Any directions are highly appreciated and many thanks for your inputs in advance: -
    I have two source tables say T1 and T2. There are full outer joined in a joiner and output of this joined is passed to an expression to evaluate values of columns based on
    business logic i.e. If T1 is available than take T1.C1 else take T2.C1 so on.
    A flag is also evaluated in the expression because these intermediate results needs to be joined to third source table say T3 with different condition.
    Based on value taken a flag is being set in the expression which is used in a splitter to get results in three intermediate tables based on flag value evaluated earlier.
    These three intermediate tables are all truncate insert and these are unioned to fill a final target table.
    Visually it is something like this: -
    T1 -- T3 -- JOINER1
    | -->Join1 (FULL OUTER) --> Expression -->SPLITTER -- JOINER2 UNION --> Target Table
    | JOINER3
    T2 --
    Please suggest.

    I verified that their is a limitation with the splitter operator which will not let you generate a multi split having more than 999 columns in all.
    I had to use two separate splitters to achieve what I was trying to do.
    So the situation is now: -
    Siource -> Split -> Split 1 -> Insert into table -> Union1---------Final tableA
    Siource -> Split -> Split 2 -> Insert into table -> Union1

  • How do I email the iTunes support? In the payment method I can't turn it to "none", it always is either a credit card(visa,MasterCard, Amex) I can't turn it to none. Thanks Alot.

    How do I email the iTunes support? In the payment method I can't turn it to "none", it always is either a credit card(visa,MasterCard, Amex) I can't turn it to none.
    Thanks A lot!,
    BOB

    HI Bob...
    Use the email form here >  Apple - Support - iTunes Store - Contact Us

  • Garbage collection of objects created inside a method

    I have method and inside the method I create new Objects I mean I instantiate objects using new and call some methods on these objects.
    once the method execution is completed and control goes to caller of the method will all the object created inside the method will be garbage collected ?
    here with code
               public List<StgAuditGeneral> getAudits(
              List<StgAuditGeneral>  audits= new ArrayList<StgAuditGeneral>();
                  for(Map<String, String> result :results ){
                   audits.add(new MapToObject<StgAuditGeneral>() {
                        @Override
                        public StgAuditGeneral getObject() {
                                             StgAuditGeneral  stg= new StgAuditGeneral();
                             return stg;
                   }.getObject());
              }in the above method I cam creating tons of objects wil they be garbage collected immediatedly after jvm leaves the method ?

    user11138293 wrote:
    I have method and inside the method I create new Objects I mean I instantiate objects using new and call some methods on these objects.
    once the method execution is completed and control goes to caller of the method will all the object created inside the method will be garbage collected ?If there are no reachable references, to those objects, then when the method ends, they become eligible for GC. If and when they are actually collected is something we can't know or control, and generally don't care about. The only guarantee is that everything that can be collected will be collected before an OutOfMemoryError is thrown. So from our perspective, once it's eligible for collection, it is effectively collected.
    If you pass references to those objects to something else that holds onto them after the method ends, then they are still reachable, and not eligible for collection.
    However, you almost never need to even think about whether something is eligible for GC or not. It works pretty intuitively.

  • Is AP Module is support to have tow accounting method (Accrual and Cash)

    HI,
    Is AP Module is support to have tow accounting method (Accrual and Cash) work in the same responsibility?
    Is this supporting in account payable to have defined tow set of book one handle the accounting accrual method the other is handling the cash account method and I assign the tow method to same responsibility (Account Payable Super User) I want when I enter transaction for example: Invoice I can see it by tow accounting method (Accrual/cash) within the same responsibility
    Thanks

    Thanks for quick replay
    is there a workaround round me to achieve my issue
    Thanks

  • I taked this through with a mac support agent, but forgot the method, As my Opticle drive fefuses to burn a full ML dvd   Re setting be re starting and pressing some keys, Can you help?

    I taked this through with a mac support agent, but forgot the method, As my Opticle drive fefuses to burn a full ML dvd
    Re setting be re starting and pressing some keys, Can you help?

    I taked this through with a mac support agent, but forgot the method, As my Opticle drive fefuses to burn a full ML dvd
    Re setting be re starting and pressing some keys, Can you help?

  • Generating javascript from method ...getting unterminated string literal er

    Hello all,
    I am attempting to generate several links on a jsp that are generated by a method in my class file. Each link has an onmouseover event that will display a popup box that I got from dynamicdrive.com.
                    sb.append("<a href='#' onclick=openChatWindow('");
                    sb.append(roomName.getName()+"')  onMouseover=showmenu(event,"+getRoomOccupants(connx,roomName.getName())+") onMouseout=delayhidemenu()>");
                    sb.append(roomName.getName());
                    sb.append("</a><br><br>");The above code generates an "invalid xml syntax" error, the resultant html code viewed in firefox's js dubug window is:
    <p align="left">
    69 <h5>Available Chat Rooms</h5><br><a href='#' onclick=openChatWindow('aroom') onMouseover=showmenu(event,<p align=left><b>Empty</b></p>) onMouseout=delayhidemenu()>aroom</a><br><br><a href='#' onclick=openChatWindow('room2') onMouseover=showmenu(event,<p align=left><b>Empty</b></p>) onMouseout=delayhidemenu()>room2</a><br><br>
    70 </p>I also tried to add apostrophes within the mouseover event like so:
                    sb.append("<a href='#' onclick=openChatWindow('");
                    sb.append(roomName.getName()+"') onMouseover=showmenu(event,'"+getRoomOccupants(connx,roomName.getName())+"') onMouseout=delayhidemenu()>");
                    sb.append(roomName.getName());
                    sb.append("</a><br><br>");Now I get an "unterminated string literal" error and the resultant html code is:
    <p align="left">
    69 <h5>Available Chat Rooms</h5><br><a href='#' onclick=openChatWindow('aroom') onMouseover=showmenu(event,'<p align=left><b>Empty</b></p>') onMouseout=delayhidemenu()>aroom</a><br><br><a href='#' onclick=openChatWindow('room2') onMouseover=showmenu(event,'<p align=left><b>Empty</b></p>') onMouseout=delayhidemenu()>room2</a><br><br>
    70 </p>I know this is a syntax error but I cant figure it out.
    TIA!

    Try adding double quotes around the handler bodies. Example
    onMouseOver="showmenu(event, '....');"The forum syntax highlighter does not show any single quote mismatches.

  • "Service Advisor" option in CAM to try to collect support data ......

    I've tried using "Service Advisor" option in CAM to try to collect support data I get the error "The device has been unregistered from this application. Please close this service advisor window.".
    How to fix this?
    Thank you

    Hi.
    1. You can use command line for collect support data.
    /opt/SUNWsefms/bin/supportData -d <array_name> -p /tmp -o supportdata
    Result : /tmp/supportdata.zip
    2. For trubleshuting current problem, please show result of:
    cd /var/opt/SUNWsefms/store/Reports
    for i in report* cache*
    do
    echo $i
    perl -ane '/[^[:ascii:]]/ and print;' <  $i
    doneHow many arrays registered in the CAM ?
    Check that for this array work next point in CAM:
    -> Trubleshuting -> FRU
    -> Trubleshuting -> Events
    Regards.

  • The multi-level method of phase N1 in depreciation key IN2 has not been

    Hi Sap Guru
    below error is coming when giving  group asset number in depreciation area 15 while creating asset code AS01
    "The multi-level method of phase N1 in depreciation key IN2 has not been correctly maintained for acquisition year 2011"  anyone has any idea why it is so.
    thanking you advance
    Rajesh

    Hi
    Go to AFAMA - Dep key
    Select Dep key you have given and select details button
    You will find
    Dep type
    Phase----select From ordinary dep start of dep
    Base methd
    Declining methd
    Prd contl
    Multilev methd
    Class
    Change methd
    Multilple shift
    Scrap value.
    Thanks
    Anil

  • Help to give All Permissions to a JC App using the multi-jnlp method

    After gleaning what I could about providing All Permissions, it seems the multi-jnlp method is the best. I can't seem to get the access to work right though. There are three .jar files for my app (all created with Apple's Web Objects). One is from the main app. The other two are from frameworks. Below are the two .jnlp files that I've created to provide All Permissions for them. When I launch, I don't get any type of a security dialog. Any file system actions throw the access error still.
    If someone could help me configure these right to get all permissions working, I'd be thankful enough to send you a CD from my catalog. This problem has been plaguing the app for some time. It's preventing me from doing some really cool stuff.
    thanks,
    Jaime
    -- JavaClient.jnlp --
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp href="http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa/eowebstart/com.webobjects.eodistribution._EOWebStartAction/webStart/JavaClient.jnlp" spec="1.0+" codebase="http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa/wr">
    <information>
    <title>Work!</title>
    <vendor>Sensory Research</vendor>
    <homepage href="http://www.sensoryresearch.com" />
    <offline-allowed />
    </information>
    <resources>
    <j2se version="1.4+" />
         <jar download="eager" href="wojavaclient.jar"/>
         <extension name="ThoughtConduit" href="ThoughtConduit.jnlp"/>
    </resources>
    <application-desc main-class="com.webobjects.eoapplication.client.EOClientApplicationSupport">
         <argument>-applicationURL</argument>
    <argument>http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa</argument>
    <argument>-page</argument>
    <argument>JavaClient</argument>
    <argument>-suppressClassLoading</argument>
    <argument>true</argument>
    </application-desc>
    </jnlp>
    -- ThoughtConduit.jnlp --
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp href="http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa/eowebstart/com.webobjects.eodistribution._EOWebStartAction/webStart/JavaClient.jnlp" spec="1.0+" codebase="http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa/wr">
    <information>
    <title>ThoughtConduit</title>
    <vendor>Sensory Research</vendor>
         <homepage href="http://apollo.sensoryresearch.com:15000/cgi-bin/WebObjects/ThoughtConduit.woa"/>
    <description>Description</description>
    </information>
    <resources>
         <j2se version="1.4+"/>
    <jar download="eager" href="ThoughtConduitAuthentication.jar"/>
    <jar download="eager" href="ThoughtConduitWO.jar"/>
    </resources>
    <component-desc/>
    <security>
    �� <all-permissions/>
    </security>
    </jnlp>

    just a note - this may cause the problem:
    in the first jnlp file, you have codebase=".../ThoughtConduit.woa/wr", and
    <extension name="ThoughtConduit" href="ThoughtConduit.jnlp"/> , which makes the full reference to the extension jnlp file as:
    .../ThoughtConduit.woa/wr/ThoughtConduit.jnlp"
    but in the second jnlp file you show:
    <jnlp href=
    "...ThoughtConduit.woa/eowebstart/com.webobjects.eodistribution._EOWebStartAction/webStart/JavaClient.jnlp
    so the extension jnlp file re-references the main one as a pointer to itself.
    you should either omit the href in the extension jnlp file, or actually point to this file.
    /Dietz

  • JAXB is not generating the setter method for my tag

    Hi,
    I am generating java classes form my .xsd file using JAXB.
    The xsd definition has defnes a Form as a sequence of FormElement, where FormElement is a choice of graphical components like text etc. Form can have 0 or unbounded elements of typeFormElement
    Example
    <xs:element ref="sswfm:FormElement" minOccurs="0" maxOccurs="unbounded"/>
    It is creating the getter method for this tag like this-
    java.util.List getFormElement();
    but does not create setter method, namely, setFormElements which I would like to use when marshalling from swing to XML.
    If i remove the maxOccurs="unbounded, it is creating the setter method for this tag.But i want to keep this tag as it it and needs the setter method also.
    What should i do? Has one tried this before. HELP if you can
    Thank you in advance.

    Hi RavindraKshirsagar,
    We have a problem like you faced. Our requirement is that, we need to generate dynamically the PERSON element in our javabean.
    <xs:element name='SERVICE_REQUESTER'>
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref='ORGANIZATION' />
                        <xs:element ref='PERSON' maxOccurs='unbounded' />
                   </xs:sequence>
              </xs:complexType>
         </xs:element>For this maxOccurs, as JAXB is not generating any Setter Method. As we need to get data dynamically from external application. If you could help us in handling this case dynamically, it will be well and good.
    Please send us the script / code asap.

  • Are bridge methods generated for generic methods?

    I've recently come across the notion of bridge methods. They provide type safety while allowing for erasure. However, the only places where they've been mentioned is with your class extending a parameterized type. That is the only case mentioned with bridge methods in the JLS as well as:
    http://www.angelikalanger.com/GenericsFAQ/FAQSections/TechnicalDetails.html#Under which circumstances is a bridge method generated?
    So I've been wondering about generic methods. For example, Collections.max's signature looks like the following in the source:
    public static <T extends Object & Comparable<? super T>> T max(Collection<T> coll)
    and after erasure:
    public static Object max(Collection coll)
    However, one cannot simply pass any type of Collection to the max method, it must implement Comparable and whatnot. Therefore, my question is how does it do that? Mustn't there be some sort of bridge method or generic information in the class file? Else how can the compiler, by just looking at the erasure of generic methods, check type safety, do capture conversion, type inference, etc?

    Generic information is erased from the byte code. It is still there in the class file in the method signatures. That's how the compiler knows.

  • ADF test appmodule generates illegal java method call for Oracle binds

    I'm on the latest (likely) release of JDeveloper 10.1.3.
    ADF Business Components     10.1.3.36.73
    Java™ Platform     1.5.0_06
    Oracle IDE     10.1.3.36.73
    Struts Modeler Version     10.1.3.36.73
    UML Modelers Version     10.1.3.37.32
    Versioning Support     10.1.3.36.73
    Using ADF wizards, I've created a readonly view and modified the sql with a named bind variable.
    The sql is
    SELECT RaDocumentation.RA_DOC_ID,
    RaDocumentation.RA_DOC,
    RaDocumentation.MIME_TYPE
    ,dbms_lob.getlength(RaDocumentation.RA_DOC) bloblength
    FROM RA_DOCUMENTATION RaDocumentation
    where ra_doc_id = :blobKey
    Then I defined blobKey in the bind variables section to be type integer with default value of 0. When I run TEST on the appmodule, which only has this view defined in it, a prompt screen appears to ask for a new value for blobKey. When I press enter, an error screen appears saying
    Business Component Browser - java.lang.NoSuchMethodError
    oracle.jdbc.OraclePreparedStatement.setObjectAtName(Ljava/lang/String;Ljava/lang/Object;)V
    This JDeveloper application is generated "out-of-the-box", in that I did not change any defaults, etc from that which comes defaulted in standard JDeveloper 10.1.3. I did apply the most recent JDeveloper patches from Oracle's download site.
    Any suggestions as to the problem?

    I appreciate your help, but the problem is not yet solved.
    Below is the JDev log generated upon execution of the Browser. I do not see anything unusual.
    The log is the execution of JDev 10.1.3 after what I think is complete removal of all incarnations of anything relating to JDeveloper. All versions of JDev were deleted, all jdevhome directories. I found a OpenBaseJDBC.jar in the java extensions subdirectory and removed it.
    I then downloaded again the production JDev 10.1.3, executed it (it created its jdevhome directory in my home directory), and I updated with the required patch only (patch 5?), and restarted. Created application with a readonly view using a bind variable. Same error appeared. I did not find any suspect .jar files in the java directory.
    ----- JDev log output --
    /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java -classpath /Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/jlib/bc4jtester.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/jdev-cm.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/lib/xmlparserv2.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/help4.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/share.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/jewt4.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/oracle_ice.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/ojmisc.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/ui.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/laf.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/sunrsasign.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jsse.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jce.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/charsets.jar:/MyDeveloper/JDeveloperApplications/Model/classes:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/adfshare.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/bc4jmt.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/collections.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/bc4jct.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/commons-el.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/jsp-el-api.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jlib/oracle-el.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/adfm.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/jlib/adfui.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/adfbinding.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jdbc/lib/ojdbc14dms.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jdbc/lib/orai18n.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/jdbc/lib/ocrs12.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/diagnostics/lib/ojdl.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/lib/dms.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/lib/bc4jdomorcl.jar:/Applications/JDeveloper.app/Contents/Resources/jdev/BC4J/jlib/bc4jdatum.jar: oracle.jbo.jbotester.MainFrame -X 10E38CE209A -H jar:file:/Applications/JDeveloper.app/Contents/Resources/jdev/jdev/doc/studio_doc/ohj/bc4j_f1.jar!/bc4j_f1.hs
    2006-10-11 14:16:44.546 java[717] CFLog (0): CFMessagePort: bootstrap_register(): failed 1103 (0x44f), port = 0x13703, name = 'java.ServiceProvider'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2006-10-11 14:16:44.547 java[717] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (java.ServiceProvider)
    BC4J Tester exit code(0)
    -- JDev log output end --

  • Adobe Creative Suite 5 Master Collection - Support Fehler:5

    Ich habe Adobe Creative Suite 5 Master Collection installiert und möchte ein Programm aufrufen und bekomme immer als Rückmeldung "Support Fehler:5".
    Könnte jemand wissen, was es bedeutet bzw. mit einer lösung dienen, die mir weiter helfen könnte ?
    Were sehr nett

    Kommt dabei eine Fehlermeldung die lautet:
    "Die Lzensierung für dieses Produkt funktioniert nicht mehr" oder "Licensing for this product stopped working"?

Maybe you are looking for

  • There is no iView available for system "SAP_ERP_Manufacturing"...

    Hi out there, I have imported the business packages Common Parts 1.2 and Maintenance Technician 1.2 in our portal testsystem (nw7, sps18). after setting up a system with alias SAP_ECC_MANUFACTURING and asigning the role com.sap.pct.erp.maintech.maint

  • Problem seeing all of the photo folders in itunes

    I own two apple tvs. When I open itunes to manage the content on the apple tv and click on the photos tab it cuts off the folders so I can't see them all. I've tried closing itunes and reopening as well as restarting my machine but to no avail. The p

  • Oracle 8i database hangs for the same amount during JDBC calls.

    Hi all, I have a Oracle 8i database on solaris. The database hangs for exactly 61 seconds for a random jdbc call from my Java application, i mean there is no particular pattern or a JDBC call for which the database hangs. If i choose to wait for 61 s

  • How did my Air get Hijacked?

    I hope this is the correct section for this question. I was trying to use my MBA in an Airport lounge when very strange things started to happen. The cursor started to erratically select things on the screen, jumping around on its own and both left a

  • A query on a small benchmark test.

    I ran a small code snippet from a book I am reading and was surprised by the results. The code calls an empty method and also a method with a variables assignment as the body. I figured the empty method call should have been quicker but it is consist