Error in SSMA console

Hi ,
I am getting the following vague error when i am executing the script using SSMA console application
SSMAforOracleConsole.exe –s "C:\Users\Arup\Desktop\SQL Server\Console Application\ConversionAndDataMigrationSample_New.xml"
FATALERR invalid argument used.
Any help is highly appreciated

Hi Lydia,
Thanks for your Reply.Pfb the code i am using for my ssma migration.
<?xml version="1.0" encoding="utf-8"?>
<!--
Script file for SSMA-v4.2 Console for Oracle.
Commands execution order - from top to bottom.
Command Processor distinguishes each command by element name.
The element name is invariable! Never modify it!
Use this file name as the parameter to SSMA-v4.2 Console for Oracle with mandatory
option -s[cript]. See the documentation for SSMA-v4.2 Console for more information.
-->
<ssma-script-file xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Microsoft SQL Server Migration Assistant for Oracle\Schemas\O2SSConsoleScriptSchema.xsd">
<!-- Variable values should mandatorily start and end with "$".
These values can be defined in a separate variable value file
(See :VariableValueFileSample.xml)
********** Set the variable values used by this sample **********
********** file in the corresponding Variables Value File **********
-->
<!-- The escape character for “$” is “$$”.If the value of a static value of a parameter begins with “$”,
then "$$" must be specified to treat it as a static value instead of a variable. -->
<!-- Optional section with console configuration options-->
<config>
<output-providers>
<!-- Command specific messages do not appear on console if value set to "true".
Attributes: destination="file" (optional)
file-name="<file-path>" (optional along with destination attribute)
By default destination="stdout" and suppress-messages="false" -->
<output-window suppress-messages="false"
destination="file"/>
<!-- Enables upgradation of project created from earlier version of SSMA to current version.
Available action attribute values
• yes - upgrades the project (default)
• no - displays an error and halts the execution
• ask-user - prompts user for input (yes or no). -->
<upgrade-project action="yes"/>
<!-- Enables upgradation of project created from earlier version of SSMA to current version.
Available action attribute values
• yes - upgrades the project (default)
• no - displays an error and halts the execution
• ask-user - prompts user for input (yes or no). -->
<upgrade-project action="yes"/>
<!--Enables creation of database during connection. By default, mode is error..
Available mode values
• ask-user - prompts user for input (yes or no).
• error - console displays error and halts the execution.
• continue - console continues the execution.-->
<!--<user-input-popup mode="continue" />-->
<!-- Data migration connection parameters
Specifies which source or target server to be considered for data migration
Attributes: source-use-last-used="true" (default) or source-server="source_servername"
target-use-last-used="true" (default) or target-server="target_servername" -->
<data-migration-connection source-use-last-used="false"
target-server="target_1"/>
<!-- Progress Reporting. By default progress reporting is disabled.
report-progress attribute values
• off
• every-1%
• every-2%
• every-5%
• every-10%
• every-20% -->
<progress-reporting enable="false"
report-messages="false"
report-progress="off"/>
<!-- Reconnect manager -->
<!-- Reconnection parameter settings incase of connection failure
Available reconnection modes
• reconnect-to-last-used-server - If the connection is not alive it tries to reconnect to last used server
• generate-an-error - If the connection is not alive it throws an error(default)
<reconnect-manager on-source-reconnect="reconnect-to-last-used-server"
on-target-reconnect="generate-an-error"/>-->
<!-- Prerequisites display options.
If strict-mode is true, an exception is thrown in case of prerequisite failures-->
<!--<prerequisites strict-mode="true"/>-->
<!-- Object overwrite during conversion.By default, action is overwrite
Available action values
• error
• overwrite
• skip
• ask-user -->
<object-overwrite action="skip" />
<!-- Sets log verbosity level. By default log verbosity level is "error"
Available logger level options:
• fatal-error - Only fatal-error messages are logged
• error - Only error and fatal-error messages are logged
• warning - All levels except debug and info messages are logged
• info - All levels except debug messages are logged
• debug - All levels of messages logged
Note: Mandatory messages are logged at any level-->
<!--<log-verbosity level="error"/>-->
<!-- Override encrypted password in protected storage with script file password
Default option: "false" - Order of search: 1) Protected storage 2) Script File / Server Connection File 3) Prompt User
"true" - Order of search: 1) Script File / Server Connection File 2) Prompt User -->
<!--<encrypted-password override="true"/>-->
</output-providers>
</config>
<!-- Optional section with server definitions -->
<!-- Note: Server definitions can be declared in a separate file
or can be embedded as part of script file in the servers section (below)-->
<servers>
<sql-server name="target_1">
<windows-authentication>
<server value="ARUP-MANISHA\SQLEXPRESS"/>
<database value="AdventureWorks2012"/>
<encrypt value="true"/>
<trust-server-certificate value="true"/>
</windows-authentication>
</sql-server>
<oracle name="source_1">
<standard-mode>
<connection-provider value ="OracleClient"/>
<host value="arup-manisha" />
<port value="1521" />
<instance value="XE" />
<user-id value="arup" />
<password value="arup"/>
</standard-mode>
</oracle>
<script-commands>
<!--Create a new project.
• Customize the new project created with project-folder and project-name attributes.
• overwrite-if-exists attribute can take values "true/false" with default as "false".
• project-type (optional attribute) can take values
sql-server-2005 - Creates SSMA 2005 project
sql-server-2008 - Creates SSMA 2008 project (default)
sql-server-2012 - Creates SSMA 2012 project
sql-server-2014 - Creates SSMA 2014 project
sql-azure - Creates SSMA Azure project -->
<create-new-project project-folder="C:\Users\Arup\Documents\SSMAProjects"
project-name="SqlMigration5"
overwrite-if-exists="true"
project-type="sql-server-2012"
/>
<!-- Connect to source database -->
<!-- • Server(id) needs to mandatorily be defined in the servers section of the
script file or in the Servers Connection File-->
<connect-source-database server="source_1" />
<!-- Connect to target database -->
<!-- • Server(id) needs to mandatorily be defined in the servers section of the
script file or in the Servers Connection File-->
<connect-target-database server="target_1" />
<!--Schema Mapping-->
<!-- • source-schema specifies the source schema we intend to migrate.
• sql-server-schema specifies the target schema where we want it to be migrated.-->
<map-schema source-schema="arup"
sql-server-schema="arup.dbo" />
<!--Refresh from database-->
<!-- Refreshes the source database
• object-name specifies the object(s) considered for refresh .
(can have indivdual object names or a group object name)
• object-type specifies the type of the object specified in the object-name attribute.
(if object category is specified then object type will be "category")
• on-error specifies whether to specify refresh errors as warnings or error.
Available options for on-error:
•report-total-as-warning
•report-each-as-warning
•fail-script
• report-errors-to specifies location of error report for the refresh operation (optional attribute)
if only folder path is given, then file by name SourceDBRefreshReport.XML is created -->
<!-- Example1: Refresh entire Schema (with all attributes)-->
<!--<refresh-from-database object-name="$OracleSchemaName$"
object-type ="Schemas"
on-error="fail-script"
report-errors-to="$RefreshDBFolder$" /> -->
<!-- Example2: Refresh a particular category say a procedure (other convention of the command with only mandatory attributes)-->
<!--<refresh-from-database>
<metabase-object object-name="$OracleSchemaName$.Testproc" object-type="Procedures"/>
</refresh-from-database>-->
<!-- Convert schema -->
<!-- • object-name specifies the object(s) considered for conversion .
(can have indivdual object names or a group object name)
• object-type specifies the type of the object specified in the object-name attribute.
(if object category is specified then object type will be "category")
• conversion-report-folder specifies folder where the conversion report can to be stored.(optional attribute)
• conversion-report-overwrite specifies whether to overwrite the conversion report folder if it already exists.
Default value: false. (optional attribute)
• write-summary-report-to specifies the path where the summary report will be generated.
If only the folder path is mentioned,then file by name SchemaConversionReport.XML is created. (optional attribute)
• Summary report creation has 2 further sub-categories
• report-errors (="true/false", with default as "false" (optional attributes))
• verbose (="true/false", with default as "true/false" (optional attributes))
-->
<!-- Example1: Convert entire Schema (with all attributes)-->
<convert-schema object-name="$OracleSchemaName$"
object-type="Schemas"
write-summary-report-to="$SummaryReports$"
verbose="true"
report-errors="true"
conversion-report-folder="$ConvertARReportsFolder$"
conversion-report-overwrite="true" />
<!-- Example2: Convert entire Schema (only with mandatory attributes)-->
<!--<convert-schema object-name="$OracleSchemaName$"
object-type="Schemas" />-->
<!-- alternate convention for ConvertSchema command-->
<!-- Example3: Convert a specific category(say Tables)-->
<!--<convert-schema>
<metabase-object object-name="$OracleSchemaName$.Tables"
object-type="category" />
</convert-schema>-->
<!-- Example4: Convert Schema for a specific object(say Table)
(with only a few optional attributes & write-summary-report-to with a file name)-->
<!--<convert-schema object-name="$OracleSchemaName$.TestTbl"
object-type="Tables"
write-summary-report-to="$SummaryReports$\ConvertSchemaReport1.xml"
report-errors="true"
/>-->
<!-- Synchronize target -->
<!-- • object-name specifies the object(s) considered for synchronization.
(can have indivdual object names or a group object name)
• object-type specifies the type of the object specified in the object-name attribute.
(if object category is specified then object type will be "category")
• on-error specifies whether to specify synchronization errors as warnings or error.
Available options for on-error:
•report-total-as-warning
•report-each-as-warning
•fail-script
• report-errors-to specifies location of error report for the synchronization operation (optional attribute)
if only folder path is given, then file by name TargetSynchronizationReport.XML is created.
-->
<!-- Example1: Synchronize target entire schema of Database with all attributes-->
<synchronize-target object-name="arup.dbo"
on-error="fail-script"
report-errors-to="$SynchronizationReports$" />
<!-- Example2: Synchronizing a particular category (say Procedures) of the schema alone -->
<!--<synchronize-target object-name="$SQLServerDb$.dbo.Procedures"
object-type="category" />-->
<!--(alternative convention for Synchronize target command)-->
<!-- Example3: Synchronization target of individual objects -->
<!--<synchronize-target>
<metabase-object object-name="$SQLServerDb$.dbo.TestTbl"
object-type="Tables" />
</synchronize-target>-->
<!-- Example4: Synchronization of individual objects with no object-type attribute-->
<!--<synchronize-target>
<metabase-object object-name="$SQLServerDb$.dbo.TestTbl" />
</synchronize-target>-->
<!-- Save As Script-->
<!-- Used to save the Scripts of the objects to a file mentioned
when metabase=target ,this is an alternative to synchronization command where in we get the scripts and execute the same on the target database.
• object-name specifies the object(s) whose scripts are to be saved .
(can have indivdual object names or a group object name)
• object-type specifies the type of the object specified in the object-name attribute.
(if object category is specified then object type will be "category")
• destination specifies the path or the folder where the script has to be saved, if the file name is not given then a file name in the format (object_name attribute value).out
• metabase specifies whether it ithe source or target metabase.
• overwrite if true then it overwrites if same filename exist , It can values (true/false) -->
<!-- Example1 : Save as script from source metabase-->
<!-- <save-as-script destination="$SaveScriptFolder$\Script1.sql"
metabase="source"
object-name="$OracleSchemaName$"
object-type="Schemas"
overwrite="true" />-->
<!-- Example2 : Save as script from target metabase-->
<!-- <save-as-script metabase="target" destination="$SaveScriptFolder$\Script2.sql" >
<metabase-object object-name="$SQLServerDb$" object-type ="Databases"/>
</save-as-script> -->
<!-- Data Migration-->
<!-- • object-name specifies the object(s) considered for data migration .
(can have indivdual object names or a group object name)
• object-type specifies the type of the object specified in the object-name attribute.
(if object category is specified then object type will be "category")
• write-summary-report-to specifies the path where the summary report will be generated.
If only the folder path is mentioned,then file by name DataMigrationReport.XML is created. (optional attribute)
• Summary report creation has 2 further sub-categories
• report-errors (="true/false", with default as "false" (optional attributes))
• verbose (="true/false", with default as "false" (optional attributes))
-->
<!--Example1: Data Migration of all tables in the schema (with all attributes)-->
<migrate-data object-name="arup.Tables"
object-type="category"
write-summary-report-to="$SummaryReports$"
report-errors="true"
verbose="true" />
<!--alternative convention for Data Migration Command-->
<!--Example2: Data Migration of specific tables with no object-type attribute & write-summary-report-to with a file name -->
<!--<migrate-data write-summary-report-to="$SummaryReports$\datamigreport.xml"
verbose="true">
<metabase-object object-name="$OracleSchemaName$.TestTbl" />
</migrate-data>-->
<!-- Save project -->
<save-project />
<!-- Close project -->
<close-project />
</script-commands>
</ssma-script-file>

Similar Messages

  • Macbook pro slow finder apps not working many errors found in console

    Problem description:
    finder is slow very at startup many errors found in console and after fixing some show up again and when fixed others show up. I run etrecheck here is the report.
    Thank you for any help
    EtreCheck version: 2.0.4 (89)
    Report generated 15 ottobre 2014 10:30:35 CEST
    Hardware Information: ℹ️
      MacBook Pro (17-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,3
      1 2.2 GHz Intel Core i7 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1680 x 1050
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 10:25:47
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750,16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 701.48 GB (464.15 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 47.81 GB (6.82 GB free)
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Count: 15
    Gatekeeper: ℹ️
      Anywhere
    Kernel Extensions: ℹ️
      /Applications/TechTool Pro 7.app
      [not loaded] com.micromat.driver.spdKernel (1 - SDK 10.8) Support
      /Applications/Toast 10 Titanium/Toast Titanium.app
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      /Library/Application Support/MacKeeper/AntiVirus.app
      [not loaded] net.kromtech.kext.AVKauth (2.3.7 - SDK 10.9) Support
      [loaded] net.kromtech.kext.Firewall (2.3.7 - SDK 10.9) Support
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungComposite (1.4.18 - SDK 10.6) Support
      [loaded] com.globaldelight.driver.BoomDevice (1.1 - SDK 10.1) Support
      [loaded] com.globaldelight.driver.VoilaDevice (1.1 - SDK 10.1) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.18 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.18 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.18 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.18 - SDK 10.6) Support
      /Users/[redacted]/Library/Parallels/Parallels Service.app
      [not loaded] com.parallels.kext.prl_hid_hook (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_hypervisor (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_netbridge (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_usb_connect (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_vnic (5.0 9376.599993) Support
    Launch Agents: ℹ️
      [invalid?] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.micromat.TechToolProAgent.plist Support
      [invalid?] com.oracle.java.Java-Updater.plist Support
    Launch Daemons: ℹ️
      [invalid?] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
      [loaded] com.barebones.authd.plist Support
      [running] com.micromat.TechToolProDaemon.plist Support
      [invalid?] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.rogueamoeba.hermes.plist Support
      [loaded] com.rogueamoeba.instanton-agent.plist Support
      [running] com.zeobit.MacKeeper.AntiVirus.plist Support
      [running] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.epson.epw.agent.plist Support
      [invalid?] com.Livestation.plist Support
      [invalid?] com.parallels.desktop.launch.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items: ℹ️
      iTunesHelper Applicazione (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Applicazione (/Applications/Dropbox.app)
      WashingMachineHelper UNKNOWN (missing value)
      RealPlayer Downloader Agent Applicazione (/Users/[redacted]/Library/Application Support/RealNetworks/RealPlayer Downloader Agent.app)
      Launch Nikon Message Center 2 Applicazione (/Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app)
      KiesAgent ApplicazioneHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicazioneHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
      Launch Nikon Message Center 2 Applicazione (/Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app)
      WDQuickView Applicazione (/Library/Application Support/WDSmartWare/WDQuickView.app)
    Internet Plug-ins: ℹ️
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      DivXBrowserPlugin: Version: 1.4 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.189
      QuickTime Plugin: Version: 7.7.3
      AmazonMP3DownloaderPlugin101749: Version: Unknown
      SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.20125.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    User Internet Plug-ins: ℹ️
      QuickTime Plugin: Version: 7.6.6
      EPPEX Plugin: Version: 3.0.5.0 Support
      AdobePDFViewer: Version: 10.0.0 Support
      SharePointBrowserPlugin: Version: 14.1.0 Support
      RealPlayer Plugin: Version: (null) Support
      Google Earth Web Plug-in: Version: 7.1 Support
      JavaPlugin2_NPAPI: Version: 14.9.0 - SDK 10.7
      iPhotoPhotocast: Version: 7.0
    Safari Extensions: ℹ️
      AdBlock (Disabled)
      HelloSign-for-Gmail
      Awesome Screenshot
      Evernote Web Clipper
      Ghostery
    3rd Party Preference Panes: ℹ️
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      TechTool Protection  Support
      WDQuickView  Support
    Time Machine: ℹ️
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 701.48 GB Disk used: 237.34 GB
      Destinations:
      TimeMachine [Network]
      Total size: 1 TB
      Total number of backups: 15
      Oldest backup: 2014-08-22 12:02:11 +0000
      Last backup: 2014-10-15 08:18:34 +0000
      Size of backup disk: Adequate
      Backup size 1 TB > (Disk used 237.34 GB X 3)
    Top Processes by CPU: ℹ️
          6% WindowServer
          5% com.apple.WebKit.Networking
          3% Safari
          2% cookied
          1% hidd
    Top Processes by Memory: ℹ️
      275 MB Finder
      275 MB AntiVirus
      215 MB com.apple.IconServicesAgent
      146 MB MacKeeper Helper
      146 MB Safari
    Virtual Memory Information: ℹ️
      2.22 GB Free RAM
      4.17 GB Active RAM
      797 MB Inactive RAM
      1.40 GB Wired RAM
      695 MB Page-ins
      0 B Page-outs

    A number of problems exist including the notorious MacKeeper. Start by removing it according to the instructions below.
    Follow these instructions to uninstall MacKeeper. They have been tested with the most recent version of MacKeeper. Earlier versions than the one released in 2012 require more extensive work to uninstall all its components.
    If you actually used MacKeeper to alter your system, e.g. "remove excess binaries" or such, you will need to reinstall OS X as well as all your additional software. Uninstalling MacKeeper is insufficient to reverse the corruption it is capable of - once again, that is if you used it.
    If you merely installed MacKeeper but did not use it to perform any particular action, the following instructions will suffice.
    If you used MacKeeper to encrypt any files or folders, use MacKeeper to un-encrypt them first.
    Quit the MacKeeper app if it is running.
    Open your Applications folder: Using the Finder's Go menu, select Applications.
    Drag the MacKeeper icon from your Applications folder (not the Dock) to the Trash.
    You will be asked to authenticate (twice).
    You do not need to provide a reason for uninstalling it.
    Just click the Uninstall MacKeeper button. You will be asked to authenticate again.
    After it uninstalls you may empty the Trash and restart your Mac. All that will remain is an inert log file that does nothing but occupy space on your hard disk.
    An apparently modified Hosts file is another concern, which is apparently blocking Adobe software requests to contact its server for whatever reason it needs to do that. If you know the reason for altering Hosts then you can troubleshoot it on the basis of that knowledge. If you do not know the reason, it often occurs as a result of installing pirated or "cracked" software to circumvent its ability to contact an external host to verify their software was legitimately obtained. If that's the case then anything is possible as a result of having installed illegally obtained software.
    Awesome Screenshot is adware. Most people don't install such things unless they are deceived into doing so.
    Don’t install browser extensions unless you understand their purpose. For Safari, go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone. For browsers other than Safari, perform the equivalent actions.
    For an explanation or how this may have occurred and how to avoid it in the future read How to install adware.
    Uninstall the following according to their respective instructions.
    MicroMat "TechTool Pro"
    Western Digital "drive utility" software
    Intego "Washing Machine"
    You need to be much more circumspect regarding the software you choose to install on your Mac. May I suggest that you review the following setting in System Preferences?
    Although you may easily override that setting, it will serve to protect you from inadvertently installing garbage.

  • Error in B2B Console

    Hi gurus,
    I am gettig the following error in b2b console while running one of our outbound agreements.This is a strange error and i am seeing it for the first time.
    StackTrace:
    Error -: AIP-50014: General Error: Error -: AIP-13118: Business Logic Internal Error: java.sql.SQLException: ORA-28232: invalid input length for obfuscation toolkit
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT_FFI", line 84
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT", line 233
    ORA-06512: at line 1
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1194)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:836)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:402)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-13118: Business Logic Internal Error: java.sql.SQLException: ORA-28232: invalid input length for obfuscation toolkit
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT_FFI", line 84
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT", line 233
    ORA-06512: at line 1
         at oracle.tip.common.security.Secret.decode(Secret.java:134)
         at oracle.tip.adapter.b2b.tpa.RepoDataAccessor.addTransportInfo(RepoDataAccessor.java:994)
         at oracle.tip.adapter.b2b.tpa.RepoDataAccessor.addFROMPartyInfo(RepoDataAccessor.java:838)
         at oracle.tip.adapter.b2b.tpa.RepoDataAccessor.getAgreementDetails(RepoDataAccessor.java:412)
         at oracle.tip.adapter.b2b.tpa.TPAProcessor.processTPA(TPAProcessor.java:742)
         at oracle.tip.adapter.b2b.tpa.TPAProcessor.processOutgoingTPA(TPAProcessor.java:223)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1107)
         ... 3 more
    Caused by: java.sql.SQLException: ORA-28232: invalid input length for obfuscation toolkit
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT_FFI", line 84
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT", line 233
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:315)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:281)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:638)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:183)
         at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:872)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3000)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3092)
         at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4285)
         at oracle.tip.common.security.Service.decode(Service.java:119)
         at oracle.tip.common.security.Secret.decode(Secret.java:130)
         ... 9 more
    Any ideas?
    Oracle B2B Version- 10.1.2.3
    Regards
    Ayush

    Thanks Anuj. This happened in one of our Test Instances, after purging the repo and reimporting the agreements its working fine. If it comes up again or if i see it in Prod instance i will open an SR with Oracle.
    Thanks
    Ayush

  • ITunes throwing cryptic error to the console while lagging

    Everytime I change a file attribute in iTunes or delete a song, iTunes throws the following error to the console:
    2/24/12 12:33:35.677 PM mds: (Warning) FMW: event:1 had an arg mismatch.  ac:2 am:51
    it takes several seconds to switch between songs or perform any kinds of simple editing like editing comments
    In addition to these fun time, I've been getting the following popup alert window periodically when I attempt to open iTunes:
    "The iTunes application could not be opened.  An unknown error has occurred (-50)."
    what gives?  Also what is "FMW"?
    MBP 17" quad i7
    Lion Latest Build
    8 gig ram
    14TB array

    yes I did actually!
    I removed an iTunes-specific plugin called "Quartz Composer Visualizer.bundle" and all of the 3rd party iTunes visualizers
    While I was snooping around I also removed a collection of old kernel extensions with ancient modification dates that just happened to perpetually migrate into each version of the OSX I updated to.
    it's probably in your best interest to remove any iTunes plugins you have and see if you can replace them one at a time (assuming you have itunes plugs) until you discover the bug.
    Another issue I had was excessive firewire cable length  (total accumulated firewire cablelength) .  This interferes with iTunes' ability to do a lot of things incl playback through a firewire audio interface while reading the music off a firewire drive
    let me know if this helps

  • Error Starting Web Console.

    Trying to acces DSCC via the web console. Get the following errors on web console startup:
    28-Jun-2007 | 16:43:06 | INFO | The console instance "console" is starting in
    admin mode.
    28-Jun-2007 | 16:43:06 | INFO | Resolving shared jar files
    28-Jun-2007 | 16:43:06 | ERROR | Jar resource "audit_jar" in application
    console not shared, path does not exist: /usr/lib/audit/Audit.jar
    28-Jun-2007 | 16:43:06 | INFO | Resolving login modules
    28-Jun-2007 | 16:43:06 | INFO | Resolving Java options
    28-Jun-2007 | 16:43:06 | INFO | Resolving web modules
    28-Jun-2007 | 16:43:07 | ERROR | Error generating product images for "dccapp"
    web application: Product name string is empty or null
    28-Jun-2007 | 16:43:07 | INFO | Deployed web application "dccapp".
    28-Jun-2007 | 16:43:08 | INFO | The console instance "console" is starting in
    user mode.
    28-Jun-2007 | 16:43:53 | ERROR | Unexpected error determining status of server:
    no applications loaded
    28-Jun-2007 | 16:43:53 | ERROR | The console failed to start.
    Anyone know how to resolve?

    Here is the output from the status command:
    ## /usr/sbin/smreg is present
    ## /usr/sbin/smcwebserver is present
    ## /opt/support/sunone/SUNWdsee/dscc6/dccapp is present
    ## Running /usr/sbin/smreg list -a
    ## Running /usr/sbin/smreg list -l
    ## dccModule_1.0 is displayed
    ## jmx.jar/dccModule_1.0 is displayed
    ## jmxremote.jar/dccModule_1.0 is displayed
    ## jmxremote_optional.jar/dccModule_1.0 is displayed
    ## sasl.jar/dccModule_1.0 is displayed
    ## sunsasl.jar/dccModule_1.0 is displayed
    ## dcc.jar/dccModule_1.0 is displayed
    ## nquickclient.jar/dccModule_1.0 is displayed
    ## nquickapi.jar/dccModule_1.0 is displayed
    ## slapy.jar/dccModule_1.0 is displayed
    ## dpcfg.jar/dccModule_1.0 is displayed
    ## clip.jar/dccModule_1.0 is displayed
    ## common.jar/dccModule_1.0 is displayed
    ## cacao_cacao.jar/dccModule_1.0 is displayed
    DSCC Application is registered in Sun Java (TM) Web Console
    ## /usr/sbin/cacaoadm is present
    ## /opt/support/sunone/SUNWdsee/dscc6/lib/jar/nquickmodule.jar is present
    ## Running /usr/sbin/cacaoadm list-modules -r
    DSCC Agent is registered in Cacao
    ## Running /usr/sbin/cacaoadm status
    ## Running /usr/sbin/cacaoadm list-modules
    ## Running /usr/sbin/cacaoadm get-param network-bind-address
    ## Running /usr/sbin/cacaoadm get-param jmxmp-connector-port
    ## /opt/support/sunone/SUNWdsee/ds6/bin/dsadm is present
    DSCC Registry has been created
    Path of DSCC registry is /var/opt/SUNWdsee/dscc6/dcc/ads
    Port of DSCC registry is 3998
    I have done the dismantle - initialize sequence a couple fo times. Still getting this on webconsole startup:
    29-Jun-2007 | 10:06:24 | INFO | The console instance "console" is starting in
    admin mode.
    29-Jun-2007 | 10:06:24 | INFO | Resolving shared jar files
    29-Jun-2007 | 10:06:24 | ERROR | Jar resource "audit_jar" in application
    console not shared, path does not exist: /usr/lib/audit/Audit.jar
    29-Jun-2007 | 10:06:24 | INFO | Resolving login modules
    29-Jun-2007 | 10:06:24 | INFO | Resolving Java options
    29-Jun-2007 | 10:06:24 | INFO | Resolving web modules
    29-Jun-2007 | 10:06:26 | INFO | The console instance "console" is starting in
    user mode.
    29-Jun-2007 | 10:07:11 | ERROR | Unexpected error determining status of server:
    no applications loaded
    29-Jun-2007 | 10:07:11 | ERROR | The console failed to start.

  • Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.EBEngine[4611:b07] ditto: /System/V2: Permission denied

    Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.   EBEngine[4611:b07] ditto: /System/V2: Permission denied

    Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.   EBEngine[4611:b07] ditto: /System/V2: Permission denied

  • Artwork Not Loading - Error Message in Console

    I am having trouble loading Album Artwork. I have tried fetching it via Advanced option in ITUNES both logged in and logged out of the STORE.
    I noticed following error message in console:
    22/10/2009 20:44:20 [0x0-0x5a05a].com.apple.iTunes[697] Thu Oct 22 20:44:20 Tommy-Gargans-Computer.local iTunes[697] <Error>: doClip: empty path.
    Presume this is significant but I am afraid I don't understand it. Any help appreciated.
    Thanks

    I think I have read somewhere this is a "non issue" but I still get the error message in my console messages. Wish they'd fix that. It's hard enough to diagnose problems using console without having messages appear that don't mean anything.

  • SSMA Console - Migrating Oracle 11g to SQL 2012

    Hi there!
    I have two questions related to migrating data from Oracle to SQL.
    1) I have an Oracle database with several schemas.  At the time of the connection SSMA loads all objects for all schemas presented in Oracle, which takes 1 hour to finish.  Is there a way at the time of the connection to limit it to load only
    the schema I want to work?
    2) In case I want to extract, for example, 2 tables only.  How do I prepare the script below to accept another table name?
    I tried using a comma and repeating the command "$OracleSchemaName$.MySecondTable" but, didn't work.
      <migrate-data object-name="$OracleSchemaName$.MyFirstTable"
                      object-type="Tables"
                      write-summary-report-to="$SummaryReports$"
                      report-errors="true"
                      verbose="true" />
    Thanks.
    Marcio

    Hi Malisaqin:
    Thanks for replying.
    I've been through all articles related with SSMA but couldn't find any explanation for my questions.
    For my second question I had to repeat the same node for as many tables I have.  I'm still doing some tests with another variations to see if I can get it working.
    The link you sent is about using the UI and not the Console application.
    Thanks,

  • 3 error messages in console slow down mavericks

    mavericks is a lot slower than snow leopard, sometimes programs even stop working for approx. 30 seconds.
    below the console messages
    and below that the printout from etreCheck.
    1) systemstatsd complains once per minute "assertion failed" - I don't have the faintest idea, which module failed
    2) Excel2008 and office 2008 (database daemon) let me know, that something is deprecated and will be removed soon
    Excel latest update was done 2 days ago . Can I stop these messages or remove the daemon?
    Any help or idea is apppreciated very much
    PS: is there a manual on how to interpret system messages? I could not find anything.
    here the console messages
    06.12.13 01:46:53,820
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:48:01,378
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:48:16,303
    ntpd[209]
    FREQ state ignoring +0.000498 s
    06.12.13 01:48:52,776
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:49:57,354
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:51:00,958
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:52:09,737
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:52:22,000
    kernel[0]
    nspace-handler-set-snapshot-time: 1386291144
    06.12.13 01:52:22,325
    com.apple.mtmd[40]
    Set snapshot time: 2013-12-06 01:52:24 +0100 (current time: 2013-12-06 01:52:22 +0100)
    06.12.13 01:52:56,601
    ntpd[209]
    FREQ state ignoring +0.000923 s
    06.12.13 01:53:18,333
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:54:23,823
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:55:24,336
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:56:27,889
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:57:27,334
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:58:21,771
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 01:59:23,413
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:00:24,842
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:01:24,622
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:02:29,136
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:03:25,547
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:04:31,225
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:05:32,797
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    06.12.13 02:06:10,780
    Microsoft Excel[872]
    OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:17,787
    Microsoft Database Daemon[874]
    OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:18,307
    Microsoft Excel[872]
    OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:18,307
    Microsoft Excel[872]
    OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:18,325
    Microsoft Database Daemon[874]
    OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:18,325
    Microsoft Database Daemon[874]
    OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    06.12.13 02:06:22,371
    Microsoft Excel[872]
    OTInetGetInterfaceInfo is unimplemented and will be removed soon.  Please stop using it.
    06.12.13 02:06:24,875
    Console[877]
    setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    06.12.13 02:06:45,315
    systemstatsd[358]
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb
    and here the etreCheck printout
    Hardware Information:
              MacBook Pro (13-inch, Mid 2010)
              MacBook Pro - model: MacBookPro7,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 320M - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 12:11:10
    Disk Information:
              WDC WD7500BPVT-00A1YT0 disk0 : (750,16 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        mac HD (disk0s2) /: 749,3 GB (199,3 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              org.virtualbox.kext.VBoxDrv          (4.3.4)
              org.virtualbox.kext.VBoxUSB          (4.3.4)
              org.virtualbox.kext.VBoxNetFlt          (4.3.4)
              org.virtualbox.kext.VBoxNetAdp          (4.3.4)
              com.google.filesystems.fusefs          (2.2.1)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.actualtechnologies.odbcmanager.plist
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.oracle.java.Helper-Tool.plist
              [not loaded] com.teamviewer.teamviewer_service.plist
              [loaded] org.macosforge.xquartz.privileged_startx.plist
              [not loaded] org.virtualbox.startup.plist
    Launch Agents:
              [loaded] com.oracle.java.Java-Updater.plist
              [not loaded] com.teamviewer.teamviewer.plist
              [not loaded] com.teamviewer.teamviewer_desktop.plist
              [loaded] org.macosforge.xquartz.startx.plist
    User Launch Agents:
              [not loaded] org.virtualbox.vboxwebsrv.plist
    User Login Items:
              iTunesHelper
              Canon IJ Network Scanner Selector2
              AirPlayitServerManager
    3rd Party Preference Panes:
              Flash Player
              Java
              MacFUSE (Tuxera)
              MenuMeters
    Internet Plug-ins::
              JavaAppletPlugin: Version: Java 7 Update 45
              FlashPlayer-10.6: Version: 11.9.900.152 - SDK 10.6
              QuickTime Plugin: Version: 7.7.3
              Flash Player: Version: 11.9.900.152 - SDK 10.6
              EPPEX Plugin: Version: 3.0.5.0
              Default Browser: Version: 537 - SDK 10.9
              Silverlight: Version: 4.1.10329.0
              iPhotoPhotocast: Version: 7.0
    Bad Fonts:
              None
    Old applications:
              Microsoft AutoUpdate:          Version: 2.3.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Ship Asserts:          Version: 1.1.3 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft-Fehlerberichterstattung:          Version: 2.2.8 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              VoodooPad Lite:          Version: 4.3.6 - SDK 10.5
                        /Applications/VoodooPad Lite.app
              VoodooPad Pro:          Version: 4.3.6 - SDK 10.5
                        /Applications/VoodooPad Pro.app
              WiFi Analyzer:          Version: 1.0.2 - SDK 10.0
                        /Applications/WiFi Analyzer.app
              Wondershare Helper Compact:          Version: 2.2.5.6 - SDK 10.5
                        /Users/greiff/Library/Application Support/Helper/Wondershare Helper Compact.app
              iSkysoft Helper Compact:          Version: 2.2.6.4 - SDK 10.5
                        /Users/greiff/Library/Application Support/Helper/iSkysoft Helper Compact.app
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        mac HD: Disk size: 697.84 GB Disk used: 512.22 GB
              Destinations:
                        Time Machine-Backups [Local] (Last used)
                        Total size: 698.32 GB
                        Total number of backups: 16
                        Oldest backup: 2013-05-22 07:27:44 +0000
                        Last backup: 2013-12-02 09:57:34 +0000
                        Size of backup disk: Too small
                                  Backup size 698.32 GB < (Disk used 512.22 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   7%          VirtualBoxVM
                   7%          WindowServer
                   2%          EtreCheck
                   1%          Safari
                   1%          SystemUIServer
    Top Processes by Memory:
              2.65 GB          VirtualBoxVM
              172 MB          com.apple.IconServicesAgent
              172 MB          Mail
              139 MB          softwareupdated
              131 MB          Safari
    Virtual Memory Statistics:
              175 MB          Free RAM
              2.19 GB          Active RAM
              1.92 GB          Inactive RAM
              3.42 GB          Wired RAM
              448 MB          Page-ins
              9 MB          Page-outs
    Thanks for your help
    Rudolf

    solved partially
    I switched router and WLAN off and after a minute on again (software reset did not solve the problem) and all error messages are gone now.
    exept the sytemstatsd message which is still there once a minute
    assertion failed: 13A603: systemstatsd + 3361 [63F86D0F-34D4-3013-B8CC-78A5A4B559A3]: 0xb

  • Error Displayed on Console while Deplyoing a BPEL Process

    While trying to deploy a BPEL Process which interacts with a external web service , no Error is seen either during validating the process, nor during compilation time , but on deploying the process the console displays the following Error
    Build Information:
    Oracle BPEL Server version 10.1.2.0.0
    Build: 1442
    Build time: Fri Apr 29 16:59:32 PDT 2005
    Build type: release
    Source tag: BPELPM_10_1_2_release_branch
    Exception Message:
    [java.lang.NullPointerException]
    null
    Exception Trace:
    java.lang.NullPointerException
         at com.collaxa.cube.engine.deployment.ProcessRevisionRegistry$RevisionTable.remove(ProcessRevisionRegistry.java:296)
         at com.collaxa.cube.engine.deployment.ProcessRevisionRegistry.delete(ProcessRevisionRegistry.java:112)
         at com.collaxa.cube.engine.deployment.CubeProcessLoader.destroy(CubeProcessLoader.java:596)
         at com.collaxa.cube.engine.deployment.CubeProcessHolder.reload(CubeProcessHolder.java:972)
         at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:922)
         at com.collaxa.cube.engine.deployment.CubeProcessHolder.getProcess(CubeProcessHolder.java:787)
         at com.collaxa.cube.engine.deployment.CubeProcessHolder.getProcess(CubeProcessHolder.java:765)
         at com.collaxa.cube.engine.deployment.CubeProcessHolder.getStatus(CubeProcessHolder.java:211)
         at com.collaxa.cube.engine.deployment.DeploymentHelper.lookupProcessStatus(DeploymentHelper.java:301)
         at com.collaxa.cube.ejb.impl.FinderBean.lookupProcess(FinderBean.java:86)
         at IFinderBean_StatelessSessionBeanWrapper42.lookupProcess(IFinderBean_StatelessSessionBeanWrapper42.java:228)
         at com.oracle.bpel.client.Locator.lookupProcess(Locator.java:245)
         at displayProcess.jspService(_displayProcess.java:88)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:220)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:138)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Please touch base with suggestions to the problem.
    Thank You.
    Sri Vidya
    Message was edited by:
    Sri Vidya A

    As I stated in my previous post, there is an issue with the BPEL process not responding back to ESB in a timely manner.
    Unfortunately I don't have your process infront of me so it will require some thinking on your behalf to undersatnd how and why this may be happening.
    Things to ask yourself.
    - Is the data getting past correctly from the ESB to BPEL
    - What happend to the BPEL process that the ESB called
    - Is the ESB calling the BPEL process you are expecting, check server, and bpel versions
    - What does the opmn or domain logs say
    cheers
    James

  • Error shown in console while running BPEL process

    We have built one BPEL process that creates AR invoices in Oracle Apps from a legacy system. While deploying the process it deploys without Error, but when viewing the process through BPEL Console by clicking the instance it throws Below ERROR -- "java.rmi.RemoteException: No Exception - originate from:java.lang.Exception: No Exception - originate from:; nested exception is:
    java.lang.Exception: No Exception - originate from:"
    We have increased <transaction-config timeout="90000"/> residing in Oracle_Home\integration\orabpel\system\appserver\oc4j\j2ee\home\server.xml file. but still the Error remains same....
    Any help will be appreciated.
    Regards,
    Suman

    Have you created a connection pool with the JNDI specified while configuring adapter in Oracle Apps adapter on weblogic admin console. You should create it at Deployments --> OracleAppsAdapter --> Configuration--> Outbound Connection pools
    Make sure to update the adapter after creating a connection pool so that changes can take effect.
    Regards,
    Anuj

  • Error messages in Console Log of Apple System Profiler

    Today, I manually executed some CRON scripts from the Terminal window as part of a regular maintenance cycle. Before doing so, I ran the Apple System Profiler (OS 10.2.8), clicked on the Logs tab, and checked the Console Log. It had three days of error messages and other info (more on this later), but my intent was just to check the last entries in the log before running the CRON scripts, so that I could detect any additional errors logged as a result of the CRON scripts.
    Having checked the log, I quit the Profiler and all other applications. Then I opened the Terminal window and entered:
    sudo periodic monthly
    I was prompted for my adminstrator password, and it then executed the script. It took just seconds to execute. Following this, I also executed
    sudo periodic weekly
    sudo periodic daily
    The weekly CRON took about 2 minutes to finish, and the daily only a few seconds. I ran Apple System Profiler again and checked the console log and found this additional error message (not present prior to running the scripts):
    Feb 15 13:43:10 Drake-Bradleys-Computer sendmail[865]: NOQUEUE:
    SYSERR(root): /etc/mail/sendmail.cf: line 93: fileclass: cannot open '/
    etc/mail/local-host-names': Group writable directory
    (I have inserted hard returns to break the single-line error message into three lines to avoid requiring readers to use the horizontal scroll bar.)
    Can anyone tell me what this error means, and what, if anything, I should do about it?
    Following all of this, I next repaired my permissions with Disk Utility (and yes, after dragging iTunes 6.0.2 to the desktop). I then ran the profiler, checked the log, and encountered these two additional error messages:
    file not in an order that can be processed (local relocation entries out
    of place): ./Library/Frameworks/StuffIt.framework/Versions/A/StuffIt
    file not in an order that can be processed (local relocation entries out
    of place): ./Library/Frameworks/StuffIt.framework/Versions/A/StuffIt
    (Again, hard returns are inserted.)
    The errors are identical. They presumably were generated by my running disk permissions, as other applications were shut down. It appears the error refers to the Suffit application.
    Any ideas what causes these errors?
    Finally, a last question. (And thanks for being patient with such a long post.) The console log contains a large number of error messages for each day. This occurs even on days when I have had no apps hang, or any other system problems (power failures, etc.) that I was aware of. Many of the errors seem to involve windows manangement. The most common one is:
    Feb 14 17:11:18 Drake-Bradleys-Computer /System/Library/
    CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer:
    kCGErrorIllegalArgument : CGSGetWindowGeometry: Invalid window
    But other examples are:
    Feb 14 17:42:21 Drake-Bradleys-Computer WindowServer[194]:
    Cannot merge groups (yet) for wid 1877, otherwid 1881
    Feb 15 10:34:37 Drake-Bradleys-Computer WindowServer[194]:
    Reserved range exhausted. (0xbbf45000 to 0xbc271000 goes out of
    bounds)
    Feb 15 10:35:03 Drake-Bradleys-Computer WindowServer[194]:
    CGXRemoveTrackingArea : Invalid tracking area
    Is it fairly common for the console log to be filled with dozens of errors like this on a given day even though the iMac seems to be functioning normally?
    Thanks for any advice,
    Drake Bradley
    P.S. I have a Casio digital camera and an HP printer hooked up to the iMac, and very recently, an Iomega HDD. (The latter was not connected for the tests reported above.)

    534/2980
    Hi Drake,
    Yes, it is common, and I wouldn't worry about it.
    These "errors" are not about anything wrong. My guess is that it's a developer jargon to indicate that something didn't happen, only because there is no possibility of it happening given your specific settings/system options.
    See for example the statements "System woke from sleep" or "System going to sleep" in "error_log"...
    We don't know to what extend these "errors" belong to so many unmodified files that used to do something in UNIX 15 years ago, but are now completely useless, harmless and so small they can't affect Mac OS X performance in any way?
    Enjoy your Mac!
    Axl

  • Im getting an error in my console

    Mar 11 18:24:44 kodys-imac-g5 mDNSResponder: ERROR: getOptRdata - unknown opt 4
    so this error popped up like i dont know how many times in my console today till 19:38:23 can anyone tell me what this means? i have no idea should ignore it or should i do something about it?

    A workstation or server entering sleep mode does a lookup for a _sleep-proxy._udp DNS record to find a sleep proxy to answer Wake-On-LAN requests on its behalf (using the EDNS0 Owner option (4)) in case an important packet is sent to the sleeping machine.
    Older versions of Mac OS X Server don't know how to handle opt 4 requests coming from workstations running newer versions of Mac OS X, so the bizarre packet is logged but no action is taken. The more Snow Leopard machines you have, the more your log will fill with "mDNSResponder: ERROR: getOptRdata - unknown opt 4 " messages. You may have noticed that these messages get more frequent during times when workstations are heavily used, and that they mysteriously disappear outside of business hours - the reason, of course, is that all your workstations go to sleep and aren't being woken up until a human presses a key or mouse button the next day. Laptops running on battery are usually set to sleep more frequently, so large numbers of mobile users will fill your 10.4 server logs.
    As has been already stated, you can safely ignore this message...or upgrade to Snow Leopard or Lion Server to eliminate it completely.
    The Wikipedia entry for Bonjour Sleep Proxy is a good place to start your reading on this issue:
    http://en.wikipedia.org/wiki/Sleep_Proxy_Service

  • Error in BPEL console Urgent

    Hi,
    I try to invoke an OSB project in BPEL process, i deployed it in em console. when i try to test it by giving inputs i am getting the following error,
    empty variable/expression result. The XPath variable or expression /ns1:GetEmployee_Output/ns3:ListOfEmployeeInterface/ns3:Employee/ns3:PersonalId is empty at line 164. An attempt to read or copy data referenced or computed by the XPath expression either had invalid data, according to the XML schema, or did not contain certain optional data. Ensure that the variable or expression result named in the error message is not empty. Enable XML schema validation of related variables to ensure the run-time data is valid.
    can anyone help me to solve this issue.
    Thanks

    Hi -
    I guess you are trying to do a copy operation on the element which is empty.
    Please check if your element PersonalId is empty.
    Edited by: Ramesh Menon on Jun 21, 2011 3:41 PM

  • Error Starting Weblogic Console

    I am getting the following error while starting weblogic 5.1 console under
    solaris. Please help.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no awt in
    java.library.path
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:50)
    at java.lang.LinkageError.<init>(LinkageError.java:43)
    at
    java.lang.UnsatisfiedLinkError.<init>(UnsatisfiedLinkError.java:42)
    at java.lang.ClassLoader.loadLibrary(Compiled Code)
    at java.lang.Runtime.loadLibrary0(Runtime.java:470)
    at java.lang.System.loadLibrary(System.java:778)
    at
    sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:57)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.loadLibraries(Toolkit.java:882)
    at <Unloaded Method>
    at <Unloaded Method>
    at weblogic.admin.ConsoleStarter.startup(ConsoleStarter.java:16)
    at weblogic.Console.main(Console.java:41)

    what version JDK you are using?
    If you are on JDK 117 , make sure you have classes.zip available in
    your java classpath
    i.e. java -classpath $JDK_HOME/lib/classes.zip;$WL_HOME/classes/boot:$WL_HOME/
    lib/weblogicaux.jar weblogic.Console
    let us know if you are still having problems..
    Kumar
    Rakesh Gupta wrote:
    I am getting the following error while starting weblogic 5.1 console under
    solaris. Please help.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no awt in
    java.library.path
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:50)
    at java.lang.LinkageError.<init>(LinkageError.java:43)
    at
    java.lang.UnsatisfiedLinkError.<init>(UnsatisfiedLinkError.java:42)
    at java.lang.ClassLoader.loadLibrary(Compiled Code)
    at java.lang.Runtime.loadLibrary0(Runtime.java:470)
    at java.lang.System.loadLibrary(System.java:778)
    at
    sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:57)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.loadLibraries(Toolkit.java:882)
    at <Unloaded Method>
    at <Unloaded Method>
    at weblogic.admin.ConsoleStarter.startup(ConsoleStarter.java:16)
    at weblogic.Console.main(Console.java:41)

Maybe you are looking for

  • New Install Error on Windows Vista

    On a new install I am getting this error when I try to request license. I am trying to install it locally on a new Windows Vista machine. Server Error in '/B1WebTools' Application. Object reference not set to an instance of an object. Description: An

  • How to enable wireless use of Time Capsule

    I have already configured it and as long as its plugged in ethernet I can backup from either of my computers. The problem is I want to use it wirelessly from now on for the small hourly/daily backups. Can someone please let me know how to adjust the

  • Where is the  configuration for revaluation of FX to GL

    we have a number of transactions in which a supplier in Germany packs product for us and sends that product directly to our Atlanta plant for storage. They invoice us in Palm Beach,FL for the product and we charge it to Manufacturing. That is an inte

  • It is possible to change wording in the admin console?

    I'm just curious... as someone who's trying to create a BC site for a non-profit, is it possible at all to change the wording/language of the administrator console for BC? I'm mainly thinking about the E-Commerce section. Thanks!

  • Satellite A350 - error when installing latest Bios (64bit OS)

    I can't figure out what is wrong: I'm trying to install the latest bios, bios-20090803144625 (64bit), on a Statellite 350 running Windows 7 RC. I get the following error from "Phoenig WinPhlash64": "Failed to receive system Bios information BCPSYS bl