Error with Sybase 12 Migration in syscomments.xml XML-0221

I am getting an XML error when trying to load offline capture files into OMWB. This is a Sybase 12 source system, using OMWB Build 20050629. Below is my error.log:
** Oracle Migration Workbench
** Production
** ( Build 20050629 )
** OMWB_HOME: D:\oracle\Omwb
** user language: en
** user region: null
** user timezone:
** file encoding: Cp1252
** java version: 1.4.2_04
** java vendor: Sun Microsystems Inc.
** o.s. arch: x86
** o.s. name: Windows XP
** o.s. version: 5.1
** Classpath:
..\lib\boot.jar
** Started : Tue Jun 10 16:22:48 EDT 2008
** Workbench Repository : Oracle Database 11g Release 11.1.0.0.0 - Production
Repository Connection URL: jdbc:oracle:thin:@kcuster-db:1521:orcl
** The following plugins are installed:
** Informix Dynamic Server 9.x Plugin, Production Release 10.1.0.4.0
** Sybase Adaptive Server 12 Plugin, Production Release 10.1.0.4.0
** Active Plugin : Sybase12
EXCEPTION :SQLServer2KDisconnSourceModelLoad.fatalError(): XML Parser Fatal Errororg.xml.sax.SAXParseException: file:/D:/My Documents/GSD DB Migrations/GD/offline/sloracle/sybase12_syscomments.XML<Line 105771, Column 28>: XML-0221: (Fatal Error) Invalid char in text.
Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: org.xml.sax.SAXException: file:/D:/My Documents/GSD DB Migrations/GD/offline/sloracle/sybase12_syscomments.XML<Line 105771, Column 28>: XML-0221: (Fatal Error) Invalid char in text.
Here is the section in syscomments.XML that supposedly has an error:
DELETE FROM SPALTSSCNAllowChgs
WHERE NOT EXISTS
     ( SELECT * FROM #DOCCHGS
*** WHERE (SPALTSSCNAllowChgs.SPALTItemAddress = #DOCCHGS.ItemAddress) and
(SPALTSSCNAllowChgs.ActivityNameShort </ec><ec>0</ec><ec></ec></er><er><ec>1061630875</ec><ec>1</ec><ec>42</ec><ec>0</ec><ec>0</ec><ec>= #DOCCHGS.ActivityNameShort) and
(SPALTSSCNAllowChgs.AllowanceDocType in ("S","T")) and
(SPALTSSCNAllowChgs.OSAELAPLNum = #DOCCHGS.AllowanceDocNum) and
(SPALTSSCNAllowChgs.ReprovCode = @ReprovWork) and
(#DOCCHGS.USUKIndica</ec><ec>0</ec><ec></ec></er><er><ec>1061630875</ec><ec>1</ec><ec>43</ec><ec>0</ec><ec>0</ec><ec>tor = "US")) and
     ( SPALTSSCNAllowChgs.ReprovCode = @ReprovWork ) and
     ( SPALTSSCNAllowChgs.AllowanceDocType in ("S","T") )
If @@error != 0 return
The asteriks indicate the line referenced in error.log, but could the weird character after the word return be causing the error?
Edit: Strange, the character doesn't appear in the forums, but in the file it looks like a backwards capital L, raised above the line of normal text
Thanks,
Kevin
Message was edited by:
KevinC_VA

Hi Kevin,
It could well be the strange character thats causing the problems.
But its best if you start your migration project using the SQL Developer Migration Workbench. Which is the new tool supporting Sybase migrations to Oracle.
Download SQL Developer (it includes the new migration workbench extensions)
http://www.oracle.com/technology/products/database/sql_developer/index.html
Get the JTDS driver from sourceforge or Check For Updates in SQL Developer, so that you can connect to Sybase or SQL Server.
Heres some details of the Migration Extensions
http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
If you still experience the issue, get back to me and Ill take a look.
Regards,
Dermot.

Similar Messages

  • Problems/Errors with MS SQL7-Migration to Oracle8i

    I have a problem with the migration from MS SQL7 to Oracle 8i. I start the Migration Workbench (create Oracle-Modell in a Oracle-Database), migration tables -
    ok, indexes - ok, first views - ok then errors.
    I get the error "ORA-03114" ("Not connected to Oracle" - or similar). ?! What can I do? Please help. It's very important!
    Other Question to migration:
    Original SQL-View in SQL7: (It's only ONE example for MORE views with problems)
    SELECT *, CASE WHEN udayszvk2 > 30 THEN 30 ELSE udayszvk2 END AS UDaysZVK, Udays - sasotage AS UDaysArbeit
    FROM UDays_1
    Oracle Migration Workbench shows me (with error):
    CREATE OR REPLACE FORCE VIEW UDays AS
    SELECT *, DECODE(1,DECODE(least(udayszvk2,30),udayszvk2,0,1)/*expr > expr*/ ,30,udayszvk2) UDaysZVK, Udays - sasotage UDaysArbeit
    FROM UDays_1
    I think it must be correctly:
    CREATE OR REPLACE FORCE VIEW UDays AS
    SELECT *, DECODE(SIGN(udayszvk2,30),1,30,udayszvk2) UDaysZVK, Udays - sasotage AS UDaysArbeit
    FROM UDays_1
    Or not? Do I make a mistake? It's really URGENT!
    I use WINNT40 (SP6); Oracle 8.1.6i; MS SQL7 (SP2)
    Thank you very much.
    Swen

    Hi jeevan,
    This is rami. I am also doing same project. you can remove the master(system) tables. contact me through my mail-Id is [email protected] I am using MIg Workbench to migrate.more in mail.
    rami

  • Error with getOutputStream() when trying to post xml

    Hi all,
    I'm attempting to use the URLConnection class to open up a connection to peform an http post with some xml. When opening the data output stream, I am receiving an internal server error (500) on my Weblogic 6.1 server. The error is occuring at the line:
    DataOutputStream dataOut = new DataOutputStream(urlConn.getOutputStream());
    My entire code is as follows:
    <%@ page language="java" %>
    <%@ page import="java.util.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.net.*"%>
    <%
    String xml_body = "<my xml string here>"
    String sourceUrl = "https://wwwcie.ups.com/ups.app/xml/Rate";
    URL url = new URL(sourceUrl);
    URLConnection urlConn = url.openConnection();
    // prepare input and output, disable caching, set properties
    urlConn.setDoInput(true);
    urlConn.setDoOutput(true);
    urlConn.setUseCaches(false);
    urlConn.setRequestProperty( "Content-Type", "application/x-www-form-urlencoded");
    urlConn.setRequestProperty("Content-Length", " " + xml_body.length());
    ((HttpURLConnection)urlConn).setRequestMethod("POST");
    // Post output
    DataOutputStream dataOut = new DataOutputStream(urlConn.getOutputStream());
    dataOut.writeBytes(xml_body);
    dataOut.flush();
    dataOut.close();
    //DataInputStream dataIn = new DataInputStream(urlConn.getInputStream());
    // do input processing here
    %>
    Am I implementing this class properly? I see a NumberFormatException being thrown...but at not sure why this is occuring for my data output stream. The error in my log is as follows:
    ####<Jul 29, 2003 1:53:45 PM MDT> <Error> <HTTP> <SFNTCPSWEB> <PIA> <ExecuteThread: '44' for queue: 'default'> <> <> <101020> <[WebAppServletContext(7077998,PORTAL,/PORTAL)] Servlet failed with Exception>
    java.lang.NumberFormatException: 1191
         at java.lang.Integer.parseInt(Integer.java:414)
         at java.lang.Integer.parseInt(Integer.java:463)
         at weblogic.net.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:168)
         at jsp_servlet.__send1._jspService(__send1.java:119)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2502)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2208)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Hi,
    Assuming that you are making a valid connection to the https://
    (What jre are you using, 1.4+ ?)
    A DataInputStream is for reading primitive Java types, yea? Which is why you get a parse integer error, no doubt from some URLencoded data. Try using a BufferedInputStream instead. If it is not a tremendous amount of data, append it in a string buffer then use a java.net.URLdecoder to get the true data :-)
    Hope this helps,
    Thunder
    Hi all,
    I'm attempting to use the URLConnection class to open
    up a connection to peform an http post with some xml.
    When opening the data output stream, I am receiving
    an internal server error (500) on my Weblogic 6.1
    server. The error is occuring at the line:
    DataOutputStream dataOut = new
    DataOutputStream(urlConn.getOutputStream());
    My entire code is as follows:
    <%@ page language="java" %>
    <%@ page import="java.util.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.net.*"%>
    <%
    String xml_body = "<my xml string here>"
    String sourceUrl =
    "https://wwwcie.ups.com/ups.app/xml/Rate";
    URL url = new URL(sourceUrl);
    URLConnection urlConn = url.openConnection();
    // prepare input and output, disable caching, set
    properties
    urlConn.setDoInput(true);
    urlConn.setDoOutput(true);
    urlConn.setUseCaches(false);
    urlConn.setRequestProperty( "Content-Type",
    "application/x-www-form-urlencoded");
    urlConn.setRequestProperty("Content-Length", " " +
    xml_body.length());
    ((HttpURLConnection)urlConn).setRequestMethod("POST");
    // Post output
    DataOutputStream dataOut = new
    DataOutputStream(urlConn.getOutputStream());
    dataOut.writeBytes(xml_body);
    dataOut.flush();
    dataOut.close();
    //DataInputStream dataIn = new
    DataInputStream(urlConn.getInputStream());
    // do input processing here
    %>
    Am I implementing this class properly? I see a
    NumberFormatException being thrown...but at not sure
    why this is occuring for my data output stream. The
    error in my log is as follows:
    ####<Jul 29, 2003 1:53:45 PM MDT> <Error> <HTTP>
    <SFNTCPSWEB> <PIA> <ExecuteThread: '44' for queue:
    'default'> <> <> <101020>
    <[WebAppServletContext(7077998,PORTAL,/PORTAL)]
    Servlet failed with Exception>
    java.lang.NumberFormatException: 1191
         at java.lang.Integer.parseInt(Integer.java:414)
         at java.lang.Integer.parseInt(Integer.java:463)
    at
    weblogic.net.http.HttpURLConnection.getOutputStream(Ht
    pURLConnection.java:168)
         at jsp_servlet.__send1._jspService(__send1.java:119)
    at
    weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServle
    (ServletStubImpl.java:265)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServle
    (ServletStubImpl.java:200)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeS
    rvlet(WebAppServletContext.java:2502)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(S
    rvletRequestImpl.java:2208)
    at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.ja
    a:139)
    at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:1
    0)

  • XML Publisher Error with reports published in XML publisher

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?

    Hi Ark,
    In order to generate a report using xml publisher. we need the following.
    1. XML Data
    2. Template file (RTF/PDF/..)
    XML data will not be created by the template file.
    We will be required to create XML data. One of the easiest way to create xml output is using the RDF. We can change the rdf output type in the concurrent program to XML.
    Once the xml and the template is available, "XML Report Publisher" will be able to generate the output in the required format.
    Thanks,
    K.Nataraja Suthan,

  • PeopleSoft XML Publisher report error with java.io.FileNotFoundException

    Hi,
    I have created two reports using XML Publisher in Peoplesoft Financials. The two reports are not related and they were submitted for processing separately. The first report completes without any issues. The second report results in error with the following message:
    09.11.17 ..(CIS_POTRPT.XML_FILE.Step03) (PeopleCode)
    [012309_091118154][oracle.apps.xdo.template.FOProcessor][EXCEPTION] IOException is occurred in FOProcessor.setData(String) with 'files/cis_potrpt.xml'.
    [012309_091118500][oracle.apps.xdo.template.FOProcessor][EXCEPTION] java.io.FileNotFoundException: files/cis_potrpt.xml (A file or directory in the path name does not exist.)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java(Compiled Code))
         at java.io.FileInputStream.<init>(FileInputStream.java:89)
         at oracle.apps.xdo.template.FOProcessor.getInputStream(FOProcessor.java:1316)
         at oracle.apps.xdo.template.FOProcessor.getXMLInput(FOProcessor.java:1100)
         at oracle.apps.xdo.template.FOProcessor.setData(FOProcessor.java:372)
         at com.peoplesoft.pt.xmlpublisher.PTFOProcessor.generateOutput(PTFOProcessor.java:53)
    2009-01-23-09.11.18.000418 AePcdExecutePeopleCode [174] Exception logged: RC=100.
    Error generating report output: (235,2309) PSXP_RPTDEFNMANAGER.ReportDefn.OnExecute Name:ProcessReport PCPC:51552 Statement:1153
    Called from:CIS_POTRPT.XML_FILE.GBL.default.1900-01-01.Step03.OnExecute Statement:8
    2009-01-23-09.11.18.000617 DoStepActions [1797] Exception logged: RC=100.
    Process 598607 ABENDED at Step CIS_POTRPT.XML_FILE.Step03 (PeopleCode) -- RC = 24 (108,524)
    In the process monitor detail > view log/trace page, the xml file is accessible so the file was generated to a valid directory.
    The weird thing is I was able to run this report without any issues few weeks ago although another user also ran into same error. The PeopleCode step that has been identified is essentially same in the two reports. I checked the app server and the directory does exist as well as the xml files for the two reports. The problem does not occur in test environment, just in production. Any help would be appreciated.

    We encounter the same problem. Did you get the answer for this issue? Thanks in advance.

  • XML Publisher Error with reports

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?
    Please update....

    Hi Darshan,
    I have done the same change what you suggested at the site level for UTF8, but its still showing the same error
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'p' does not match the start tag 'a'. Error processing resource 'http://eyerpdev.etihad.local:8001/OA_CGI/FNDWRR.ex...
    <p class="c0"><a name="Text54" id="Text54"><a name="Text53" id="Text53"><span class="c1">From Period...
    Many thanks....

  • Getting error with selectSingleNode in XML DOM

    I have some pages that utilitize the following in XML DOM:
    loadXML
    selectSingleNode
    getElementsByTagName
    I am using JavaScript. I am getting "undefined" errors. Anyone know the proper syntax/capitalization for these methods when using Safari. I had a similiar error with IE 7.0 and posting via an xmlHTTPPost. The problem there was capitalization of one of the methods.
    Thanks.
    Peter

    Hi,
    See below examples..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    http://www.troobloo.com/tech/xslt.toc.shtml
    http://www.w3schools.com/xsl/
    http://www.w3.org/TR/xslt
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/frameset.htm
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-code-samples/generic%20xslt%20mapping%20in%20sap%20xi%2c%20part%20i.pdf
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    Required XSLT Mapping tips!
    Regards
    Chilla..

  • Has anyone had a opf parse error with container.xml missing, when it is actually present plz ?

    Has anyone had a opf parse error with container.xml missing, when it is actually present plz ?

    Has anyone had a opf parse error with container.xml missing, when it is actually present plz ?

  • 10g Upgrade - XML Parser errors with certain escape codes (&#x0338)

    NLS_CHARACTERSET = WE8ISO8859P15
    NLS_NCHAR_CHARACTERSET = AL16UTF16
    Since our 10.2.0.3.0 upgrade (from 9.2.0.1.0) our xml fails with the following message:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00217: invalid character 824 (U+0338)
    Error at line 4
    We are using escape codes in our xml that have worked fine on 9i. Example xml:
    <PRINT_LAYOUT_FOOTER>&#x0338;&#x0338;&#x0338;&#x0338;This map was created with Promap</PRINT_LAYOUT_FOOTER>
    I am completely flummoxed - Any ideas?

    You've switched from a Java Based Parser to a 'C' based parser, which is much, much faster. However one of the requirements of the 'C' implementation is that all characters in the database character set. I'm guessing that if you switch to AL32UTF8 for the database character set the problem will go away. BTW 9.2.0.1.0 was desupported for XML related features when 9.2.0.3.0 was released.

  • "an XML element was malformed" error with anonymous user

    There is no problem with another user but with anonymous user  it gives "an XML element was malformed" error  when I want to select data from Oracle database using BI_JDBC in VC. I have done the user mapping for the anonymous user like  other users. I also give "read" and "end user" permissions for  anonymous user in the BI_JDBC connection. For other users, it works. What should I do to use BI_JDBC in VC with anonymous user.
    Thanks in advance

    Hi Nihat,
    we currently facing the same issue, did you found the solution for this, or maybe a workaround for anonymous system access? Thanks for your help!
    Kind regards,
    Benny

  • Safari getting XML error with Widgets

    hi all,
    I am new to the MAC world and I am getting an error when I try and open the "more widgets" icon in my dashboard. When I click that it should open Safari and take me to the widgets download page so I can get more widgets. The problem is that instead it brings up safari and most of the page but doesn't finish it and instead gives me an error saying "There was a problem retrieving XML data: undefined.
    The page does open correctly in Firefox. Can anyone tell me why and how i get it to work with Safari like it is supposed to. Thanks

    hi all,
    I am new to the MAC world and I am getting an
    error when I try and open the "more widgets" icon in
    my dashboard. When I click that it should open
    Safari and take me to the widgets download page so I
    can get more widgets. The problem is that instead it
    brings up safari and most of the page but doesn't
    finish it and instead gives me an error saying "There
    was a problem retrieving XML data: undefined.
    The page does open correctly in Firefox. Can anyone
    tell me why and how i get it to work with Safari like
    it is supposed to. Thanks
    Hi Ray,
    I had the same problem after upgrading to 10.4.3. I noticed that on my friend's laptop that has 10.3.9, the widgets page opens correctly and shows the XML data. I am viewing both computers and versions, Panther and Tiger, at the same time, so it appears to be a problem with the 10.4 (Tiger) version of Safari. I am VERY surprised that Apple does not have a post about this.
    Unfotunately, I do not have a solution for you.
    Bill

  • Netware 6.5 SP8 to OES2 SP3 Migration Error with migfiles

    Hi,
    at first. We would like to abuse the migfiles tool to mirror data from Netware to OES2 SP3 with trustees !! Do you know a better tool than migfiles, please let me know. Its very important for me to use a CLI Command tool like migfiles, because it should run automatically.
    We want to mirror data from a Netware 6.5 SP8 NSS Volume to a OES2 SP3 NSS Volume with trustess. The first migration with following line works without any error:
    migfiles -s IPAddress -V Daten -x /media/nss/D4/Test3/ -i
    From this point we need the -sync parameter to keep the data current.
    I use this:
    migfiles -s IPAddress -V Daten -x /media/nss/D4/Test3/ -i --sync "22-07-2011 16:26"
    But then i became this errors:
    Error: nbackup: Failed to restore: DATEN:VOLDATA.TDF
    Error: nbackup: Received error: 0xfffdffdc ((libtsafs.so 6.50.0 291) An invalid path was used.) from NWSMTSWriteDataSet
    Error: nbackup: Failed to restore: DATEN:tsa5up24/NWTAPE/
    Error: nbackup: Received error: 0xfffdffdc ((libtsafs.so 6.50.0 291) An invalid path was used.) from NWSMTSWriteDataSet
    Error: nbackup: Failed to restore: DATEN:tsa5up24/NWTAPE/NWTAPE.CDM
    Fatal: Failed to restore data. Could not find destination path. If the destination path is a cluster resource, then check whether the resource is moved.
    Fatal: nbackup: Received error: 0xfffdffe5 ((libtsafs.so 6.50.0 282) The data set handle is invalid.) from NWSMTSOpenDataSetForRestore
    When the Sync job is finished, no file which was changed on the Source was migrated to the destination.
    For your information. With the Novell Migration Tools (GUI) i have the same error. But with the Windows version "Novell Server Consolidation and Migration Toolkit" it works without any errors. But its a GUI tool without the possibility to run it automatically.
    Any ideas
    Thanks Andreas

    Hi,
    thank you for your reply. This is the log:
    D, [01-08-2011 14:33:07#4872] DEBUG -- migfiles: migfiles command started at 01-08-11 14:33:07
    D, [01-08-2011 14:33:07#4872] DEBUG -- migfiles: migfiles command executed as: /opt/novell/migration/sbin/migfiles -s xxx.xxx.xxx.103 -V Daten -x /media/nss/D4/Test3/ -i --sync 22-07-2011 16:26 --debug
    D, [01-08-2011 14:33:07#4872] DEBUG -- migfiles: Calling function getCredentialDetails
    D, [01-08-2011 14:33:21#4872] DEBUG -- migfiles: Successfully taken credential Details of source and destination server from user
    D, [01-08-2011 14:33:21#4872] DEBUG -- migfiles: nbackup command executed as LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/nbackup -U "admin.havas" -R xxx.xxx.xxx.103 --list-tsa-version
    D, [01-08-2011 14:33:21#4872] DEBUG -- migfiles: Major version of source tsafs is 3
    D, [01-08-2011 14:33:21#4872] DEBUG -- migfiles: Minor version of source tsafs is 1
    D, [01-08-2011 14:33:21#4872] DEBUG -- migfiles: ncpshell command executed as /opt/novell/ncpserv/sbin/ncpshell --ip=xxx.xxx.xxx.103 --u="admin.havas" --vinfo --parm1="Daten"
    I, [01-08-2011 14:33:22#4872] INFO -- migfiles: Given destination path is NSS
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Source path is Daten:
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Destination path is /media/nss/D4/Test3/
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Successfully returned from function verifyAndFixSrcPath
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Destination volume type: NSS
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Calling function get_nss_vol_and_mnt_point_from_path
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Calling function is_compression_enabled
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: Started on: "1-8-2011 14:33:22"
    D, [01-08-2011 14:33:22#4872] DEBUG -- migfiles: smstool cmd = LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/smstool --srcuser ".admin.havas" --destuser "root" -R xxx.xxx.xxx.103 --sync-time "22-07-2011 16:26" --output-file /tmp/smstoolOutFile.4872 --finddiff "Daten: /media/nss/D4/Test3/" 2>&1
    I, [01-08-2011 14:33:23#4872] INFO -- migfiles: Generating list of files and folders to be synced
    D, [01-08-2011 14:33:23#4872] DEBUG -- migfiles: Executing nbackup command from syncfiles: LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/nbackup -cF --disable-caching -U ".admin.havas" --expand-compressed-data -R xxx.xxx.xxx.103 -T /tmp/smstoolOutFile.4872 | LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/nbackup -xvF -U "root" -r "Daten: /media/nss/D4/Test3/"
    D, [01-08-2011 14:33:23#4872] DEBUG -- migfiles: nbackup cmd = LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/nbackup -cF --disable-caching -U ".admin.havas" --expand-compressed-data -R xxx.xxx.xxx.103 -T /tmp/smstoolOutFile.4872 | LC_ALL=en_US.UTF-8 /opt/novell/sms/bin/nbackup -xvF -U "root" -r "Daten: /media/nss/D4/Test3/"
    D, [01-08-2011 14:33:23#4872] DEBUG -- migfiles: Calling function doCmd
    D, [01-08-2011 14:33:25#4872] DEBUG -- migfiles: Checkpoined at
    D, [01-08-2011 14:33:25#4872] DEBUG -- migfiles: Checkpoined pair 0
    E, [01-08-2011 14:33:25#4872] ERROR -- migfiles: nbackup: Failed to restore: DATEN:VOLDATA.TDF
    E, [01-08-2011 14:33:25#4872] ERROR -- migfiles: nbackup: Received error: 0xfffdffdc ((libtsafs.so 6.50.0 291) An invalid path was used.) from NWSMTSWriteDataSet
    E, [01-08-2011 14:33:25#4872] ERROR -- migfiles: nbackup: Failed to restore: DATEN:tsa5up24/NWTAPE/
    E, [01-08-2011 14:33:25#4872] ERROR -- migfiles: nbackup: Received error: 0xfffdffdc ((libtsafs.so 6.50.0 291) An invalid path was used.) from NWSMTSWriteDataSet
    E, [01-08-2011 14:33:25#4872] ERROR -- migfiles: nbackup: Failed to restore: DATEN:tsa5up24/NWTAPE/NWTAPE.CDM
    F, [01-08-2011 14:33:25#4872] FATAL -- migfiles: Failed to restore data. Could not find destination path. If the destination path is a cluster resource, then check whether the resource is moved.
    F, [01-08-2011 14:33:25#4872] FATAL -- migfiles: nbackup: Received error: 0xfffdffe5 ((libtsafs.so 6.50.0 282) The data set handle is invalid.) from NWSMTSOpenDataSetForRestore
    Thank you
    Andreas

  • Error with ArrayIndexOutOfBoundsException in JHeadstart 10g??

    I need some help with the JHeadStart, Im tring to migrate a Oracle forms applications to a j2ee applications
    In the tutorial they say that i need to create a new workspace and a new JHeadStart project
    the problem is that i dont have that option in the pop up menu
    so I first
    - create a new Application Workspace with web Application (default) template,
    - then I enabled the jheadstart on this project
    - after that I go to the designer generator and go throw the wizard
    - the jdeveloper create many files
    - then in the file ViewControllerApplicationsStructure I run the generator,
    the program create many files but just before he create the struts-config.xml, the program fail and print in the console this
    mesaje
    java.lang.ArrayIndexOutOfBoundsException: 0
    at oracle.jheadstart.tools.jag.StrutsConfigGenerator.generate(StrutsConf
    igGenerator.java:216)
    at oracle.jheadstart.tools.jag.ApplicationGenerator.generateServiceFiles
    (ApplicationGenerator.java:1235)
    at oracle.jheadstart.tools.jag.ApplicationGenerator.generateApplication(
    ApplicationGenerator.java:577)
    at oracle.jheadstart.tools.jag.ApplicationGenerator.<init>(ApplicationGe
    nerator.java:355)
    at oracle.jheadstart.tools.jag.JagRunner$1.run(JagRunner.java:76)
    at java.lang.Thread.run(Thread.java:534)
    I have install
    - Oracle JDeveloper 10 g 10.1.2.0.0
    - Oracle DataBase 9i
    - Oracle Designer 9i
    - JHeadStart 10 g 10.1.2.0
    What can i do??

    This discussion will be continued in the following thread: Error with StrutsConfigGenerator
    Sandra Muller
    JHeadstart Team

  • Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CR...

    Post Author: lkamesam
    CA Forum: Integrated Solutions
    Hi,
            I am running Crystal Reports version 10 from IBM Rational 6.0.1  build 20050725_1800 XML data source. When I try to run the report under WAS 6.0.1 I get the following error:
    Does any body have any clue how to resolve my problem? Thanks
    Error 500: Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CRDB_XMLImpl This is often caused by having the class at a higher point in the classloader hierarchy Dumping the current context classloader hierarchy: ==> indicates defining classloader *** indicates classloader where the missing class could have been found ==>&#91;0&#93; com.ibm.ws.classloader.CompoundClassLoader@163dd786 Local ClassPath: C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\classes;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\bobj_platform_jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cecore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\celib.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ceplugins.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cereports.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cesession.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\clientlogic.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\Concurrent.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CorbaIDL.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLExternal.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLServer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCharting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalContentModels.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExporters.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExportingBase.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalFormulas.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalQueryEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportingCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ebus405.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\icu4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jrcerom.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jsf_common.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\keycodeDecoder.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\log4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\MetafileRenderer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rasapp.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rascore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rpoifs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\serialization.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\URIUtil.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting-jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xercesImpl.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xmlParserAPIs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent; Delegation Mode: PARENT_FIRST &#91;1&#93; com.ibm.ws.classloader.JarClassLoader@338761606 Local Classpath: Delegation mode: PARENT_FIRST &#91;2&#93; com.ibm.ws.classloader.ProtectionClassLoader@38e75786 &#91;3&#93; com.ibm.ws.bootstrap.ExtClassLoader@7e475784 &#91;4&#93; sun.misc.Launcher$AppClassLoader@7e5a5784 &#91;5&#93; sun.misc.Launcher$ExtClassLoader@7e565784 -Original exception- java.lang.NoClassDefFoundError: OCA/OCAdbdll/DbDLLOperations at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java(Compiled Code)) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader._defineClass(CompoundClassLoader.java:576) at com.ibm.ws.classloader.CompoundClassLoader.findClass(CompoundClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java(Compiled Code)) at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code)) at com.crystaldecisions.reports.queryengine.driver.i.<init>(Unknown Source) at com.crystaldecisions.reports.queryengine.driver.i.case(Unknown Source) at com.crystaldecisions.reports.queryengine.av.ak(Unknown Source) at com.crystaldecisions.reports.queryengine.av.else(Unknown Source) at com.crystaldecisions.reports.queryengine.av.byte(Unknown Source) at com.crystaldecisions.reports.queryengine.av.do(Unknown Source) at com.crystaldecisions.reports.queryengine.as.new(Unknown Source) at com.crystaldecisions.reports.queryengine.at.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.b(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.a(Unknown Source) at com.crystaldecisions.reports.common.ab.a(Unknown Source) at com.crystaldecisions.reports.common.ab.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.a.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source) at com.crystaldecisions.report.web.a.a.K(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.bx.a(Unknown Source) at com.crystaldecisions.report.web.event.b1.broadcast(Unknown Source) at com.crystaldecisions.report.web.event.as.a(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.if(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source) at com.crystaldecisions.report.web.ServerControl.a(Unknown Source) at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ServerControlTag.doEndTag(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.doEndTag(Unknown Source) at com.ibm._jsp._sample._jspx_meth_crviewer_viewer_0(_sample.java:135) at com.ibm._jsp._sample._jspService(_sample.java:77) at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117) at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171) at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220) at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681) at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934) at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021) at

    For those who would have the same problem, here is how I could eventually fix it.
    Since the Flex Test Drive is sometimes out of sync with flash builder 4, I recreated a project using other help pages on Adobe site :
    Entry point :
    http://help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08- 7ffd.html
    As suggested, I used the New Project wizard to create a new project, with :
    Application server type : J2EE
    Check the radio button "Use remote object access service : BlazeDS"
    Then, as indicated in following pages (section "Accessing BlazeDS")... :
    file:///C:/Mes%20documents%20C/Commun/Developpement/Documentation/HT-Tracks/AccessingData/ help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08-7ffe.ht ml#WSbde04e3d3e6474c4-19a3f0e0122be55e1b7-8000
    ...I selected the "Data / Connect to Data/Services..." menu option, which started the Data/service connection wizard.
    There, I selected a BlazeDS (and not Web Services) service type, and everything went fine.
    Suggestion to adobe staff : maybe it would be useful to update the Flex Test Drive to reflect Flash Builder 4 ?
    Very nice product anyway, so far, congratulations...
    Rgds
    Marc.

  • Error while sending a soap request from XML SPY to a webservice in XI

    Hi ,
    I published a webservice om the XI end and testing it with consuming the WSDL file in XML SPY and sending a soap request from there.
    I am getting the following error .
    <b>com.sap.aii.af.mp.module.ModuleException: either no channelID specified or no channel found for the specified party, service, and channel name</b>, MessageServlet(Version $Id: //tc/xi/645_VAL_REL/src/_adapters/_soap/java/com/sap/aii/af/mp/soap/web/MessageServlet.java#4 $)
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:380)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Is this error due to the user authentication or due to some other issue .
    Please do let me know soon .
    Thanks a lot
    Nikhil

    Hi Ricardo ,
    I have the correct port now.
    the url looks like
    http://<host>:50000/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST
    when I am testing it in the XML spy. and send a soap server request. I am getting the popup for user authentication . once i put my user id it gives me a error saying
    <b>HTTP operation 'POST' could not be performed on URL
    '/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST&amp;version=3.0&amp;Sender.Service=SIEBEL_DEV&amp;Interface=http%3A%2F%2FOFCOM%2FUNIFY%2FCustomerMaster%5EMI_CUST'  due to an error :
    The connection to the server was terminated abnormally</b>
    Any Idea as to why is such a error is coming
    Thanks for the help
    Nikhil

Maybe you are looking for

  • HOWTOs to setup VoIP don't work on my N81

    Hello, I have a Nokia N81 and I want to setup SIP on it, using my VoipBuster account. I've successfully configured this account a thousand times on different systems, but it seems impossible to get it to work with my Nokia phone, even after following

  • Itunes Wont open - New observation

    as usual my itunes refuses to open but now i have noticed something whenever i open it or QT it shows in the procees tab in the task manager for a second and then disappears suggetions ?

  • Updating podcasts to just the latest "new" one

    I used to have my podcasts set to manual and when I wanted new ones, I only wanted the latest new one. Not all of them as I dont have the time  for them all. I used to be able to downlaod them that way until iTunes 11. I have it set still to manually

  • IRPT Security - Best Practice?

    With xMII 11.5, we setup roles with navigation links to our irpt screens; however, that does not stop someone from typing the URL into a new browser window to pull up these screens.  Is there a security document that details how to prevent this from

  • First time iTune's user, with existing .Mac account cannot signin!

    I have had a .Mac account for some time now... Now i would like to sign up for iTunes store. I put my old .mac account in however it says it cannot find the account. I have also tried my other email addresses to open a new account. But those do not w