XML-32009: (Fatal Error) Failed to parse the input schema.

I am attempting to generate the Java classes for the attached XLM schema (JMdict_e.xsd) using the following command:
oracle.xml.jaxb.orajaxb -schema JMdict_e.xsd -targetPkg generated
which results in the error "XML-32009: (Fatal Error) Failed to parse the input schema."
I created the schema from a DTD file (http://www.csse.monash.edu.au/~jwb/jmdict_dtd_h.html) following the instructions in the example http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28394/adx_j_sproc.htm#CIHICCJB
I am using version xdk_nt_10_1_0_2_0_production.
Can anyone help me with this please? Thanks.
JMdict_e.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="dial" type="xs:string"/>
<xs:element name="example" type="xs:string"/>
<xs:element name="upd_date" type="xs:string"/>
<xs:element name="ke_pri" type="xs:string"/>
<xs:element name="re_nokanji" type="xs:string"/>
<xs:element name="xref" type="xs:string"/>
<xs:element name="etym" type="xs:string"/>
<xs:element name="re_inf" type="xs:string"/>
<xs:element name="k_ele">
<xs:complexType>
<xs:sequence>
<xs:element ref="keb"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="ke_inf"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="ke_pri"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="links">
<xs:complexType>
<xs:sequence>
<xs:element ref="link_tag"/>
<xs:element ref="link_desc"/>
<xs:element ref="link_uri"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="lsource">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="lang" fixed="eng"/>
<xs:attribute name="ls_type" use="optional" type="xs:string"/>
<xs:attribute name="ls_wasei" use="optional" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ent_seq" type="xs:string"/>
<xs:element name="info">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="links"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="bibl"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="etym"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="audit"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="s_inf" type="xs:string"/>
<xs:element name="link_uri" type="xs:string"/>
<xs:element name="bib_txt" type="xs:string"/>
<xs:element name="link_tag" type="xs:string"/>
<xs:element name="bibl">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" ref="bib_tag"/>
<xs:element minOccurs="0" ref="bib_txt"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="upd_detl" type="xs:string"/>
<xs:element name="ant" type="xs:string"/>
<xs:element name="ke_inf" type="xs:string"/>
<xs:element name="audit">
<xs:complexType>
<xs:sequence>
<xs:element ref="upd_date"/>
<xs:element ref="upd_detl"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="pos" type="xs:string"/>
<xs:element name="pri" type="xs:string"/>
<xs:element name="r_ele">
<xs:complexType>
<xs:sequence>
<xs:element ref="reb"/>
<xs:element minOccurs="0" ref="re_nokanji"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="re_restr"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="re_inf"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="re_pri"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="bib_tag" type="xs:string"/>
<xs:element name="re_restr" type="xs:string"/>
<xs:element name="stagk" type="xs:string"/>
<xs:element name="sense">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="stagk"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="stagr"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="pos"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="xref"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="ant"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="field"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="misc"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="s_inf"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="lsource"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="dial"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="gloss"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="example"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="keb" type="xs:string"/>
<xs:element name="field" type="xs:string"/>
<xs:element name="link_desc" type="xs:string"/>
<xs:element name="reb" type="xs:string"/>
<xs:element name="entry">
<xs:complexType>
<xs:sequence>
<xs:element ref="ent_seq"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="k_ele"/>
<xs:element maxOccurs="unbounded" ref="r_ele"/>
<xs:element minOccurs="0" ref="info"/>
<xs:element maxOccurs="unbounded" ref="sense"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stagr" type="xs:string"/>
<xs:element name="re_pri" type="xs:string"/>
<xs:element name="gloss">
<xs:complexType mixed="true">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="pri"/>
</xs:choice>
<xs:attribute name="lang" fixed="eng"/>
<xs:attribute name="g_gend" use="optional" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:element name="misc" type="xs:string"/>
<xs:element name="JMdict">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="entry"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

@Bhaskar (and @user11922800): You have to update the db10g/xdk to a version at least of 10.1.0.4. There were major bug fixes including XML-32009 error (bug number 3375952).
http://www.eygle.com/case/bug10104.htm
I've even tried the op's listing with my more to-date xdk without encountering any problem and it is compiled just fine.
ps: I am sure that was the hasty typo in dvohra16 post. The namespace in the op (/2001/) is correct. Encoding is still capable of resulting in some problems (I've had encounted if I recall), but that is not the problem for the issue raised in this thread.

Similar Messages

  • AzureDiagnostics fails after role udpate with no changes to configuration, error "Failed to parse the WAD config file"

    Windows event log shows AzureDiagnostics errors "Failed to parse the WAD config file" and warning "
    No certficate with given thumbprint found in the certificate store. Thumbprint:" and
    System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    Also tried a different deployment on a different subscription, same issue, and this one gets stuck in 'create' state with no roles showing up in 'instances' section for quite some time. Are Cloud Services even maintained by Microsoft
    anymore? Seems that they are second class citizens to VMs, no updates, no new portal, no new features, often can't update single role without updating all roles, etc.

    i am facing same error : here is the log:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticPlugin.exe DiagnosticPlugin-ShutdownEvent DiagnosticPlugin-TotalShutdownEvent -wadVer1v3
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticsPlugin
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RcfFileName: C:\Config\881bb2e524c04870b4e993fd8fefb7d8.881bb2e524c04870b4e993fd8fefb7d8.WorkerRole1_IN_0.13.xml
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RoleInstanceId: WorkerRole1_IN_0; DeploymentId: 881bb2e524c04870b4e993fd8fefb7d8; RoleName: WorkerRole1
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Store Size: 4096
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Reading XML configuration file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Will use thumbprint 
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Decrypting private configuration
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:00:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Retrying after 30 seconds. Retry attempt 1
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:09 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:09 PM] Retrying after 30 seconds. Retry attempt 2
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:39 PM] Retrying after 30 seconds. Retry attempt 3
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.Security.Cryptography.CryptographicException: The enveloped-data message does not contain the specified recipient.
       at System.Security.Cryptography.Pkcs.EnvelopedCms.DecryptContent(RecipientInfoCollection recipientInfos, X509Certificate2Collection extraStore)
       at Microsoft.Azure.Plugins.Diagnostics.dll.PluginConfigurationSettingsProvider.DecryptPrivateConfig(String encryptedConfig)
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] WadCfg is provided in initial configuration. Using that to initialize Diagnostics.
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] <PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
      <WadCfg>
        <DiagnosticMonitorConfiguration overallQuotaInMB="4096">
          <DiagnosticInfrastructureLogs />
          <Directories scheduledTransferPeriod="PT1M">
            <IISLogs containerName="wad-iis-logfiles" />
            <FailedRequestLogs containerName="wad-failedrequestlogs" />
          </Directories>
          <PerformanceCounters scheduledTransferPeriod="PT1M">
            <PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\ISAPI Extension Requests/sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Bytes Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Requests/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Errors Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Queued" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Rejected" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Processor(_Total)\% Processor Time" sampleRate="PT3M" />
          </PerformanceCounters>
          <WindowsEventLog scheduledTransferPeriod="PT1M">
            <DataSource name="Application!*" />
            <DataSource name="System!*" />
          </WindowsEventLog>
          <CrashDumps dumpType="Full">
            <CrashDumpConfiguration processName="WaAppAgent.exe" />
            <CrashDumpConfiguration processName="WaIISHost.exe" />
            <CrashDumpConfiguration processName="WindowsAzureGuestAgent.exe" />
            <CrashDumpConfiguration processName="WaWorkerHost.exe" />
            <CrashDumpConfiguration processName="DiagnosticsAgent.exe" />
            <CrashDumpConfiguration processName="w3wp.exe" />
          </CrashDumps>
          <Logs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Verbose" />
        </DiagnosticMonitorConfiguration>
      </WadCfg>
      <StorageAccount>vinaystorageaccounttest</StorageAccount>
    </PublicConfig>
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] Private setting is loaded
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] Failed to parse the WAD config file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] DiagnosticPlugin.exe exit with code -106

  • Error while executing SSIS package - Error: 4014, Severity:20, State: 11. A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)

    Hi,
    We are getting the following error when running our SSIS packages on Microsoft SQL Server 2012 R2 on Windows Server 2008 R2 SP1:
    Error: 4014, Severity:20, State: 11.   A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)
    SQL Server Data Tools and SQL Server Database Engine reside on the same server.
    We tried the following:
    Disabling TCP Chimney Offload
    Installed Windows Server 2008 SP1
    Splitting our SSIS code into multiple steps so it is not all one large continuous operation
    The error occurs during a BulkDataLoad task.
    Other options we are investigating with the engineering team (out-sourced, so delayed responses):
    Firewall configurations (everything is local, so this should not make a difference)
    Disabling the anti-virus scanner
    Are there other things we can try?
    Any insight is greatly appreciated.
    Thanks!

    Hi HenryKwan,
    Based on the current information, the issue can be caused by many reasons. Please refer to the following tips:
    Install the latest hotfix based on your SQL Server version. Ps: there is no SQL Server 2012 R2 version.
    Change the MaxConcurrentExecutables property from -1 to another one based on the MAXDOP. For example, 8.
    Set "RetainSameConnection" Property to FALSE on the all the connection managers.
    Reference:
    https://connect.microsoft.com/SQLServer/feedback/details/774370/ssis-packages-abort-with-unexpected-termination-message
    If the issue is still existed, as Jakub suggested, please provide us more information about this issue.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error 4014 Severity 16 State A fatal error occurred while reading the input streamfrom the network

    We encounter following error intermittently Error 4014 Severity 20 State 16 , A fatal error occurred while reading the input stream from the network
    I have checked the RING_BUFFER_CONNECTIVITY from sys.dm_os_ring_buffers, we are able to find the remote_host IP where connections are being closed/killed, the error being logged in sys.dm_os_ring_buffers, comes from multiple remote_host, we have raised
    to O/s and Networking Team they seem to have no clue, why this error occurs
    Server: Virtual Machine
    Operating System: WINDOW 2008 R2 SP1
    MSSQL 2008 STD ED SP3 10.0.5850.0
    Database mirroring is configured for the application database.
    Antivirus enable on the database server
    How do we find the cause for this error being logged in SQL server logs, is this error due to SQL database mirroring or memory issue?
    What needs to be checked on the O/s and Network, I have been checking on the internet and everywhere it is pointing to NIC drivers or security patches
    Also in the system events following error was being logged, but after restarting the vm service this error has not re-occurred
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the VMTools service
    Kindly suggest on Error 4014 Severity 20 State 16, A fatal error how to resolve
    [email protected]

    Hello,
    Could you try to use Network Monitor or WireShark to examine if the connections resets are coming from a client computer
    or from the host where SQL Server is installed?
    Network Monitor can be downloaded from the following link:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    If you use Network Monitor trace you will identify connection resets by looking for “TCP: Flags=,,R.A” at the description column on the Frame Summary. Once you find the flag, the Source column will tell you the identity of the host resetting the connection,
    maybe is not the SQL Server host.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Failed to open the target schema error

    Hi,
    I am using JDeveloper 10.1.3.1.
    I created a soap service in ESB to consume one of Jive forum web service and a routing service to supply information to the soap service to call a method in the web service. When I tried to create the mapping, I got the following error:
    Failed to open the target schema: Invalid reference: 'http://webservices.forum.jivesoftware.com:User'
    And the design view of the mapping file (.xsl) file shows nothing on Target area.
    Anybody has any idea where the problem lies? Below is the WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://jivesoftware.com/webservices" xmlns:tns="http://jivesoftware.com/webservices" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://webservices.forum.jivesoftware.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:ns2="http://base.jivesoftware.com" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://jivesoftware.com/webservices"><xsd:element name="getUsers"><xsd:complexType/></xsd:element><xsd:element name="getUsersResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:ArrayOfUser"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="setUserProperty"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="name" nillable="true" type="xsd:string"/><xsd:element maxOccurs="1" minOccurs="1" name="value" nillable="true" type="xsd:string"/><xsd:element maxOccurs="1" minOccurs="1" name="userID" type="xsd:long"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="setUserPropertyResponse"><xsd:complexType/></xsd:element><xsd:element name="UserNotFoundException" type="ns2:UserNotFoundException"/><xsd:element name="deleteUserProperty"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="name" nillable="true" type="xsd:string"/><xsd:element maxOccurs="1" minOccurs="1" name="userID" type="xsd:long"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="deleteUserPropertyResponse"><xsd:complexType/></xsd:element><xsd:element name="getUser"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="id" type="xsd:long"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="deleteUser"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="userID" type="xsd:long"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="deleteUserResponse"><xsd:complexType/></xsd:element><xsd:element name="getUsersByEmailAddress"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="emailAddress" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUsersByEmailAddressResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:ArrayOfUser"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserByEmailAddress"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="emailAddress" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserByEmailAddressResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserProperties"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="userID" type="xsd:long"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserPropertiesResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:ArrayOfProperty"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserByUsername"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="username" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserByUsernameResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUsersBounded"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="startIndex" type="xsd:int"/><xsd:element maxOccurs="1" minOccurs="1" name="numResults" type="xsd:int"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUsersBoundedResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:ArrayOfUser"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="getUserCount"><xsd:complexType/></xsd:element><xsd:element name="getUserCountResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:int"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="createUser"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="username" nillable="true" type="xsd:string"/><xsd:element maxOccurs="1" minOccurs="1" name="password" nillable="true" type="xsd:string"/><xsd:element maxOccurs="1" minOccurs="1" name="email" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="createUserResponse"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="UserAlreadyExistsException" type="ns2:UserAlreadyExistsException"/><xsd:element name="updateUser"><xsd:complexType><xsd:sequence><xsd:element maxOccurs="1" minOccurs="1" name="user" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType></xsd:element><xsd:element name="updateUserResponse"><xsd:complexType/></xsd:element></xsd:schema>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://webservices.forum.jivesoftware.com"><xsd:complexType name="ArrayOfUser"><xsd:sequence><xsd:element maxOccurs="unbounded" minOccurs="0" name="User" nillable="true" type="ns1:User"/></xsd:sequence></xsd:complexType><xsd:complexType name="User"><xsd:sequence><xsd:element minOccurs="0" name="ID" type="xsd:long"/><xsd:element minOccurs="0" name="creationDate" type="xsd:dateTime"/><xsd:element minOccurs="0" name="email" nillable="true" type="xsd:string"/><xsd:element minOccurs="0" name="emailVisible" type="xsd:boolean"/><xsd:element minOccurs="0" name="modificationDate" type="xsd:dateTime"/><xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/><xsd:element minOccurs="0" name="nameVisible" type="xsd:boolean"/><xsd:element minOccurs="0" name="password" nillable="true" type="xsd:string"/><xsd:element minOccurs="0" name="passwordHash" nillable="true" type="xsd:string"/><xsd:element minOccurs="0" name="username" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType><xsd:complexType name="ArrayOfProperty"><xsd:sequence><xsd:element maxOccurs="unbounded" minOccurs="0" name="Property" nillable="true" type="ns1:Property"/></xsd:sequence></xsd:complexType><xsd:complexType name="Property"><xsd:sequence><xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/><xsd:element minOccurs="0" name="value" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:schema>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://base.jivesoftware.com"><xsd:complexType name="UserNotFoundException"><xsd:sequence><xsd:element minOccurs="0" name="userID" type="xsd:long"/><xsd:element minOccurs="0" name="username" nillable="true" type="xsd:string"/></xsd:sequence></xsd:complexType><xsd:complexType name="UserAlreadyExistsException"/></xsd:schema>
    </wsdl:types>
    <wsdl:message name="getUsersBoundedResponse">
    <wsdl:part name="parameters" element="tns:getUsersBoundedResponse"/>
    </wsdl:message>
    <wsdl:message name="updateUserResponse">
    <wsdl:part name="parameters" element="tns:updateUserResponse"/>
    </wsdl:message>
    <wsdl:message name="UserAlreadyExistsException">
    <wsdl:part name="UserAlreadyExistsException" element="tns:UserAlreadyExistsException"/>
    </wsdl:message>
    <wsdl:message name="getUsersBoundedRequest">
    <wsdl:part name="parameters" element="tns:getUsersBounded"/>
    </wsdl:message>
    <wsdl:message name="updateUserRequest">
    <wsdl:part name="parameters" element="tns:updateUser"/>
    </wsdl:message>
    <wsdl:message name="deleteUserPropertyResponse">
    <wsdl:part name="parameters" element="tns:deleteUserPropertyResponse"/>
    </wsdl:message>
    <wsdl:message name="createUserRequest">
    <wsdl:part name="parameters" element="tns:createUser"/>
    </wsdl:message>
    <wsdl:message name="getUserRequest">
    <wsdl:part name="parameters" element="tns:getUser"/>
    </wsdl:message>
    <wsdl:message name="setUserPropertyRequest">
    <wsdl:part name="parameters" element="tns:setUserProperty"/>
    </wsdl:message>
    <wsdl:message name="deleteUserResponse">
    <wsdl:part name="parameters" element="tns:deleteUserResponse"/>
    </wsdl:message>
    <wsdl:message name="setUserPropertyResponse">
    <wsdl:part name="parameters" element="tns:setUserPropertyResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserCountResponse">
    <wsdl:part name="parameters" element="tns:getUserCountResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserByEmailAddressResponse">
    <wsdl:part name="parameters" element="tns:getUserByEmailAddressResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserResponse">
    <wsdl:part name="parameters" element="tns:getUserResponse"/>
    </wsdl:message>
    <wsdl:message name="deleteUserPropertyRequest">
    <wsdl:part name="parameters" element="tns:deleteUserProperty"/>
    </wsdl:message>
    <wsdl:message name="getUserByUsernameResponse">
    <wsdl:part name="parameters" element="tns:getUserByUsernameResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserByUsernameRequest">
    <wsdl:part name="parameters" element="tns:getUserByUsername"/>
    </wsdl:message>
    <wsdl:message name="getUserByEmailAddressRequest">
    <wsdl:part name="parameters" element="tns:getUserByEmailAddress"/>
    </wsdl:message>
    <wsdl:message name="createUserResponse">
    <wsdl:part name="parameters" element="tns:createUserResponse"/>
    </wsdl:message>
    <wsdl:message name="getUsersRequest">
    <wsdl:part name="parameters" element="tns:getUsers"/>
    </wsdl:message>
    <wsdl:message name="getUsersResponse">
    <wsdl:part name="parameters" element="tns:getUsersResponse"/>
    </wsdl:message>
    <wsdl:message name="getUsersByEmailAddressRequest">
    <wsdl:part name="parameters" element="tns:getUsersByEmailAddress"/>
    </wsdl:message>
    <wsdl:message name="deleteUserRequest">
    <wsdl:part name="parameters" element="tns:deleteUser"/>
    </wsdl:message>
    <wsdl:message name="getUserCountRequest">
    <wsdl:part name="parameters" element="tns:getUserCount"/>
    </wsdl:message>
    <wsdl:message name="getUserPropertiesResponse">
    <wsdl:part name="parameters" element="tns:getUserPropertiesResponse"/>
    </wsdl:message>
    <wsdl:message name="getUsersByEmailAddressResponse">
    <wsdl:part name="parameters" element="tns:getUsersByEmailAddressResponse"/>
    </wsdl:message>
    <wsdl:message name="getUserPropertiesRequest">
    <wsdl:part name="parameters" element="tns:getUserProperties"/>
    </wsdl:message>
    <wsdl:message name="UserNotFoundException">
    <wsdl:part name="UserNotFoundException" element="tns:UserNotFoundException"/>
    </wsdl:message>
    <wsdl:portType name="ProfileServicePortType">
    <wsdl:operation name="getUsers">
    <wsdl:input name="getUsersRequest" message="tns:getUsersRequest"/>
    <wsdl:output name="getUsersResponse" message="tns:getUsersResponse"/>
    </wsdl:operation>
    <wsdl:operation name="setUserProperty">
    <wsdl:input name="setUserPropertyRequest" message="tns:setUserPropertyRequest"/>
    <wsdl:output name="setUserPropertyResponse" message="tns:setUserPropertyResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="deleteUserProperty">
    <wsdl:input name="deleteUserPropertyRequest" message="tns:deleteUserPropertyRequest"/>
    <wsdl:output name="deleteUserPropertyResponse" message="tns:deleteUserPropertyResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="getUser">
    <wsdl:input name="getUserRequest" message="tns:getUserRequest"/>
    <wsdl:output name="getUserResponse" message="tns:getUserResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="deleteUser">
    <wsdl:input name="deleteUserRequest" message="tns:deleteUserRequest"/>
    <wsdl:output name="deleteUserResponse" message="tns:deleteUserResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="getUsersByEmailAddress">
    <wsdl:input name="getUsersByEmailAddressRequest" message="tns:getUsersByEmailAddressRequest"/>
    <wsdl:output name="getUsersByEmailAddressResponse" message="tns:getUsersByEmailAddressResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getUserByEmailAddress">
    <wsdl:input name="getUserByEmailAddressRequest" message="tns:getUserByEmailAddressRequest"/>
    <wsdl:output name="getUserByEmailAddressResponse" message="tns:getUserByEmailAddressResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="getUserProperties">
    <wsdl:input name="getUserPropertiesRequest" message="tns:getUserPropertiesRequest"/>
    <wsdl:output name="getUserPropertiesResponse" message="tns:getUserPropertiesResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="getUserByUsername">
    <wsdl:input name="getUserByUsernameRequest" message="tns:getUserByUsernameRequest"/>
    <wsdl:output name="getUserByUsernameResponse" message="tns:getUserByUsernameResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    <wsdl:operation name="getUsersBounded">
    <wsdl:input name="getUsersBoundedRequest" message="tns:getUsersBoundedRequest"/>
    <wsdl:output name="getUsersBoundedResponse" message="tns:getUsersBoundedResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getUserCount">
    <wsdl:input name="getUserCountRequest" message="tns:getUserCountRequest"/>
    <wsdl:output name="getUserCountResponse" message="tns:getUserCountResponse"/>
    </wsdl:operation>
    <wsdl:operation name="createUser">
    <wsdl:input name="createUserRequest" message="tns:createUserRequest"/>
    <wsdl:output name="createUserResponse" message="tns:createUserResponse"/>
    <wsdl:fault name="UserAlreadyExistsException" message="tns:UserAlreadyExistsException"/>
    </wsdl:operation>
    <wsdl:operation name="updateUser">
    <wsdl:input name="updateUserRequest" message="tns:updateUserRequest"/>
    <wsdl:output name="updateUserResponse" message="tns:updateUserResponse"/>
    <wsdl:fault name="UserNotFoundException" message="tns:UserNotFoundException"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="ProfileServiceHttpBinding" type="tns:ProfileServicePortType">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getUsers">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUsersRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUsersResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="setUserProperty">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="setUserPropertyRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="setUserPropertyResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="deleteUserProperty">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="deleteUserPropertyRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="deleteUserPropertyResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="getUser">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="deleteUser">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="deleteUserRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="deleteUserResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="getUsersByEmailAddress">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUsersByEmailAddressRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUsersByEmailAddressResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getUserByEmailAddress">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserByEmailAddressRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserByEmailAddressResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="getUserProperties">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserPropertiesRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserPropertiesResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="getUserByUsername">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserByUsernameRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserByUsernameResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="getUsersBounded">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUsersBoundedRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUsersBoundedResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getUserCount">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserCountRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserCountResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="createUser">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="createUserRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="createUserResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserAlreadyExistsException">
    <wsdlsoap:fault name="UserAlreadyExistsException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    <wsdl:operation name="updateUser">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="updateUserRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="updateUserResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    <wsdl:fault name="UserNotFoundException">
    <wsdlsoap:fault name="UserNotFoundException" use="literal"/>
    </wsdl:fault>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="ProfileService">
    <wsdl:port name="ProfileServiceHttpPort" binding="tns:ProfileServiceHttpBinding">
    <wsdlsoap:address location="http://aarc1.us.oracle.com:7777/owc_discussions_nosso/rpc/soap/ProfileService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Thank you.
    Message was edited by:
    user579972

    Let me add more information. The web service is provided online from the application and I didn't make a local copy or modify it.
    I tested the web service using SOAP UI and worked like a charm.
    I made another test just now by only creating Soap service to use the WSDL and allow the external invocation. Then I call the ESB wsdl (soap service WSDL) from SOAP UI and got the following error. It seems to me, ESB incorrectly format the soap request to Jive or the ESB has problem handling the request from SoapUI.
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault>
    <faultcode>env:ESBMessageProcessingFailed</faultcode>
    <detail>
    <EventName>JiveESB.ProfileService.createUser</EventName>
    <Cause>An unhandled exception has been thrown in the ESB system. The exception reported is: "oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: application/xop+xml; type="text/xml"; charset=UTF-8
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeOperation(WSIFOperation_JaxRpc.java:1717)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeRequestResponseOperation(WSIFOperation_JaxRpc.java:1463)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.executeRequestResponseOperation(WSIFOperation_JaxRpc.java:1185)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(WSIFInvoker.java:507)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:430)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:447)
         at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.nextService(OutboundAdapterService.java:184)
         at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.processBusinessEvent(OutboundAdapterService.java:112)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:106)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:85)
         at oracle.tip.esb.server.dispatch.BusinessEvent.raise(BusinessEvent.java:1416)
         at oracle.tip.esb.server.service.impl.soap.EventOracleSoapProvider.raiseEvent(EventOracleSoapProvider.java:314)
         at oracle.tip.esb.server.service.impl.soap.EventOracleSoapProvider.processMessage(EventOracleSoapProvider.java:187)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:177)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:436)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(WSIFInvoker.java:539)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:430)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:447)
         at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.nextService(OutboundAdapterService.java:184)
         at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.processBusinessEvent(OutboundAdapterService.java:112)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:106)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:85)
         at oracle.tip.esb.server.dispatch.BusinessEvent.raise(BusinessEvent.java:1416)
         at oracle.tip.esb.server.service.impl.soap.EventOracleSoapProvider.raiseEvent(EventOracleSoapProvider.java:314)
         at oracle.tip.esb.server.service.impl.soap.EventOracleSoapProvider.processMessage(EventOracleSoapProvider.java:187)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:177)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:436)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: org.collaxa.thirdparty.apache.wsif.WSIFException: exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: application/xop+xml; type="text/xml"; charset=UTF-8
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeOperation(WSIFOperation_JaxRpc.java:1717)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeRequestResponseOperation(WSIFOperation_JaxRpc.java:1463)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.executeRequestResponseOperation(WSIFOperation_JaxRpc.java:1185)
         at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(WSIFInvoker.java:507)
         ... 28 more
    ".</Cause>
    </detail>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    Thanks.

  • Downloaded the update for Adobe Reader Xl from 10.  Now the Reader will not open a PDF, if says  " Fatal error - Failed to connet to DDE Serer.

    Downloaded the update for Adobe Reader Xl from 10.  Now the Reader will not open a PDF, if says  " Fatal error - Failed to connet to DDE Serer.  Can anyone provide a solution.
    I cannot find a DDE  file on my windows 7 computer.

    Uninstall Reader. Use Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs to remove all traces of Reader. Download a new copy from http://get.adobe.com/reader/enterprise
    Install.

  • Failed to back up the data. A fatal error has occured and the application is being terminated.

    hi,
    I am working on a content development using captivate 5.5. all of sudden I am not able slide view I am not able to view the text captions in slide view but i am able to see the text caption in Filmstrip. and when I am selecting another side it throwing below error and application ends.
    Adobe Captivate
    A fatal error has occured and the application is being terminated. Adobe Captivate has tried to save all your work in the respective project folders as ".cpbackup" files.
    Please restart Adobe Captivate.
    OK  
    I have a deliverable by this weekend if some can help to resolve this issue will be appreciated.
    Note: when first time it crashed, I re-created the course again from scratch and its crashed again. I have multiple attempt to finish this course but no luck.
    Please help me out to deliver my work.
    Thanks
    CD

    We have the exact same problem.Renaming the backup file per this post http://forums.adobe.com/message/4055726 didn't work. I can open the file and see the text boxes even though they're now showing as empty. Is there any way to recover the file?
    Yes, we were using a network drive but now we've switched to locally stored content.

  • Fatal error in Java Parser V2 :Status??

    We still have a problem with entity references
    in V2 of the JAVA XML parser (see Rolf van Deuresen 24-11).
    It is a very urgent problem for us. We think that the XML-team
    is working on it. Can you inform me abouth the status with the
    (bug??)-fix. If you need more information on the problem, please
    ask.
    Greetings,
    Erik van den Berg.
    null

    Attachments: "1|type=text/plain|desc=SAXSample output|17142|file=output.txt|"
    Oracle XML Team wrote:
    : Erik van den Berg (guest) wrote:
    : : Oracle XML Team wrote:
    : : : Erik van den Berg (guest) wrote:
    : : : : We still have a problem with entity references
    : : : : in V2 of the JAVA XML parser (see Rolf van Deuresen 24-
    11).
    : : : : It is a very urgent problem for us. We think that the
    XML-
    : : team
    : : : : is working on it. Can you inform me abouth the status
    with
    : : the
    : : : : (bug??)-fix. If you need more information on the
    problem,
    : : : please
    : : : : ask.
    : : : : Greetings,
    : : : : Erik van den Berg.
    : : : Have you downloaded the latest version 2.0.2.5 that was
    made
    : : : available this week?
    : : : Oracle XML Team
    : : : http://technet.oracle.com
    : : : Oracle Technology Network
    : : I have downloaded the new version 2.0.2.5 of the Java
    parser,
    : : and it stil doesn't work. Please refer to the original
    message
    : : from Rolf van Deursen (24th november 1999) for the details.
    : : Maybe it will help you if I mail you a XML file that fails.
    If
    : : so, please give me your email account.
    : : Greetings,
    : : Erik van den Berg.
    : You can attach files to messages in the forum here.
    : Oracle XML Team
    : http://technet.oracle.com
    : Oracle Technology Network
    Here's the XML that raises the Fatal error. The following
    information is generated by the parser:
    Fatal Error of Java SAX parser v2.0.2.5:
    XML-0121: (Fatal Error) End tag does not match start
    tag 'WOONPLAATS'. at line 517, column 4151 of XML document.
    I attached the output of the SAXSample class, so you can trace
    the line and column where the error occurs. Also attached is the
    XML file (4Mb).
    An other error that occurs with this XML is the following
    situation:
    <VOLGNR_FILM> 001</VOLGNR_FILM>
    this piece of XML is parsed with the following events:
    StartElement:VOLGNR_FILM
    Characters:NR_
    Characters:001
    EndElement:VOLGNR_FILM
    So the spaces are replace with a part of the start tag! This is
    also only with large files. I tested this piece of XML in a
    seperate file. Then it was parsed correctly.
    Kind regards,
    Erik.
    null

  • Org.xml.sax.SAXParseException: Line 1, Column 1 : XML-0108: (Fatal Error)

    Hi ,
    I am using SAX parser in a java code , which compiles and parses an xml correctly in the local JVM.
    But the same code in OC4J(10g) - version 9.0.4.2 throws the following exception when traced the error stack.
    08/04/04 17:48:40 Loading file workingday.xml from directory ========================== :::java.io.BufferedInputStream@bd4e3c
    08/04/04 17:48:40 Read the xml into instream => STEP II
    08/04/04 17:48:40 Read the xml into instream => STEP II
    08/04/04 17:48:40 adding to the bankholiday list
    org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-0108: (Fatal Error) Start of root element expected.
    08/04/04 17:48:40 at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:226)
    08/04/04 17:48:40 at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:162)
    08/04/04 17:48:40 at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:305)
    08/04/04 17:48:40 at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:267)
    08/04/04 17:48:40 at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
    08/04/04 17:48:40 at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:286)
    08/04/04 17:48:40 at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:224)
    Though I have imported the following JDK parsers in the code , the Oracle's SAX parser is taking other inside the application server and throwing the above error for an xml , which is absolutely alright.
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    Please let me know why this happens? Is it a known bug in the OC4J 9.0.4.2?
    Thanks and Regards
    Antara

    hi Antara
    about "... Though I have imported the following JDK parsers in the code , the Oracle's SAX parser is taking other inside the application server ..."
    If you have used the SAXParserFactory.newSAXParser() method to get a parser, the documentation for this method says "Creates a new instance of a SAXParser using the currently configured factory parameters.".
    So you might get a different parser in a different environment.
    regards
    Jan Vervecken

  • Encountering XML-20108: (Fatal Error) Start of root element expected

    Hi,
    We are trying to invoke a XML Publisher report from a custom OAF page using API's. However, it is erroring out with the following error message (in xdo.log)
    [021710_121811671][oracle.apps.xdo.common.xml.XSLTWrapper][EXCEPTION] XSL error:
    <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    [021710_121811672][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [021710_121811672][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [021710_121811673][][EXCEPTION] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
    at lxe.oracle.apps.ibu.returnmgmt.server.RmaCreateReturnAMImpl.xxPrintShipLabel(RmaCreateReturnAMImpl.java:1046)
    at lxe.oracle.apps.ibu.returnmgmt.webui.OrderConfirmCo.processFormRequest(OrderConfirmCo.java:167)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:815)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:382)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:815)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:382)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1027)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:993)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:848)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:382)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1027)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:993)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:848)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:382)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2863)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1840)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
    at jtfcrmchrome.jspService(_jtfcrmchrome.java:1191)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Start of root element expected.
    at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:337)
    at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:343)
    at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:285)
    at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:289)
    ... 56 more
    The XML is generated from the code and is as below:
    <ShippingLabelVO>
    <ShippingLabelVORow>
    <RowKey>1</RowKey>
    <ShipSentToAddr>XXX Repair Center 125 Technology Parkway Austin, TX</ShipSentToAddr>
    <SerialNum>BC104</SerialNum>
    <OrderNum>8000324</OrderNum>
    <ItemNum>MX7AM-170540</ItemNum>
    </ShippingLabelVORow>
    </ShippingLabelVO>
    I can successfully create the PDF from the desktop using the above XML. When I add the XML file to sample XML (in data definition), I can see the output when I choose Preview.
    But, this is not working from the code.
    Any pointers?
    Thanks,
    Ashish

    Hi,
    We are currently on R12.XDO.B.1 (5.6.3?) Is there a patch we'll need to apply on top of this?
    Is there a workaround for this?
    Thanks,
    Ashish

  • XML-20108: (Fatal Error) Start of root element expected while restarting

    Hi All,
    I am work on OIM with the following configurations
    1)OS for App Server -- Linux
    2)App Server type and version -- Oracle Application Server 10g, version is 10.1.3.1.0
    3)OIM connector pack version -- 9.0.3
    I have restarted the servers and I got the following error message
    08/10/16 08:03:19 Stop process
    08/10/16 08:03:20 Shutting down...
    08/10/16 08:03:36 Start process
    08/10/16 08:08:09 WARNING: ApplicationStateRunning.loadConnectors Exception loading connector xlJMSResourceAdapterModule : Error parsing oc4j-ra.xml at /u01/app/oracle/product/10.1.3.1/OracleAS_1/j2ee/oim/application-deployments/default/xlJMSResourceAdapterModule: Fatal error at line 1 offset 1 in file:/u01/app/oracle/product/10.1.3.1/OracleAS_1/j2ee/oim/connectors/xlJMSResourceAdapterModule/xlJMS ResourceAdapterModule/: .<Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    08/10/16 08:08:09 WARNING: ApplicationStateRunning.loadConnectors Exception loading connector OracleASjms : Error parsing oc4j-ra.xml at /u01/app/oracle/product /10.1.3.1/OracleAS_1/j2ee/oim/application-deployments/default/OracleASjms: Fatal error at line 1 offset 1 in file:/u01/app/oracle/product/10.1.3.1/OracleAS_1/j2ee/oim/connectors/OracleASjms/OracleASjms/: .<Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    Oct 16, 2008 8:08:11 AM org.jgroups.protocols.UDP createSockets
    INFO: sockets will use interface 10.201.50.124
    Oct 16, 2008 8:08:11 AM org.jgroups.protocols.UDP createSockets
    INFO: socket information:
    local_addr=10.201.50.124:46865, mcast_addr=231.184.179.146:45577, bind_addr=/10.201.50.124, ttl=1
    sock: bound to 10.201.50.124:46865, receive buffer size=64000, send buffer size= 32000
    mcast_recv_sock: bound to 10.201.50.124:45577, send buffer size=150000, receive buffer size=80000
    mcast_send_sock: bound to 10.201.50.124:46866, send buffer size=150000, receive buffer size=80000
    Can any one help me out
    Thanks in Advance

    Have you modified the DB adapter wsdl manually ? provide more error details from payload and logs.

  • Error Error oracle.iam.platform.context.ContextManager BEA-000000 IAM-0030007 org.xml.sax.SAXParseException: Line 1, Column 1 : XML-20108: (Fatal Error) Start of root element expected. error in oim logs

    Hi ,
    I am getting the below error at times in oim logs not able to find the reason please help.
    <Error> <oracle.iam.platform.context.ContextManager> <BEA-000000> <IAM-0030007
    org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
        at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
        at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
        at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:414)
        at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:355)
        at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
    <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBaseClient/bindToInstance encounter some problems: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
    oracle.iam.platform.utils.ServiceInitializationException: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
        at oracle.iam.platform.Platform.getService(Platform.java:265)
        at oracle.iam.platform.OIMInternalClient.getService(OIMInternalClient.java:188)
        at com.thortech.xl.dataaccess.tcDataBaseClient.bindToInstance(tcDataBaseClient.java:151)
        at com.thortech.xl.client.dataobj.tcDataBaseClient.recoverConnection(tcDataBaseClient.java:401)
        at com.thortech.xl.client.dataobj.tcDataBaseClient.getInterface(tcDataBaseClient.java:385)
        at com.thortech.xl.dataaccess.tcDataBaseClient.close(tcDataBaseClient.java:349)
        at com.thortech.xl.server.tcDataBaseClient.close(tcDataBaseClient.java:62)
        at com.thortech.xl.server.tcDataBaseClient.finalize(tcDataBaseClient.java:43
    Caused By: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:247)
        at com.sun.naming.internal.VersionHelper12.loadClass(Ve
    <Class/Method: tcDataBaseClient/getInterface encounter some problems: RuntimeException encountered. Reconnecting!
    java.lang.NullPointerException
        at oracle.iam.platform.context.ContextManager.getCounter(ContextManager.java:697)
        at oracle.iam.platform.context.ContextManager.incrementCounter(ContextManager.java:684)
    <Error> <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBaseClient/close encounter some problems: Bean has been deleted.
    javax.ejb.NoSuchEJBException: Bean has been deleted.
    Thanks,
    Sahana

    hi Antara
    about "... Though I have imported the following JDK parsers in the code , the Oracle's SAX parser is taking other inside the application server ..."
    If you have used the SAXParserFactory.newSAXParser() method to get a parser, the documentation for this method says "Creates a new instance of a SAXParser using the currently configured factory parameters.".
    So you might get a different parser in a different environment.
    regards
    Jan Vervecken

  • [IWAF JCA PeopleSoft] **** Error in parsing the input document.

    Hi,
    I configured Peoplesoft Adapter 10.1.3.1 with Oracle BPEL 10.1.3.1, I am able to invoke BPEL from Peoplesoft using JCA configurtaion. But I am not able to invoke Peoplesoft component interface from BPEL PM, Invoke call fails with following error. Did any one know solution to this issue.
    Thanks,
    Manish
    Tue, 6 Nov 2007 16:40:20.0954 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [info ] [IWAF JCA PeopleSoft] IWAFManagedConnection for PeopleSoft:Peoplesoft has listener registered: com.evermind.server.connector.ConnectionContext@b78555
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [info ] [IWAF JCA PeopleSoft] Local transaction not supported by underlying adapter.
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [info ] [IWAF JCA PeopleSoft] IWAFManagedConnection for PeopleSoft:Peoplesoft dispatch event 2
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [error] [IWAF JCA PeopleSoft] **** Error in parsing the input document.
    oracle.xml.parser.v2.XMLParseException: Start of root element expected.
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:341)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)
         at com.iwaysoftware.idom.XmlDocument.parse(XmlDocument.java:120)
         at com.iwaysoftware.idom.XmlDocument.setRootXML(XmlDocument.java:77)
         at com.ibi.afjca.cci.IWAFInteraction.execProcess(IWAFInteraction.java:195)
         at com.ibi.afjca.cci.IWAFInteraction.exec(IWAFInteraction.java:136)
         at com.ibi.afjca.cci.IWAFInteraction.execute(IWAFInteraction.java:93)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:470)
         at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:431)
         at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:416)
         at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:222)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:736)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:371)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:195)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3271)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1697)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:184)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:269)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5244)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1083)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:132)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:161)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at CubeEngineBean_LocalProxy_4bin6i8.syncCreateAndInvoke(Unknown Source)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:499)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:451)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:125)
         at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:95)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at DeliveryBean_RemoteProxy_4bin6i8.request(Unknown Source)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processNormalOperation(SOAPRequestProvider.java:455)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processBPELMessage(SOAPRequestProvider.java:278)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processMessage(SOAPRequestProvider.java:129)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:869)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:460)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:177)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [error] [IWAF JCA PeopleSoft] SOS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [error] [IWAF JCA PeopleSoft] oracle.xml.parser.v2.XMLElement@1f73ac7
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [error] [IWAF JCA PeopleSoft] EOS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Tue, 6 Nov 2007 16:40:21.0204 IST - Thread[AJPRequestHandler-HTTPThreadGroup-56,5,HTTPThreadGroup] [info ] [IWAF JCA PeopleSoft] IWAFManagedConnection for PeopleSoft:Peoplesoft dispatch event 4

    Kris,
    I tried your suggestion, but it didn't help. I think the Ci jar file is getting loaded, because when I try to call any other interface whos class files are not included in CI jar file, it gives different error like "Not Authorized (90,6)Failed to execute PSSession request Cannot find Component Interface {LACATION_TABLE} (91,2)".
    We verified all the configuration on Adapter and Peoplesoft aerver, every thing seems to be absolutely fine, even I turned on debug log level for adapter but that is not of any use.
    I tried searching on the google, it seems many people who used Component Interface Java Classes faced such type of problem, they recommended some peoplesoft configuration, I tried their suggestions as well, but that also didn't work out.
    Even though we are using Peoplesoft 8.4 Adapter asks for pstools.properties file whenever the BPEL Process is invoked, this file is there in the adapters lib directory, and jca-app-adapter directory, see below the log.
    <2007-11-26 18:33:17,656> <INFO> <collaxa> <ServerManager::loadProcesses> Done loading processes for all domains
    <2007-11-26 18:35:13,296> <INFO> <default.collaxa.cube.ws> <AdapterFramework::Outbound> http://192.168.133.164:8888/orainfra/wsil/adapters/applications/CI_PERSONAL_DATA_invoke.wsdl?wsdl [ CI_PERSONAL_DATAPortType::CI_PERSONAL_DATA(input_CI_PERSONAL_DATA,output_CI_PERSONAL_DATA) ] - Using JCA Connection Pool - max size = <unbounded>
    <2007-11-26 18:35:13,312> <WARN> <default.collaxa.cube.ws> <AdapterFramework::Outbound> http://192.168.133.164:8888/orainfra/wsil/adapters/applications/CI_PERSONAL_DATA_invoke.wsdl?wsdl [ CI_PERSONAL_DATAPortType::CI_PERSONAL_DATA(input_CI_PERSONAL_DATA,output_CI_PERSONAL_DATA) ] - Unable to provide Log4j handle to com.ibi.afjca.cci.IWAFConnectionFactory via <public void setLog4jLogger(org.apache.log4j.Logger logger)> due to: com.ibi.afjca.cci.IWAFConnectionFactory.setLog4jLogger(org.apache.log4j.Logger)
    Mon, 26 Nov 2007 18:35:13.0312 IST - Thread[HTTPThreadGroup-59,5,HTTPThreadGroup] [debug] [IWAF JCA] IWAFConnectionFactory:getConnection called with ConnectionSpec:
    User :null
    Password :null
    AdapterName :PeopleSoft
    Config :PSOFT9
    Mon, 26 Nov 2007 18:35:13.0312 IST - Thread[HTTPThreadGroup-59,5,HTTPThreadGroup] [debug] [IWAF JCA] IWAFConnectionFactory:getConnection called with ConnectionSpec:
    User :null
    Password :null
    AdapterName :PeopleSoft
    Config :PSOFT9
    Mon, 26 Nov 2007 18:35:13.0312 IST - Thread[HTTPThreadGroup-59,5,HTTPThreadGroup] [debug] [IWAF JCA] IWAFManagedConnectionFactory:createManagedConnection() entered.
    Mon, 26 Nov 2007 18:35:13.0312 IST - Thread[HTTPThreadGroup-59,5,HTTPThreadGroup] [debug] [IWAF JCA] setLogWriter() gets called.
    07/11/26 18:35:14 PSProperties not loaded from file. Couldn't find file: pstools.properties
    07/11/26 18:35:18 PSProperties not loaded from file. Couldn't find file: pstools.properties
    07/11/26 18:39:12 PSProperties not loaded from file. Couldn't find file: pstools.properties
    07/11/26 18:51:38 PSProperties not loaded from file. Couldn't find file: pstools.properties
    Thanks,
    manish
    Message was edited by:
    user604262

  • Error in parsing the input document

    Dear All
    When I am trying to fetch data from SAP thro OracleAS with BPEL , I am getting this error. I dont know whee i did worng, Pl. clarify me if any body know this....
    <summary>
    http://127.0.0.1:8888/orainfra/wsil/adapters/applications/GetDetail_invoke.wsdl?wsdl [ GetDetailPortType::GetDetail(input_GetDetail,output_GetDetail) ] - WSIF JCA Execute of operation 'GetDetail' failed due to: Error in parsing the input document.; nested exception is:
         javax.resource.ResourceException: Error in parsing the input document.
    </summary>

    Sir,
    From the JCA Log I got the below message
    Tue, 1 Jul 2008 18:30:43.0220 IST - Thread[HTTPThreadGroup-56,5,HTTPThreadGroup] [error] [IWAF JCA SAP] Error in processing the input document.
    getMessage(): java.lang.Exception: Function module inputVariable does NOT exist.
    int getError(): Server
    getAdapterCode(): null
    getVendorThrowable(): null
    Also i am not giving my input in xml format. when i am running the bpel console its asking for input in html format , there im giving my input, after urs question only im doubting on my input. how can i give my input in which format, how to defin that format. pl. give me yours views and also i will try myself.

  • Fatal Error has occured and the application is being terminated

    It seems that Captivate is eating my projects.  I've started my second project (after completing my first without any errors) and I'm constintly getting corrupted files.  It set me back at least a few hours worth of work.  So I started creating backup files every 10mins, regardless of how much work i've done.  Everything was going fine, until I took an hour break and went to resume my work.
    When I try to open my file I get the following pop up message when trying to open my file: "Adobe Captivate - A fatal error has occured and the application is being terminated. Adobe Captivate has tried to save all your work in the respective project folder as .cpbackup files.  Please restart Adobe Captivate."
    I can click on the program workspace and not click ok on the error message to keep the file open.  I see my slides and objects, but all the text is missing.
    I'm using Captivate 5.5 and windows 7 64.  Within Captivate, I'm using standard objects with importing MP3 audio files and some Photoshop images.  I have a total of 4 slides with 1 being 3.5mins long and the rest are less than 1min.
    When I first started having this problem, I thought maybe the variable files were corrupte so I deleted the Users/name/appdata/local/adobe/Captivate5.5 directory to see if that was the issue.  That was before this last stint of errors.
    I tried opening a backup that was like 10 saves ago, but it displays the same message.
    I'm not sure what to do next.

    Failed to back up the data. A fatal error has occured and the application is being terminated.
    This question is Not Answered.(Mark as assumed answered)
    hi,
    I am working on a content development using captivate 5.5. all of sudden I am not able slide view I am not able to view the text captions in slide view but i am able to see the text caption in Filmstrip. and when I am selecting another side it throwing below error and application ends.
    Adobe Captivate
    A fatal error has occured and the application is being terminated. Adobe Captivate has tried to save all your work in the respective project folders as ".cpbackup" files.
    Please restart Adobe Captivate.
    OK 
    I have a deliverable by this weekend if some can help to resolve this issue will be appreciated.
    Note: when first time it crashed, I re-created the course again from scratch and its crashed again. I have multiple attempt to finish this course but no luck.
    Please help me out to deliver my work.
    Thanks
    CD

Maybe you are looking for

  • I have Windows 7 main library, iMac with additional library and Apple TV that I want to use home sharing, but windows library doesn't show as a computer on Apple TV.

    I have music and movie library on an external drive connected to a Windows 7 machine. I also have home movies and other content on an iMac that I use.  I want to turn on home sharing for both and connect them to Apple TV for display, music and podcas

  • Import from digital camera no longer works

    iPhoto 6.0.6 I suddenly can't import photos from my Casio digital camera. It worked fine two months ago, with the same computer and the same camera. When I connect the camera to the computer, and turn the camera on, the camera appears on the Desktop,

  • Cant open old photos!

    I have a number of old photos from the system 7-9.x days that for some reason cannot be opened in Mountain Lion in Preview. Is there a way around this, or ws this my mistake that I made in not keeping a older OS 8.x Mac around? I also have some old p

  • Issues ti Graph

    Hi Every, I am trying to implement Interactive graph By using Graph_2d Fm, In that I want to know how can I to interactive graph and what is the use of B_key, B_typ and M_typ. pleas help me  to implement this . Warm Regards Imran

  • Options for running older software on Mavericks

    When I try to upgrade, it lists a bunch of software that won't run on Mavericks - does Mavericks have some type of "classic" mode that will enable me to run these programs?