Error trying to register a Java event listener

I'm trying to register a java event listener in 11g with the following piece of code:
DECLARE
b BOOLEAN := FALSE;
BEGIN
b := DBMS_XDB.createFolder('/public/resconfig');
b := DBMS_XDB.createResource(
'/public/resconfig/hr_event.xml',
'<ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd
http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
<event-listeners default-language="Java">
<listener>
<description>Category application</description>
<schema>HR</schema>
<source>xdbproject.OpenOfficeEventHandler</source>
<language>Java</language>
<events>
<Post-Create/>
<Post-LinkIn/>
</events>
</listener>
</event-listeners>
<defaultChildConfig>
<configuration>
<path>/public/resconfig/hr_event.xml</path>
</configuration>
</defaultChildConfig>
</ResConfig>');
END;
This results in the following error message
ORA-31146: Ugyldig lytterkilde HR.xdbproject.OpenOfficeEventHandler
ORA-06512: ved "XDB.DBMS_XDB", line 174
ORA-06512: ved line 5
which translates to Invalid listener source.
My class is loaded in the HR schema, and implements the XDBRepositoryEventListener
Does anybody have a suggestion to what I'm doing wrong, or how I can find out what makes my class invalid as a listener source?

Check if it validates against the restrictions set in the XML Schema (Appendix A, Oracle XMLDB Developers Guide):
XDBResConfig.xsd: XML Schema for Resource Configuration
This section presents the Oracle XML DB supplied XML schema used to configure repository resources. This is accessible in Oracle XML DB Repository at path /sys/schemas/PUBLIC/xmlns.oracle.com/xdb/XDBResConfig.xsd.
XDBResConfig.xsd
<schema xmlns="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
        xmlns:xdb="http://xmlns.oracle.com/xdb"
        xmlns:rescfg="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
        elementFormDefault="qualified" xdb:schemaOwner="XDB" version="1.0" >
  <annotation>
    <documentation>
      This XML schema declares the schema of an XDB resource configuration,
      which includes default ACL, event listeners and user configuration.
      It lists all XDB repository events that will be supported.
      Future extension can be added to support user-defined events and
      XML events.
    </documentation>
  </annotation>
  <simpleType name="language">
    <restriction base="string">
      <enumeration value="Java" />
      <enumeration value="C" />
      <enumeration value="PL/SQL" />
    </restriction>
  </simpleType>
  <complexType name = "existsNode">
     <all>
       <element name="XPath" type = "string" minOccurs="1" maxOccurs="1" />
       <element name="namespace" type = "string" minOccurs="0" maxOccurs="1" />
     </all>
  </complexType>
  <!-- listener pre-condition element  -->
  <complexType name = "condition">
     <all>
       <element name="existsNode" type = "rescfg:existsNode" minOccurs="0" maxOccurs="1" />
     </all>
  </complexType>
  <complexType name = "events">
    <all>
      <element name="Render" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Create" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Create" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Delete" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Delete" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Update" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Update" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Lock" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Lock" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Unlock" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Unlock" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-LinkIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-LinkIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-LinkTo" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-LinkTo" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-UnlinkIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-UnlinkIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-UnlinkFrom" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-UnlinkFrom" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-CheckIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-CheckIn" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-CheckOut" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-CheckOut" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-UncheckOut" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-UncheckOut" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-VersionControl" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-VersionControl" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-Open" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-Open" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Pre-InconsistentUpdate" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="Post-InconsistentUpdate" type="string" minOccurs="0" maxOccurs="1"/>
    </all>
  </complexType>
  <!-- event listener element  -->
  <complexType name = "event-listener">
    <all>
      <element name="description" type = "string" minOccurs="0" maxOccurs="1"/>
      <element name="schema" type = "string" minOccurs="0" maxOccurs="1"/>
      <element name="source" type = "string" minOccurs="1" maxOccurs="1"/>
      <element name="language" type = "rescfg:language" minOccurs="0" maxOccurs="1"/>
      <element name="pre-condition" type = "rescfg:condition" minOccurs="0" maxOccurs="1"/>
      <element name="events" type = "rescfg:events" minOccurs="0" maxOccurs="1"/>
    </all>
  </complexType>
  <complexType name="event-listeners">
    <sequence>
      <element name="listener" type = "rescfg:event-listener" minOccurs="1" maxOccurs="unbounded"/>
    </sequence>
    <attribute name = "default-schema" type = "string" xdb:baseProp="true" use="optional"/>
    <attribute name = "default-language" type = "rescfg:language" xdb:baseProp="true"
               use="optional"/>
    <attribute name = "set-invoker" type = "boolean" xdb:baseProp="true" default="false" />
  </complexType>
  <complexType name="defaultPath">
    <all>
      <element name="pre-condition" type = "rescfg:condition" minOccurs="0" maxOccurs="1"/>
      <element name="path" type="string" minOccurs="0" maxOccurs="1" xdb:transient="generated"/>
      <element name = "resolvedpath" type = "string" minOccurs="1" maxOccurs="1"
               xdb:baseProp="true" xdb:hidden="true"/>
      <element name = "oid" type = "hexBinary" minOccurs="1" maxOccurs="1" xdb:baseProp="true"
               xdb:hidden="true"/>
    </all>
  </complexType>
  <complexType name="defaultACL">
    <sequence>
      <element name="ACL" type="rescfg:defaultPath" minOccurs="1" maxOccurs="unbounded"/>
    </sequence>
  </complexType>
  <complexType name = "defaultConfig">
    <sequence>
      <element name="configuration" type="rescfg:defaultPath" minOccurs="1" maxOccurs="unbounded"/>
    </sequence>
  </complexType>
  <simpleType name="link-type">
    <restriction base="string">
      <enumeration value="None"/>
      <enumeration value="Hard"/>
      <enumeration value="Weak"/>
      <enumeration value="Symbolic"/>
    </restriction>
  </simpleType>
  <simpleType name="path-format">
    <restriction base="string">
      <enumeration value="OID"/>
      <enumeration value="Named"/>
    </restriction>
  </simpleType>
  <simpleType name="link-metadata">
    <restriction base="string">
      <enumeration value="None"/>
      <enumeration value="Attributes"/>
      <enumeration value="All"/>
    </restriction>
  </simpleType>
  <simpleType name="unresolved-link">
    <restriction base="string">
      <enumeration value="Error"/>
      <enumeration value="SymLink"/>
      <enumeration value="Skip"/>
    </restriction>
  </simpleType>
  <simpleType name="conflict-rule">
    <restriction base="string">
      <enumeration value="Error"/>
      <enumeration value="Overwrite"/>
      <enumeration value="Syspath"/>
    </restriction>
  </simpleType>
   <simpleType name="section-type">
     <restriction base="string">
       <enumeration value="None"/>
       <enumeration value="Fragment"/>
       <enumeration value="Document"/>
     </restriction>
   </simpleType>
  <!-- XLinkConfig complex type -->
    <complexType name="xlink-config">
     <sequence>
      <element name="LinkType" type = "rescfg:link-type"/>
      <element name="PathFormat" type = "rescfg:path-format" minOccurs="0" default="OID"/>
      <element name="LinkMetadata" type = "rescfg:link-metadata" minOccurs="0" default="None"/>
     </sequence>
     <attribute name="UnresolvedLink" type = "rescfg:unresolved-link" default="Error"/>
    </complexType>
  <!-- XIncludeConfig element -->
    <complexType name="xinclude-config">
     <sequence>
      <element name="LinkType" type = "rescfg:link-type"/>
      <element name="PathFormat" type = "rescfg:path-format" minOccurs="0" default="OID"/>
      <element name="ConflictRule" type = "rescfg:conflict-rule" minOccurs="0" default="Error"/>
     </sequence>
     <attribute name="UnresolvedLink" type = "rescfg:unresolved-link" default="Error"/>
    </complexType>
  <!-- SectionConfig element -->
  <complexType name="section-config">
   <sequence>   
    <element name="Section" maxOccurs="unbounded">
      <complexType>
        <sequence>
         <element name="sectionPath" type="string"/>
         <element name="documentPath" type="string" minOccurs="0"/>
         <element name="namespace" type="string" minOccurs="0"/>
        </sequence>
        <attribute name="type" type="rescfg:section-type" default="None"/>
      </complexType>
    </element>
   </sequence>
  </complexType>
  <!-- ContentFormat element -->
  <simpleType name="content-format" >
    <restriction base="string">
      <enumeration value="text"/>
      <enumeration value="binary"/>
    </restriction>
   </simpleType>
  <!-- resource configuration element  -->
  <complexType name = "ResConfig">
    <all>
      <element name="defaultChildConfig" type="rescfg:defaultConfig" minOccurs="0"  maxOccurs="1"/>
      <element name="defaultChildACL" type="rescfg:defaultACL" minOccurs="0" maxOccurs="1"/>
      <element name="event-listeners" type = "rescfg:event-listeners" minOccurs="0" maxOccurs="1"/>
      <element name="XLinkConfig" type="rescfg:xlink-config" minOccurs="0" maxOccurs="1"/>
      <element name="XIncludeConfig" type="rescfg:xinclude-config" minOccurs="0" maxOccurs="1"/>
      <element name="SectionConfig" type="rescfg:section-config" minOccurs="0" maxOccurs="1"/>
      <element name="ContentFormat" type="rescfg:content-format" minOccurs="0" maxOccurs="1"/>
      <!-- application data -->
      <element name="applicationData" minOccurs="0" maxOccurs="1" >
         <complexType>
           <sequence>
             <any namespace="##other" maxOccurs="unbounded" processContents="lax"/>
           </sequence>
         </complexType>
     </element>
    </all>
    <attribute name = "enable" type = "boolean" xdb:baseProp="true" default="true" />
    <attribute name = "copy-on-inconsistent-update" type = "boolean" use="optional" />
  </complexType>
  <element name="ResConfig" type="rescfg:ResConfig" xdb:defaultTable = "XDB$RESCONFIG" />
</schema>
acl.xsd: XML Schema for ACLs
This section presents the Oracle Database supplied XML schema used to represent access control lists (ACLs).
acl.xsd
<schema xmlns="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://xmlns.oracle.com/xdb/acl.xsd" version="1.0"
        xmlns:xdb="http://xmlns.oracle.com/xdb"
        xmlns:xdbacl="http://xmlns.oracle.com/xdb/acl.xsd"
        elementFormDefault="qualified">
   <annotation>
     <documentation>
        This XML schema describes the structure of XDB ACL documents.
        Note : The "systemPrivileges" element below lists all supported
          system privileges and their aggregations.
          See dav.xsd for description of DAV privileges
        Note : The elements and attributes marked "hidden" are for
          internal use only.
     </documentation>
     <appinfo>
       <xdb:systemPrivileges>
        <xdbacl:all>
          <xdbacl:read-properties/>
          <xdbacl:read-contents/>
          <xdbacl:read-acl/>
          <xdbacl:update/>
          <xdbacl:link/>
          <xdbacl:unlink/>
          <xdbacl:unlink-from/>
          <xdbacl:write-acl-ref/>
          <xdbacl:update-acl/>
          <xdbacl:link-to/>
          <xdbacl:resolve/>
          <xdbacl:write-config/>
        </xdbacl:all>
       </xdb:systemPrivileges>
     </appinfo>
   </annotation>
  <!-- privilegeNameType (this is an emptycontent type) -->
  <complexType name = "privilegeNameType"/>
  <!-- privilegeName element
       All system and user privileges are in the substitutionGroup
       of this element.
    -->
  <element name = "privilegeName" type="xdbacl:privilegeNameType"
           xdb:defaultTable=""/>
  <!-- all system privileges in the XDB ACL namespace -->
  <element name = "read-properties" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "read-contents" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "read-acl" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "update" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "link" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "unlink" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "unlink-from" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "write-acl-ref" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "update-acl" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "link-to" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "resolve" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <element name = "all" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
  <!-- privilege element -->
  <element name = "privilege" xdb:defaultTable="">
    <complexType>
      <sequence>
        <any maxOccurs="unbounded" processContents="lax"/>
      </sequence>
    </complexType>
  </element>
  <!-- ace element -->
  <element name = "ace" xdb:defaultTable="">
    <complexType>
      <sequence>
        <element name = "grant" type = "boolean"/>
        <choice>
          <element name="invert" xdb:transient="generated">
            <complexType>
              <sequence>
                <element name="principal" type="string"
                         xdb:transient="generated" />
              </sequence>
            </complexType>
          </element>
          <element name="principal" type="string" xdb:transient="generated"/>
        </choice>
        <element ref="xdbacl:privilege" minOccurs="1"/>
        <!-- "any" contain all app info for an ACE e.g.reason for creation -->
        <any minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
        <!-- HIDDEN ELEMENTS -->
        <choice minOccurs="0">
          <element name = "principalID" type = "hexBinary"
                   xdb:baseProp="true" xdb:hidden="true"/>
          <element name = "principalString" type = "string"
                   xdb:baseProp="true" xdb:hidden="true"/>
        </choice>
        <element name = "flags" type = "unsignedInt" minOccurs="0"
                 xdb:baseProp="true" xdb:hidden="true"/>
      </sequence>
      <attribute name = "collection" type = "boolean"
                 xdb:transient="generated" use="optional"/>
      <attribute name = "principalFormat"
                 xdb:transient="generated" use="optional">
        <simpleType>
          <restriction base="string">
            <enumeration value="ShortName"/>
            <enumeration value="DistinguishedName"/>
            <enumeration value="GUID"/>
            <enumeration value="XSName"/>
          </restriction>   
        </simpleType>
      </attribute>
      <attribute name = "start_date" type = "dateTime" use = "optional"/>
      <attribute name = "end_date" type = "dateTime" use = "optional"/>    
    </complexType>
  </element>
  <!-- acl element -->
  <complexType name="inheritanceType">
    <attribute name="type" type="string" use="required"/>
    <attribute name="href" type="string" use="required"/>
  </complexType>
  <complexType name="aclType">
   <sequence>
    <element name = "schemaURL" type = "string" minOccurs="0"
             xdb:transient="generated"/>
    <element name = "elementName" type = "string" minOccurs="0"
             xdb:transient="generated"/>
    <element name = "security-class" type = "QName" minOccurs="0"/>
    <choice minOccurs="0">
      <element name="extends-from" type="xdbacl:inheritanceType"/>
      <element name="constrained-with" type="xdbacl:inheritanceType"/>
    </choice>
    <element ref = "xdbacl:ace" minOccurs="1" maxOccurs = "unbounded"/>
    <!-- this "any" contains all application specific info for an ACL,
         e.g., reason for creation  -->
    <any minOccurs="0" maxOccurs="unbounded" namespace="##other" />
    <!-- HIDDEN ELEMENTS -->
    <element name = "schemaOID" type = "hexBinary" minOccurs="0"
             xdb:baseProp="true" xdb:hidden="true"/>
    <element name = "elementNum" type = "unsignedInt" minOccurs="0"
             xdb:baseProp="true" xdb:hidden="true"/>
   </sequence>
   <attribute name = "shared" type = "boolean" default="true"/>
   <attribute name = "description" type = "string"/>
  </complexType>
  <complexType name="rule-based-acl">
    <complexContent>
      <extension base="xdbacl:aclType">
        <sequence>
          <element name = "param" minOccurs="0" maxOccurs="unbounded">
            <complexType>
              <simpleContent>
                <extension base="string">
                  <attribute name = "name" type = "string" use = "required"/>
                </extension>
              </simpleContent>
            </complexType>
          </element>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <element name = "acl" type="xdbacl:aclType" xdb:defaultTable = "XDB$ACL"/>
  <element name = "write-config" type="xdbacl:privilegeNameType"
           substitutionGroup="xdbacl:privilegeName" xdb:defaultTable=""/>
</schema>Message was edited by:
Marco Gralike

Similar Messages

  • 500 error trying to register OmniPortlet Producer

    (Disclaimer: The following post is from a JDeveloper/WebCenter newbie)
    Following Section 3.7 in Tutorial for Oracle WebCenter Developers 11g, I am trying to register the OmniPortlet Producer in JDeveloper. I've got the preconfigured OC4J running and can access the producer test page at http://127.0.0.1:6688/portalTools/omniPortlet/providers/omniPortlet just fine using a browser. However, when I try to register the producer per outlined steps in the tutorial, I get the following Registration Error:
    oracle.portlet.client.container.PortletHttpException: HTTP registerProvider request to URL http://127.0.0.1:6688/portalTools/omniPortlet/providers/omniPortlet failed with status code 500 reason Server Error. Check that the producer URL has been correctly specified, that the producer server machine and producer container are running, that the producer application is deployed correctly, and that the client can reach the server if behind a firewall.
         at oracle.portlet.client.techimpl.web.WebClientImpl.handleException(WebClientImpl.java:340)
         at oracle.portlet.client.techimpl.web.WebClientImpl.registerProducer(WebClientImpl.java:553)
         at oracle.portlet.client.techimpl.web.WebClientImpl.register(WebClientImpl.java:2447)
         at oracle.portlet.client.techimpl.web.WebClientImpl.createProducer(WebClientImpl.java:3582)
         at oracle.portlet.client.containerimpl.web.WebProducerFactoryImpl._createProducer(WebProducerFactoryImpl.java:130)
         at oracle.portlet.client.containerimpl.web.WebProducerFactoryImpl.createProducer(WebProducerFactoryImpl.java:107)
         at oracle.adfinternal.model.portlet.manager.PortletProviderManager.registerWebProducer(PortletProviderManager.java:1739)
         at oracle.adfinternal.model.portlet.manager.PortletProviderManager.registerPortletProvider(PortletProviderManager.java:554)
         at oracle.adfdtinternal.model.portlet.wizards.registration.web.WebProducerRegUtil.registerOrUpdateProducer(WebProducerRegUtil.java:320)
         at oracle.adfdtinternal.model.portlet.wizards.registration.web.WebProducerRegistrationWizard$1.doWork(WebProducerRegistrationWizard.java:444)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:161)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:615)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.portlet.client.container.PortletHttpRuntimeException: HTTP registerProvider request to URL http://127.0.0.1:6688/portalTools/omniPortlet/providers/omniPortlet failed with status code 500 reason Server Error. Check that the producer URL has been correctly specified, that the producer server machine and producer container are running, that the producer application is deployed correctly, and that the client can reach the server if behind a firewall.
         at oracle.portlet.client.connection.web.SOAPInvocationHandler._invoke(SOAPInvocationHandler.java:181)
         at oracle.portlet.client.connection.web.SOAPInvocationHandler.invoke(SOAPInvocationHandler.java:77)
         at $Proxy64.registerProvider(Unknown Source)
         at oracle.portlet.client.connection.web.WebProducerInteraction.registerProvider(WebProducerInteraction.java:51)
         at oracle.portlet.client.techimpl.web.WebClientImpl.registerProducer(WebClientImpl.java:527)
         ... 11 more
    Any ideas on what can be going wrong?

    Hi,
    here's the WebCenter forum link: WebCenter Portal
    Frank

  • 6 errors trying to compile TalkClientApplet.java

    Hello:
    Trying to compile TalkClientApplet.java at:
    http://java.sun.com/docs/books/tutorial/deployment/applet/ex5/TalkClientApplet.java
    on the jdk1.5.0_06, Windows XP, and I received the following errors:
    TalkClientApplet.java:94:incomparable types:boolean and <nulltype>
    if(receivedThread ==null){
    TalkClientApplet.java:99:incompatible types
    found:java.lang.Thread
    required:boolean
    receiveThread=new Thread(this);
    TalkClientApplet.java:100:boolean cannot be dereferenced
    receiveThread.start();
    TalkClientApplet.java:150:incompatible types
    found :<nulltype>
    required:boolean
    receiveThread=null;
    TalkClientApplet.java:186:incomparable types:boolean and <nulltype>
    if(receiveThread==null){
    TalkClientApplet.java:258:incomparable types:java.lang.Thread and
    boolean while (Thread.currentThread()==receiveThread){
    Thanks in advance for your help.

    Hello:
    I am following the code from:
    http://java.sun.com/docs/books/tutorial/deployment/applet/ex5/TalkClientApplet.java
    which was pointed to from:
    http://java.sun.com/docs/books/tutorial/deployment/applet/workaround.html
    This is the section:
    private void start(boolean onEDT) {       
    if (DEBUG) {
    System.out.println("In start() method.");
    if (receiveThread == null) {
    trysted = false;
    os = null;
    is = null;
    socket = null;
    receiveThread = new Thread(this);
    receiveThread.start();
    if (DEBUG) {
    System.out.println(" Just set everything to null and started thread.");
    enableGUI(onEDT);
    Thanks

  • Error trying to register a JSF Bridge Portlet in Tech Preview 3

    Hi,
    If anyone has encountered this situation before, or has any advice as to a cause/cure, it would be greatly appreciated!
    I'm following the instructions in the WebCeter Developer Guide - 'Creating Portlets with the JSP Portlet Bridge', and have completed thest steps:
    1. Started the preconfigured OC4J and registered the sample PDK and WSRP sample Portlets successfully to the Resource Pallette
    2. Created an application based on the WebCenter Portlet template
    3. Created a connection to the OC4J instance
    4. Created a basic jspx page containing an af:PanelContainer and af:Table, bound to a Data Control (which runs fine)
    5. Created a portlet.xml ffile, using the 'Create Portlet Entry' for that page
    6. Deployed the application to OC4J, and am able to successfully view the WSDL via the resulting URL
    (http://localhost:6688/MyST-ViewController-context-root/portlets/wsrp2?WSDL)
    7. Tried to create a new Resource Palette WSRP Producer Connection based on this URL as the producer Endpoint
    And it stops me dead there with this error:
    oracle.portlet.client.container.PortletHttpRuntimeException: HTTP <unknown method> request to url http://localhost:6688/MyST-ViewController-context-root/portlets/wsrp2?WSDL failed with status code 500 reason <unknown reason>. Please check that the producer url has been correctly specified, that the producer server machine and producer container are running, that the producer application is deployed correctly, and that the client can reach the server if behind a firewall.
         at oracle.portlet.client.connection.wsrp.ActivityServerWrapper.checkAndReturnHttpException(ActivityServerWrapper.java:57)
         at oracle.portlet.client.connection.wsrp.ActivityServerWrapper.getServiceDescription(ActivityServerWrapper.java:2177)
         at oracle.portlet.client.connection.wsrp.WSRPProducerInteractionHelper.getRegistrationProperties(WSRPProducerInteractionHelper.java:218)
         at oracle.portlet.client.connection.wsrp.WSRPProducerInteractionHelper.getRegistrationProperties(WSRPProducerInteractionHelper.java:206)
         at oracle.portlet.client.connection.wsrp.WSRPProducerInteractionV2Impl.getRegistrationProperties(WSRPProducerInteractionV2Impl.java:76)
         at oracle.portlet.client.connection.wsrp.WSRPProducerConnection.getRemoteRegistrationProperties(WSRPProducerConnection.java:418)
         at oracle.portlet.client.connection.wsrp.WSRPProducerConnection.getAvailableRegistrationProperties(WSRPProducerConnection.java:392)
         at oracle.portlet.client.connection.wsrp.WSRPProducerConnection.getAvailableRegistrationProperties(WSRPProducerConnection.java:358)
         at oracle.adfinternal.model.portlet.manager.ProducerConnectionManager.createWSRPProducerConnection(ProducerConnectionManager.java:442)
         at oracle.adfdtinternal.model.portlet.wizards.registration.wsrp.WSRPProducerRegistrationWizard$4$1.doWork(WSRPProducerRegistrationWizard.java:1464)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:161)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:615)
         at java.lang.Thread.run(Thread.java:595)

    I don't know what I was doing wrong, but I was fortunate in that this is a relatively small pilot app, so I tried creating a new WebCenter Application and performing these basic steps again within that application, and it worked!
    I would still appreciate the feedback, if anyone has a suspicion of what would have caused this condition, just to avoid repeating it.

  • Error trying to acces to the event subscriptions from the events web page

    Hi all,
    I receive the following error when I try to acces to the event suscriptions link from the events page.
    Error: 3814: Please load Event System Seed Data before accessing this function.
    Somebody knows what that means?.
    Thanks in advance.
    Fernando

    Please review the Workflow Server Installation instructions. There is a post install step for Workflow Server 2.6.0 only which requires you to runa SQL script to upload seed data. If you have any further issues with your install, please log an iTAR with Oracle Support via Metalink.
    Hi all,
    I receive the following error when I try to acces to the event suscriptions link from the events page.
    Error: 3814: Please load Event System Seed Data before accessing this function.
    Somebody knows what that means?.
    Thanks in advance.
    Fernando

  • [Bug?] DSC - Registering for Server Events

    [LV2009, Win 7 Pro]
    Howdy (Ben S another one for you? )
    I am trying to register for alarm events.
    This works fine by using the Register for Shared Variable Events method.
    Since I have a lot of SVs and a dedicated server, I thought listen to the server would be much easier to implement.
    The LabVIEW Help implies that using the Request System Event Notifications.vi will do the trick:
    However, I can't seem to Register for Server Events - it doesn't work.
    The code seems quite simple (below) - I just want to listen to all SVs on the localhost (default).
    All the Events are coming through to the DSC (viewed in MAX), however, using the Server method I don't get any notifications through the Event Structure.
    Am I doing something wrong? - Or is this a bug?
    Is there somewhere I need to configure stuff?
    Or does it just not send me Alarm and Notification Events of Shared Variables?
    What does it send me then?
    I couldn't even get the Example in NI Example Finder to work (labview\examples\lvdsc\Event Structure Support).
    It shows the SV Registered Event but not the Server/System Event.
    Attached is a simple project I used to demonstrate this - a SV configured for a HiHi Alarm:
    The work around is to list out all Shared Variables and just read that from disk and load it into the application etc...
    However, it is much more desirable to subscribe to the server and get all SV Events - is this possible?
    Cheers
    -JG
    Certified LabVIEW Architect * LabVIEW Champion
    Attachments:
    DSC Server Events [LV2009].zip ‏20 KB

    Ravens Fan wrote:
    I think if you put in the fully qualified name for the network path and process and library on the other machine, you should be able to get the list.
    You'll have to try it and find out.
    Cheers for posting
    From the help - I didn't think this was possible?
    I gave it a go using the following naming 
    But I get the following error (I tried to connect to multiple SVE across our network and got the same error).
    I can use  though and it returns the local SV List, so I think I have the naming correct?
    <edit>
    My other thought is to build a hook in to the app and invoke this across the network using VI Server, so that it can run the VI on the localhost then report back the SV List).
    </edit>
    Certified LabVIEW Architect * LabVIEW Champion

  • How do I assign a mouseclick event Listener to a simplebutton already nested in a movie clip when it's dropped on stage?

    I'm trying to assign a mouseclick event listener to a simplebutton nested within a movie clip's later frames, starting at frame 2 and up. This card, however, is not added to my game until later, and when the player clicks on it/turns it over.
    There are four files involved in this program:
    #1 The main actionscript file, which corresponds to
    #2 my dreamQuester .fla file.
    #3 my artifactCard file movieClip's corresponding .as file,
    #4 my combo1.as file corresponding to a an instance of a simpleButton named combo1 that is already
    nested --and this instance is already named-- inside/as a child of said artifactCard movieclip.
    What I've done so far isn't working:
    In my main dreamQuester.as file, when a player clicks on an artifactCard, its MOUSE_DOWN event
    listener takes them to this function (clickArtCard), where the trouble is at:
    // player clicked on the artC card--which is a child of posArt1 on stage--to turn card over:
            function clickArtCard(a_event:MouseEvent) {
                var thisArtCard:artifactCard = (a_event.target as artifactCard);
                thisArtCard.gotoAndStop(unclickedArt1);  // go to frame number of artifact
                                    // card where combo1 button is.
                thisArtCard.removeEventListener(MouseEvent.CLICK,clickArtCard);
                thisArtCard.buttonMode = false;
                trace("combo1.combo is:" + combo1.combo);
                trace("posArt1.artC.combo1 is:" + posArt1.artC.combo1);
                posArt1.artC.combo1.addEventListener(MouseEvent.MOUSE_DOWN, comboClickedWHO);
    when the artC card--the static public instance of artifactCard--is clicked, it only gets to the
    trace("posArt1.artC.combo1 is:" + posArt1.artC.combo1); which returns this error message:  
    TypeError: Error #1010: A term is undefined and has no properties.
        at MethodInfo-61()
    So do how would I declare a static public variable of this simpleButton at the start of my main .as
    file to make it defined to get a mouseDown actionListener into my pre-existing-and-named-instance
    combo1 simpleButton?
    perhaps there is a way, while the debug movie program is running, to click on the simpleButton and see exactly
    what it's parent heirarchy is, to see the name of all parents above the simpleButton incase they are
    different then what I think?
    (just in case, I was hoping to squeeze a zip file containing these files to be less than 9MB incase someone was willing to look at my files to see what I've done so far, but 9 megs is just too big! even though all graphics I've imported where turned into vector graphics with trace bitmap. I wish there was a way to check the file size of each symbol in Flash CS4, here...)
    Thank you so much for any help!
    ~Ethan

    Just use a
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed);
    function keyPressed(event:KeyboardEvent):void {
         //trace(event.keyCode);
         if(event.keyCode == ???){
              // play the sound
    Where I show the "???" you would replace with the keyCode for the key you want pressed for that sound.  To determine the keyCode you can use the trace line that I have commented out.
    Note that when testing in Flash you often need to disable the keyboard shortcuts in the Flash Player in order to be able to use alot of the keys.  You will find this option in the Control menu options in the player.

  • ActiveJMS Java Bean Bridge - VB6 - ActiveX event listener

    I tried to run a simple ActiveJMS client in VB6 with SUN's broker. All steps have been successful until trying to compile and run the ActiveX in VB6 code.
    1) ************************************************************************************
    Code from the ActiveJMS samples (below): Compiles, but runtime error '429' on the 'Set' statement.
    Option Explicit
    Private WithEvents objActiveJMS As ActiveJMS.ActiveJMS
    Private Sub Form_Load()
    Set objActiveJMS = New ActiveJMS.ActiveJMS
    End Sub
    2) ************************************************************************************
    Changing the declaration and creation of objActiveJMS (below) made the application run until the event listener call. And then stop there with a runtime error 'java.lang.NoClassDefFoundError : org.activejms/ActiveJMS$2' .
    Option Explicit
    Dim objActiveJMS As Object
    Private Sub Form_Load()
    Set objActiveJMS = CreateObject("ActiveJMS.Bean.1")
    lngProvider = objActiveJMS.getProvider("${default}")
    lngConnectionFactory = objActiveJMS.lookupOnProvider(lngProvider, "EMERGENSYS")
    lngConnection = objActiveJMS.createTopicConnectionOnTopicConnectionFactory(lngConnectionFactory, "admin", "admin")
    lngReceiveSession = objActiveJMS.createTopicSessionOnTopicConnection(lngConnection, False, objActiveJMS.AutoAcknowledgeOnSession)
    lngTopic = objActiveJMS.createTopicOnTopicSession(lngReceiveSession, "MCAD")
    lngReceiver = objActiveJMS.createSubscriberOnTopicSession(lngReceiveSession, lngTopic, "", False)
    objActiveJMS.activateMessageListenerOnMessageConsumer lngReceiver
    objActiveJMS.startOnConnection (lngConnection)
    End Sub
    3) ***********************************************************************************
    - I did not use the .tbl file ; It has not been generated by packager.
    - I did also not use -clsid and -reg packager options.
    - I have been able to generate the .dll fille and register it.
    - I'm using j2sdk/jre 1.4.2_04
    Thanks in advance.

    I tried to run a simple ActiveJMS client in VB6 with SUN's broker. All steps have been successful until trying to compile and run the ActiveX in VB6 code.
    1) ************************************************************************************
    Code from the ActiveJMS samples (below): Compiles, but runtime error '429' on the 'Set' statement.
    Option Explicit
    Private WithEvents objActiveJMS As ActiveJMS.ActiveJMS
    Private Sub Form_Load()
    Set objActiveJMS = New ActiveJMS.ActiveJMS
    End Sub
    2) ************************************************************************************
    Changing the declaration and creation of objActiveJMS (below) made the application run until the event listener call. And then stop there with a runtime error 'java.lang.NoClassDefFoundError : org.activejms/ActiveJMS$2' .
    Option Explicit
    Dim objActiveJMS As Object
    Private Sub Form_Load()
    Set objActiveJMS = CreateObject("ActiveJMS.Bean.1")
    lngProvider = objActiveJMS.getProvider("${default}")
    lngConnectionFactory = objActiveJMS.lookupOnProvider(lngProvider, "EMERGENSYS")
    lngConnection = objActiveJMS.createTopicConnectionOnTopicConnectionFactory(lngConnectionFactory, "admin", "admin")
    lngReceiveSession = objActiveJMS.createTopicSessionOnTopicConnection(lngConnection, False, objActiveJMS.AutoAcknowledgeOnSession)
    lngTopic = objActiveJMS.createTopicOnTopicSession(lngReceiveSession, "MCAD")
    lngReceiver = objActiveJMS.createSubscriberOnTopicSession(lngReceiveSession, lngTopic, "", False)
    objActiveJMS.activateMessageListenerOnMessageConsumer lngReceiver
    objActiveJMS.startOnConnection (lngConnection)
    End Sub
    3) ***********************************************************************************
    - I did not use the .tbl file ; It has not been generated by packager.
    - I did also not use -clsid and -reg packager options.
    - I have been able to generate the .dll fille and register it.
    - I'm using j2sdk/jre 1.4.2_04
    Thanks in advance.

  • "Error while registering the Java 2 Runtime Environment registry keys"

    "Error while registering the Java 2 Runtime Environment registry keys"
    I am getting the above error when trying to install the 1.3 JRE (installed with the 1.3 plug in which I need). As part of my development I have been installing and uninstalling the JRE multiple times. Then, I got the above error when trying to install it, and now it appears to be installed but I cannot uninstall it. When I try to uninstall it, it just remains, and when I try to install it again I get the above error. I have tried cleaning up all javasoft registry entries, but it doesnt seem to have helped. Can anyone help me either completely uninstall the JRE so I can do a clean install or help me get rid of the error above when I install. Is there some registry entries I should be looking at? Anything else? this is quite urgent as I need to test my applet with the plugin installed and not installed - and I currently cant uninstall it. Any ideas?
    Thanks for your help
    Aaron

    I am getting this same error message when trying to upgrade from 1.3.1_03 to 1.3.1_19.
    I have multiple versions of jre's and jdks on my machine.
    Anyone else seen this problem or know how to resolve it.

  • Error while trying to register user to iFS 9.0.1

    Hi ,
    We are getting following error while trying to register user with our custom application. When I checked the forums it says the unique constraint might be the problem but I don't see any unique constraint violation in my exception trace. We are using 9.0.1 with 9.0.1 Database.
    Here is the stack trace:
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-00600: internal error code, arguments: [25012], [10], [0], [], [], [], [], []
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:184)
         at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:1768)
         at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java:1380)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1868)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1787)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2377)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:427)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:492)
         at oracle.ifs.server.S_LibrarySession.execute(S_LibrarySession.java:14319)
         at oracle.ifs.server.S_LibraryObject.insertRow(S_LibraryObject.java:3251)
         at oracle.ifs.server.S_LibraryObject.insertRows(S_LibraryObject.java:3150)
         at oracle.ifs.server.OperationState.executeAtomicOperations(OperationState.java:487)
         at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2716)
         at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:7922)
         at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7963)
         at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7945)
         at oracle.ifs.server.S_LibrarySession.DMNewPublicObject(S_LibrarySession.java:7604)
         at oracle.ifs.beans.LibrarySession.DMNewPublicObject(LibrarySession.java:7901)
         at oracle.ifs.beans.LibrarySession.NewPublicObject(LibrarySession.java:5345)
         at oracle.ifs.beans.LibrarySession.createPublicObject(LibrarySession.java:2973)
         at oracle.ifs.adk.user.UserManager.createDirectoryUser(UserManager.java:1122)
         at oracle.ifs.adk.user.UserManager.createUser(UserManager.java:987)
         at com.cisco.as.ifs.management.fndUserManager.createUser(fndUserManager.java:131)
    Thanks
    Rajesh Basawa

    Rajesh,
    I was wondering did you manage to get this problem fixed we are having a similar problem when creating an iFS object; the following is the stack trace
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    [Mon Jun 16 14:19:47 BST 2003] stderr: java.sql.SQLException: ORA-00600: internal error code, arguments: [25012], [5], [0], [], [], [], [], []
    [Mon Jun 16 14:19:47 BST 2003] stderr:
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:1759)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java:1371)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1852)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1771)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2361)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:422)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:487)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.execute(S_LibrarySession.java:14319)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.insertRow(S_LibraryObject.java:3251)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.insertRows(S_LibraryObject.java:3150)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.OperationState.executeAtomicOperations(OperationState.java:487)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2716)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:7922)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7963)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7945)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.DMNewPublicObject(S_LibrarySession.java:7604)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.DMNewPublicObject(LibrarySession.java:7901)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.NewPublicObject(LibrarySession.java:5345)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.createPublicObject(LibrarySession.java:2973)

  • Error ocurring when Event Listener methode in "for statement" is called

    Hy guys,
    I would be gratefull if somebody could answer me how can I
    call a method from flex in "for statement", that is actually in my
    remote service implemented. I call the method loadAssetsResult()
    (event listener method in my action script) and get a collection of
    objects back. In the same method I want to iterate throught this
    collection and call another method from remote service, that is
    specified for this object. Problem is when I call this remote
    method inside of this loop statement. I get the error when I write
    my code like following one:
    public function loadAssetsResult(event:ResultEvent):void {
    for (i=0; i<event.result.length; i++) {
    a = new Asset();
    a.longName = event.result
    .longName;
    a.shortName = event.result.shortName;
    a.isin = event.result
    .isin;
    a.nsin = event.result.nsin;
    a.currentDayClose = event.result[0].currentQuote.dayClose;
    //Schluskurs
    assets.addItemAt(a, i);
    RO.getIndicatorCollection(i);
    DataBinding();
    When I comment the row: RO.getIndicatorCollection() it works,
    of course without these additional data that I get from that
    method. I need to call this method inside loop statement (for each
    object), but I don't know how, without getting this error?
    please somebody help me with some ideas
    br
    Sheila

    Kris,
    First of all you should increase the value of logging-config/character-limit element in tangosol-coherence.xml to see the message entirely. The default setting is 4096 which is not enough to see your exception text.
    When you do that I believe you will see that the actual exception is java.lang.ClassNotFoundException indicating that the node that has the listener installed doesn't know about the class that is being put into the cache and could be easily fixed as shown here: http://www.tangosol.com/faq-coherence.jsp#classnotfound
    Please let me know if that doesn't help.
    Gene

  • Force to java to listen events

    My problem is this: when When i�m executing certain loop in my application, the JVM doesn�t listen the events that occurs (that is, the actionPerformed method isn�t invocated when i push a JButton). When the loop finished, the problem dissapear. �Anybody knows some call that force to java to listen events?. I�ve tried to implement this loop in a thread but the problem doesn�t dissapear.
    Thanks.

    if the loop is started from a gui event handler, take a look at SwingUtilities.invokeLater() method
    Nic

  • RoboHelp 9/10 Java Error Trying to Compile AIR Help Skin

    I'm trying to save a custom skin for a RoboHelp 9 project on a Windows 7 64-bit PC using AIR Browser Based Help. When I try to save the skin, or compile it into a SWF, I get the following error:
    Error loading: C:\Program Files\Java\jdk1.7.0_09\jre\bin\jvm.dll
    The dll is located at that path. I tried running RoboHelp as Administrator. I tried editing a new skin with a new clean project and also with a downloaded trial of RoboHelp 10, and I got the same results. Has anyone seen this, or can anyone think of a fix?

    Hello hypericon_0090001,
    Have you found any fix for this, as I am having the same problem.

  • Error: there is a problem connection to the GPRS service in your registered home network, error trying to make data connection. this may be casued by a voice call, a wired activesync connection or inncorrect network setting

    like 2 weeks ago i called in to att to see how much is the data plan and it would end up costing $30.
    so i was like screw that. well they figured that i got a new phone replacing the LG shine. so they asked
    for to call this number so they can recieve data which would updated the system that i have a plam treo 750.
    ever since this conflict i can't send picture messages. i get that problem. everytime i attempt to send a picture
    i recieve this.
    - there is a problem connection to the GPRS service in your registered home network.
    - then i get a test that says error trying to make data connection. this may be casued by a voice call,
    a wired activesync connection or inncorrect network setting.
    please someone help me.
    btw. hard reset and soft reset did not work for me.
    Post relates to: Treo 750 (AT&T)

    problem fix, i had to call in. customer serivce. and when i called to ask about the plan. they blocked it. so i had to unblock my internet.
    Post relates to: Treo 750 (AT&T)

  • Generation Error - when trying to publish a Java web service

    Hi All,
    I keep getting the following Generation Error -- java.util.NoSuchElementException_ when I'm trying to create a Java Web Service using the jdeveloper wizard.
    I have 2 entities and 2 stateless session beans acting as their facades. One entity has a One-One(FK) relationship with the other entity. I test out the entities and session beans using the test client and the OC4J embedded container and everything seems to work. When I try to generate a Java WebService from one of the entities I keep getting the "Generation Error". Could someone please provide me with some insight into why I'm facing this problem, because it seemed fine when I published J2EE web services previously and now this happens and I cant seem to publish web services anymore. Everytime I keep getting the same GenerationError. Thanks in advance.

    Without going into any technical discussion about the code, my first question is what JDK version was used to create this which was imported into the form? Understand that Forms 10 runs on JDK 1.4.2, so if you used any newer JDK version, likely there will be problems.

Maybe you are looking for

  • Problem installing Adobe Photoshop CS3 Trial

    When installing the trial version of Adobe Photoshop CS3, I get an error message saying that there has been a "fatal error". What is the problem? I have re-downloaded the exe more than once, closed all programs, etc. Thanks for any help.

  • Making Account  Outgoing Payments by Check means

    Hello everyone, I'm trying to make an Outgoing Payment of type Account and by Check payment means. This is my code:             SAPbobsCOM.Payments pago;             pago = (SAPbobsCOM.Payments)oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oVen

  • Security Deposit for adding new lines

    Hi, I have an AtnT family plan for about 8 months now. Some of my friends want to join my plan but they are reluctant to pay any security deposit. Could you please let me know if it is needed in the first place?

  • Make group calendars only editable by some people of the group

    Hi, I've got 2 group calendars where people are subscribed to. I noticed that all group members can change events in those group calendars but we want only 2 people to be able to do this, all other members only subsribe to this. I've played around in

  • Songs I don't own showing in iCloud

    Hi, this is a weird one. Basically I was browsing the iTunes app on my iPhone 4 (running the dreaded iOS6) and went into the purchased section. I saw there was an option to download songs not on my iPhone. Navigated to this and downloaded a couple so