Can not initialize XML parser

Can someone say how to initialize a SAX parser?
When I try to do it, a SAXException occures.
I think thats because no paser driver is loaded (as API docs say).
How can I make it work?

Try the following snippet (not compiled) with JDK 1.3 or higher (crimson included) to get the idea:
class DummyContentHandler implements org.xml.sax.ContentHandler{
        int count = 0;
        public void startDocument() throws org.xml.sax.SAXException {}       
        public void characters(char[] values, int param, int param2) throws org.xml.sax.SAXException {}       
        public void ignorableWhitespace(char[] values, int param, int param2) throws org.xml.sax.SAXException {}       
        public void processingInstruction(java.lang.String str, java.lang.String str1) throws org.xml.sax.SAXException {  }
        public void startPrefixMapping(java.lang.String str, java.lang.String str1) throws org.xml.sax.SAXException {}
        public void endDocument() throws org.xml.sax.SAXException {}
        public void skippedEntity(java.lang.String str) throws org.xml.sax.SAXException {}
        public void setDocumentLocator(org.xml.sax.Locator locator) {}
        public void endPrefixMapping(java.lang.String str) throws org.xml.sax.SAXException {}
        public void startElement(java.lang.String str,
          java.lang.String str1,
          java.lang.String str2,
          org.xml.sax.Attributes attributes) throws org.xml.sax.SAXException {
            count++;
        public void endElement(java.lang.String str,
               java.lang.String str1,
               java.lang.String str2) throws org.xml.sax.SAXException {}
  public class SAXer{
  // Helper method
  public static void parseWithSax(org.xml.sax.InputSource is,org.xml.sax.ContentHandler ch) throws Exception{
          javax.xml.parsers.SAXParserFactory spf =
            javax.xml.parsers.SAXParserFactory.newInstance();
          spf.setNamespaceAware(true);
          org.xml.sax.XMLReader p = (org.xml.sax.XMLReader)spf.newSAXParser().getXMLReader();  
          p.setContentHandler(ch);
          p.parse(is);
  public static void main(String[] args) throws Exception{
       // Set factory
       System.setProperty("javax.xml.parsers.SAXParserFactory", "org.apache.crimson.jaxp.SAXParserFactoryImpl");
       // Initialize content handler
        DummyContentHandler ch = new DummyContentHandler(); 
       String test = "<a><b/></a>";
       parseWithSax(new org.xml.sax.InputSource(new java.io.StringReader(test)),ch);
        System.out.println("Elementcount:" + ch.count);
  }

Similar Messages

  • HT4796 on my windows XP pro PC i opened windows migration assistant and the first message is: "Cannot start Outlook Express. The application can not initialize the storage. The computer doesn't have enough memory or your disk is full. (0x80007114)"

    on my windows XP pro PC i opened windows migration assistant and the first message is: "Cannot start Outlook Express. The application can not initialize the storage. The computer doesn't have enough memory or your disk is full. (0x80007114)"
    On my windows PC outlook express is NOT running and as far as i know, NOT installed.
    How do I install Outlook Express??
    I want to use my new Imac.....    

    Disk storage issues frequently happen if the hard disc is over 85% full.    Make sure your trash can is emptied after backing up any files you want to keep elsewhere.

  • Can not construct xml from relative xpath expression: //FormVar

    In version 7.0, it was possible to access Form Variables with the (valid) XPath Expression "//FormVariable".
    In 7.2.2, using this XPath Expression leads to a stalled action, with message: "can not construct xml from relative xpath expression: //FormVar". (see full stack trace below)
    What's wrong? How can I fix this?
    Use of relative expression is very very useful during the development phase!
    Best Regards,
    com.adobe.workflow.WorkflowRuntimeException: can not construct xml from relative xpath expression: //FormVar
    at com.adobe.workflow.pat.service.PATExecutionContextImpl.createNodesForXPathExpression(PATE xecutionContextImpl.java:854)
    at com.adobe.workflow.pat.service.PATExecutionContextImpl.setProcessDataValue(PATExecutionCo ntextImpl.java:707)
    at com.adobe.workflow.pat.service.PATExecutionContextImpl.setProcessDataWithExpression(PATEx ecutionContextImpl.java:429)
    at com.adobe.workflow.qpac.set_value.SetValueService.execute(SetValueService.java:72)
    at com.adobe.workflow.engine.PEUtil.executeAction(PEUtil.java:184)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2371)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncInvokeProcessCommand(ProcessEngineBMT Bean.java:512)
    at sun.reflect.GeneratedMethodAccessor709.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:683)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:185)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 44)
    at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:72)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:331 )
    at org.jboss.ejb.Container.invoke(Container.java:723)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:359)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:83)
    at $Proxy285.asyncInvokeProcessCommand(Unknown Source)
    at com.adobe.workflow.engine.ProcessCommandControllerBean.onMessage(ProcessCommandController Bean.java:127)
    at sun.reflect.GeneratedMethodAccessor641.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.j ava:458)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:185)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterc eptor.java:62)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
    at org.jboss.ejb.Container.invoke(Container.java:723)
    at org.jboss.ejb.plugins.jms.JMSCont

    Sorry, i just read my own message in the discussion forum and
    discovered all spaces for formating the XML tags where gone.
    It should look like this:
    [-----xml_type---]
    <doc>
    __<role>
    ____actor
    ____<first>
    ______john
    ____</first>
    ____<last>
    ______bond
    ____</last>
    __</role>
    __<role>
    ____actor
    ____<first>
    ______james
    ______</first>
    ____<last>
    ______smith
    ____</last>
    __</role>
    </doc>
    semantic:
    There are two actors: "john bond" and "james smith"
    Querying for "john bond" succeedes which is correct
    Querying for "james smith" succeedes which is correct
    Querying for "james bond" fails which is correct
    Querying for "john smith" succeedes which is an ERROR!
    contains(xdata, 'actor INPATH(//role[./first = "john" and ./last
    = "smith"])' (= 100 ---> ERROR!)
    bye,
    feri

  • Can I install XML parser for Java in Windows 98?

    Could someone tell me how to install XML parser for Java in my PC Windows98 (I already installed JDK1.3)? Or it can not be installed in Windows98?
    Thanks in advance!

    There's no reason why it shouldn't work on any platform for which JDK1.3 is available. If you're using the batch files shipped with XDK to run the parser, you might need to change the syntax slightly; in any event the key command is just
    java -cp c:\xdk\lib\xmlparserv2.jar oracle.xml.parser.v2.oraxml %xdkparm%Brian

  • Can not use XML API from Sun (JAXP)

    Some of my EJBs and Servlets uses XML API from Sun (JAXP) but after deployment the J2EE Container uses its own XML engine (Oracle XML Parser....) instead.
    I try to add JAXP library to my deployment file and test again but this problem still occurred.
    My question is how to add my libraries to J2EE Container and these libraries can be shared by any applications.
    Regards,
    Narong

    Please post this in the misc or xml newsgroup.
    vipuld shah wrote:
    i have an application which is running through javaWebStart
    if u start the application first time(through clicking on
    link of .jnlp file), it will download necessary .jar files
    & it will store those files in javaWebStart's cache.
    when u will visit second time, it will check files in cache
    with the files in server, if both are same, then it will not
    download but will use from its cache.
    it works fine for .jar files, but is it possible for some .xml
    files which are changing very rarely.--
    Rajesh Mirchandani
    Developer Relations Engineer
    BEA Support

  • Xs:int , the schema register generate a NUMBER(10), but can not insert xml

    hi guys:
    I found a problem in the Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production:
    in the schema regist, Oracle help me create a table, with 2 Number(10) segments
    validFrom NUMBER(10)
    validTo NUMBER(10)
    then, I upload the xml file via the ftp, an error report:
    ftp: 19120 bytes received in 0.03Seconds 637.33Kbytes/sec.
    ftp> pwd
    257 "/home/tonyfolder/data" is current directory.
    ftp> put test.xml
    200 PORT Command successful
    150 ASCII Data Connection
    550- Error Response
    ORA-31038: Invalid integer value: "3371475600"
    550 End Error Response
    ftp: 623 bytes sent in 0.00Seconds 623000.00Kbytes/sec.
    3371475600 is really 10 number, the Oracle do not work ?

    hi mdrake, i try this :
    create table XML_DOCUMENT_TABLE
    FILENAME VARCHAR2(64),
    XML_DOCUMENT SYSTEM.XMLTYPE,
    NUMBERTEST NUMBER(10)
    SQL> insert into xml_document_table values ( '' , '' , '3371475600' );
    1 row inserted
    SQL>
    ??? we can insert the '3371475600' into number(10) directly, but we can not input this num via the oracle auto upload
    otherwiseo, your mean is, when the oracle upload xml, oracle checks the number, '3371475600', this value large than int, so ... i can can not input,
    by the way, the num 337147560 ( 9 bit) , xmldb upload success, why ?
    thanks and happy new year

  • Why can't Oracle XML parser import a Xerces node?

    I have been using XSU to obtain query results in XML as a DOM. Recently I tried to use the Document.importNode method on the generated DOM where the node to be imported was generated using the Xerces parser. The Oracle XML parser gave the following error:
    java.lang.ClassCastException: org.apache.xerces.dom.DeferredElementImpl
         org.w3c.dom.Node oracle.xml.parser.v2.XMLDocument.importNode(org.w3c.dom.Node, boolean)
              XMLDocument.java:1247
    I can get around the problem by parsing the XML I want to combine with the XSU generated XML with the Oracle parser, however, I would be happier if I could configure XSU to use Xerces (or another parser) via JAXP.
    Will XSU have JAXP support? What is the cause of the exception above?
    Gary Brown
    Analyst/Developer
    University of Bristol

    I have been using XSU to obtain query results in XML as a DOM. Recently I tried to use the Document.importNode method on the generated DOM where the node to be imported was generated using the Xerces parser. The Oracle XML parser gave the following error:
    java.lang.ClassCastException: org.apache.xerces.dom.DeferredElementImpl
         org.w3c.dom.Node oracle.xml.parser.v2.XMLDocument.importNode(org.w3c.dom.Node, boolean)
              XMLDocument.java:1247
    I can get around the problem by parsing the XML I want to combine with the XSU generated XML with the Oracle parser, however, I would be happier if I could configure XSU to use Xerces (or another parser) via JAXP.Different implementation have different internal representation of DOMNode. That is why you can't import.
    Will XSU have JAXP support? What is the cause of the exception above?Why you need this? Any requirement from your application?
    Gary Brown
    Analyst/Developer
    University of Bristol

  • The application can "not initialize the application's security component" and so Firefox will not open any more... PLEASE ADVISE!!

    One day while trying to run the firefox application a box popped up and said:
    "Could not initialize the application's security component. The most likely cause is problems with the files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem."
    Ive tried everything and even deleted and then reinstalled firefox... We miss it!!

    Please try
    * disabling any background anti-virus software you have, as it may be using Firefox files while it loads and prevent it from reading them
    * following the steps at [[Could not initialize the browser security component]]

  • Xml regex help - can't use xml parser

    Hi,
    I receive xmls from a legacy system and use JAXB to parse these xml's into java objects.
    The xml looks roughly like this:
    <root-Tag>
       <general-Info-Tag-1>blah</<general-Info-Tag-1>
       <general-Info-Tag-2>blah</<general-Info-Tag-2>
       <general-Info-Tag-3>blah</<general-Info-Tag-3>
       <entry-Tag>
          <entry-info-Tag-1>info</entry-info-Tag-1>
          <entry-info-Tag-2>info</entry-info-Tag-2>
           etc...
       </entry-Tag>
       <entry-Tag>
          <entry-info-Tag-1>info</entry-info-Tag-1>
          <entry-info-Tag-2>info</entry-info-Tag-2>
           etc...
       </entry-Tag>
    </root-Tag>The xml contains a root tag.
    The root element contains some general info tags and entry tags.
    The entry elements contain some entry relevant info inside nested tags.
    It's important to note that this the xml is not nested anymore than the entry-info tags.
    My Problem:
    The info in the entry-info-tags sometimes contains illegal chars like <,>,& and is not wrapped
    properly by a CDATA section.
    So I need to find these elements and wrap them with <![CDATA[info]]> before using JAXB.
    How can I achieve this using Pattern/Matcher? I've been unsuccessful so far...
    Edited by: Samuelz on Jul 1, 2010 1:58 AM

    Heres what i've got so far:
    A helpful function to print out matches for regex on an input string:
    private static void printMathces(final String regex, final String input) {
         Pattern p = Pattern.compile(regex, Pattern.DOTALL);
         Matcher m = p.matcher(input);
         while (m.find()){
              System.out.println("found:");
              for (int i = 0; i < m.groupCount(); i++)
                   System.out.println(i + ":" + m.group(i));
    }My input string for testing:
    String s =
    "<entries>\n"+
         "<entry>\n" +
              "<TagName>sam&max</TagName>\n" +
         "</entry>\n" +
         "<entry>\n" +
              "<TagName><![CDATA[sam&max]]></TagName>\n" +
         "</entry>\n" +
    "</entries>\n";regex to get contents of TagName:
    printMatches("<(TagName)>((.*?))</\\1>+", s);
    found:
    0:<TagName>sam&max</TagName>
    1:TagName
    2:sam&max
    found:
    0:<TagName><![CDATA[sam&max]]></TagName>
    1:TagName
    2:<![CDATA[sam&max]]>regex to get content of TagName when its wrapped by CDATA
    printMathces("<(TagName)><!\\[CDATA\\[((.*?))\\]\\]></\\1>", s);
    found:
    0:<TagName><![CDATA[sam&max]]></TagName>
    1:TagName
    2:sam&maxI'm trying to build a regex that will find the contents of TagName without knowing if its already wrapped by CDATA and then replace these matches by something like <$1><![CDATA[$2]]</$1>
    How do I "combine" these 2 regular expressions?

  • Can not find xml file in classpath

    Hi,
    Can someone tell me how I can please or find a xml file in de webdynpro classpath: I have to place a xml and jar files in the classpath. The jar files are found in the application, but I get the following error: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Unable to read the License file, please verify that you have SyncExLicense.xml file and it exists in the classpath or under com/yash/license folder.
    How can I check if this file is available in the classpath.
    Richard

    hi,
    have you check that all jar files are present or not.
    because when u import par file in to nwds it wont include jar files in that manully you have to import them.
    jayesh talreja

  • Can not validate XML against schema

    Hi all,
    I'm new to XML validation. I have this sample from net.
    this is the schema definition:
    <xs:schema targetNamespace="http://www.w3schools.com" elementFormDefault="qualified">
    <xs:element name="note" type="xs:string"/>
    </xs:schema>
    and this is the xml file:
    <?xml version="1.0"?>
    <note xmlns="http://www.w3schools.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3schools.com note.xsd">
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
    </note>
    when i try to validate at http://schneegans.de/sv/, this is a validator i found searching
    it gives error
    The root element does not comply with the schema. (2:2)
    any ideas?
    i have created my own xml and schema.I registered the xsd on oracle 10g but i get the same error :(
    where can i validate my xml against a schema?
    thanx a lot

    Validating XML Documents Against XML Schema
    http://www.oracle.com/technology/pub/articles/vohra_xmlschema.html

  • Where I can Find AelFred XML Parser for J2ME?

    Hi,
    I need the Aelfred XML SAXParser to run MIDP applications.
    The actual url is www.microstar.com
    but the site is not avialable.
    If any body has an idea about the new URL? or if u have the aelfred parser kit for the J2ME API, then please send it back to
    [email protected]
    Thanks
    Eldo.

    The AElfred project has been merged with the GNU JAXP project:
    http://www.gnu.org/software/classpathx/jaxp/jaxp.html
    There, you have a link to the FTP mirror sites..
    GNU JAXP includes the �lfred2 SAX2 parser.

  • Agilent ESA Series Spectrum Analyzer (E4448A) - Can not initialize.

    I have downloaded the drivers for the Agilent ESA series Spectrum Analyzers from NI and I am having trouble just running the initialization VI.
    I am currently trying to run the VI called: agesa initialize With Options.vi on Labview 7.0 Express
    This is the error I receive:
    agesa Initialize With Options.viDriver Status: (Hex 0xBFFF0015) Primary Error: (Hex 0xBFFF0015) Timeout expired before operation completed.
    It looks like the Spectrum Analyzer does do a few things (Changes Carrier Frequency to 50 MHz), but it's getting hung up somewhere else.
    If I highlight execution, the error comes out of the Call Library Function Node elaboration output in the aforementioned VI.
    Here are the settings of the VI I have:
    Settings:
    id query: true
    reset device: false
    Option string: Simulate=0,RangCheck=1,QueryInstrStats=2,Cache=1 (The default)
    Resource Name: GPIB0::16:INSTR
    Any help anyone could provide would be appreciated. Keep in mind, I am fairly new at this. Thanks.
    From NI Spy (Numbers 20 and 22 with the ">" are the error lines):
    Note: This post can only be 5000 characters, so I have deleted a few of the steps:
    7. viWrite (0x001D6008, "*IDN?", 5, NULL)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.822 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    8. viRead (0x001D6008, "Agilent Technologies,...", 511, 50)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.822 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    9. viWrite (0x001D6008, "YSTPT?", 10, NULL)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.822 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    10. viRead (0x001D6008, ""226".", 512, 6)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.822 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    11. viPrintf (0x001D6008, "%s?")
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    12. Formatted viWrite (0x001D6008, "*IDN?", 5, 5)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    13. viRead (0x001D6008, "Agilent Technologies,...", 512, 50)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    14. viPrintf (0x001D6008, "*CLS;*ESE 1;*SRE 32")
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    15. Formatted viWrite (0x001D6008, "*CLS;*ESE 1;*SRE 32", 19, 19)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    16. viPrintf (0x001D6008, ":CALC:LLIN:CMOD FIX")
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    17. Formatted viWrite (0x001D6008, ":CALC:LLIN:CMOD FIX", 19, 19)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    18. viPrintf (0x001D6008, ":CALC:MARK:FCO:RES:AUTO %s")
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.010
    Status: 0 (VI_SUCCESS)
    19. Formatted viWrite (0x001D6008, ":CALC:MARK:FCO:RES:AU...", 26, 26)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.832 Call Duration: 00:00:00.010
    Status: 0 (VI_SUCCESS)
    > 20. viQueryf (0x001D6008, "%s?", "%hd")
    > Process ID: 0x00000388 Thread ID: 0x00000728
    > Start Time: 09:10:37.842 Call Duration: 00:00:17.085
    > Status: 0xBFFF0015 (VI_ERROR_TMO)
    21. Formatted viWrite (0x001D6008, ":BAND:RES:AUTO?", 15, 15)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:37.842 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    > 22. Formatted viRead (0x001D6008, "", 4000, 0)
    > Process ID: 0x00000388 Thread ID: 0x00000728
    > Start Time: 09:10:37.842 Call Duration: 00:00:17.085
    > Status: 0xBFFF0015 (VI_ERROR_TMO)
    23. viClose (0x001EC548)
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:54.927 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)
    24. viStatusDesc (0x00000000, 0xBFFF0015, "Timeout expired before oper...")
    Process ID: 0x00000388 Thread ID: 0x00000728
    Start Time: 09:10:54.927 Call Duration: 00:00:00.000
    Status: 0 (VI_SUCCESS)

    Well, I don't seem to have that option on the E4448A, here's what i do have:
    System -> Config I/O ->
    GPIB Address
    IP Address
    Host name
    Subnet Mask
    Gateway Address
    SCPI LAN
    Under System -> Config I/O -> SCPI LAN ->
    SCPI Telnet
    SCPI Socket
    SICL Server
    None of the above stuff seems applicable if I am only using GPIB?? I tried modifying some of the options above, didn't seem to help.
    Here's some more information in the Error History on the Spectrum Analyzer:
    -420, Query UNTERMINATED, &ltErr>
    -113, Undefined header, :BAND:&ltErr&gtRES:AUTO?
    The above looks like #21, and the error, #22, is right after it. Any idea what that means?
    I'm going to try it on another computer... More to come!

  • Can not create XML file from MS Access 2003

    Hi,
    I am getting error as "Error loading in DLL" when I use msaccess_exporter to create XML file for migrations usind Access 2003 DB. Does anyone know about this? If yes, could you please let me know how to resolve it?
    Thanks,
    Kartik

    Hi Daniel,
    I believe you are seeing the message "Table'_OracletblDatabase' already exists" because you are attempting to export an MDB file that you previously attempted to export, but that initial export process may not have run to completion. I recommend opening your .MDB file, and delete any "_Oracletbl..." table objects that exist under the list of Table objects. Close the MDB file and carry out the export process again. You should now be able to use the 2000 mde file.
    I hope this helps.
    Regards,
    Hilary

  • Hard drive - can not initialize

    HI, i am trying to access and back up the data (pics) from a hard drive.
    Western Digital WD3200AAJS Internal SATA drive.
    The drive shows in the Computer Management, but I cannot initialize the disk, I have the error message: "Incorrect Function".
    When i run diskpart , detail disk, I have the below:
    SCSI Disk Devise
    Disk ID: 00000000
    Type: SATA
    Status: Online
    Path: 5
    Target: 0
    LUN ID: 0
    Location path: PCIROOT(0)#ATA9C05T00L00)
    Current Read-omly state: Yes
    Read-only: Yes
    Boot Disk: No
    Pagefile Disk: No
    Hibernation File Disk: No
    Crashdump Disk: No
    Clustered Disk: No
    There are no volumes.
    Can you please advise?
    Thanks.

    You might try the manufacturer diagnostic tools. Data Lifeguard Diagnostic for DOS
    http://support.wd.com/product/download.asp?groupid=606&sid=2&lang=en
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Maybe you are looking for

  • Sharepoint 2013: Problem / Error when creating Variation Hierarchy for French and German Languages from Variation root EN

    Hi, I have a website with English and Arabic Language Packs installed. I have the corresponding Variation heirachies created and the whole site collection is published. Recently the client asked for french and german languages to be accomodated as we

  • My iPhone 4 no longer syncs my calendars with Outlook...?

    Hi.  I've always synced my Outlook with my iPhone and haven't had any issues.  Now, I've noticed that my Oulook Calendar doesn't have the same appointments my iPhone does.  For example, I have many appointments this month on my iPhone, but they don't

  • How to end  a sevlet session?

    hi all I am developing a mobile application in which i used to hit a servlet url and a returning a string. if the user has opened the application before one hour i am have to close the session at server side and i need to sent null a response for fur

  • Query on Views

    Hello everyone, Can someone please explain me why cant we delete a row from a view that has some group function or group by clause or ROWNUM column or DISTINCT Keyword or any columns defined by expressions I understand that it doesnt make sense for i

  • User specific previledges on a particular tablespace

    Hi, 1. I have created a user giving him permission for a default tablespace for him.Can i revoke his permissions from all other available tablespaces . If yes? How? 2. I have gone through some related documents that says we can change user's tablespa