Running the NI 8253eventcount example on CVI 8.5

Dear friends,
I am trying to run the NI 8253eventcount example (
http://zone.ni.com/devzone/cda/epd/p/id/512 ) on Windows XP system, provided
with LABWindows /CVI 8.5 (evalution) and NI-DAQ 8.7.1 driver, and with NI
PCI-6601 counter/timer device. The project is unable to be compiled, with the
following error "The include file "dataacq.h" was not
found." I tried to run the NI-DAQ driver setup and to ensure that CVI
support is enabled, but no effect. What other shall I try in order to use the
example?
Best reagards,
Kamen Ivanov

Hi THE_SNAKE,
It is good that you already made sure the CVI support was enable when installing the DAQ drivers. Have you tried using the Counter examples under \Program Files\National Instruments\CVI8X\samples\DAQmx\Counter? Are you getting the same error when running these examples? Also, I would suggest making sure that the card is installed properly. You can do that going to Measurement & Automation Explorer > Configuration > My system > Devices and Interfaces > NI-DAQmx Devices. The PCI-6601 should be showing there and you can do a right click and select Self Test. You can also select Test Panels and use them to verify that your card is working properly. I hope this is helpful,
Ana P
National Instruments
Applications Engineer

Similar Messages

  • How to run the parameter form example report :pform_report.jsp

    how to run the parameter form example report : pform_report.jsp ?
    I got these error message:
    Reports Error Page
    Sat Oct 18 11:58:24 CST 2003
    javax.servlet.jsp.JspException: rwlib-1: REP-6106: (, 4 L, XML 1h��/�� ' PI with the name 'xml' can occur only in the beginning of the document.'.
    javax.servlet.jsp.JspException: rwlib-1: REP-6106: (, 4 L, XML 1h��/��
    PI with the name 'xml' can occur only in the beginning of the document.'.
         at oracle.reports.jsp.ObjectsTag.doEndTag(ObjectsTag.java:180)
         at examples.tools._pform__report._jspService(_pform__report.java:79)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:66)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:539)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:285)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:771)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:152)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:796)
         at java.lang.Thread.run(Thread.java:484)

    repost !
    please help!

  • How to Run the MDK Sample Example Application in SAP NWDS

    Hi all,
    As i go through the MDK 2.5 i have physically under gone with all option that are included in
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eba3a7-0601-0010-b982-92f1fca3258a
    this site and imported the Example 1 Application in nwds, but when try to run it,this application asking to mention some main Class option .
    tell me which class should i mention to run the example1 application.
    so please help me out of it ,
    thanks and Regards,
    Venu

    hi Venu Gopal,
    Welcome to the SDN and Mobile Community.
    Pl. check my weblog on this "Execute and Debug Applications from NWDS". /people/arunkumar.ravi/blog/2006/02/22/execute-debug-your-mi-code-from-nwds
    I've explained how to run the application from NWDS itself.
    Regards
    Arunkumar R

  • Running the ActiveX Bridge examples

    I have just tried to download the examples and run them in JDK 1.4.2_06. Both the examples registered fine. Unfortunately, I get a very unhelpful message from Windows XP when I run the executable that the executable has to close before anything else happens. I have tried searching the forums for an error like this, but have seen nothing.
    Does anyone know why the documentation for the ActiveX bridge is so miniscule and incomprehensible? I wonder why they released it, if they're not going to document it properly.
    My eventual requirement (if I can get a proof-of-concept working) is to call Java from .NET code. Has anyone made this work, and if so, would you mind sharing hints? I'm very strong on the Java side, but it's been a long time since COM in school.
    Thanks!

    I also had a hard time to finally get my own bean running as expected. I call my Java objects from within Visual Basic. Post your error messages/exception stack traces so we may help you.

  • [perhaps stupid] Problem with running the Sun's example

    I am new to RMI and I was reading the tutorial of RMI provided by Sun. Now the question is: suppose I have examples.hello.HelloImpl class compiled and I want to run rmic in order to create stub and skeleton files. In which directory should I run rmic?

    Run rmic from the directory where rmic can pick your classes.
    As an example if your compiled client class is in
    c:\rmitest\classes
    run the rmic from there and make sure you specify -d . then it will generate the stubs and skeletons in the same directory. If you want to compile them somewhere else specify -d option to that folder.
    Example use
    to store stubs and skeletons in the same directory
    c:\rmitest\classes> rmic -d . foo (where foo is your class name)
    to store stubs and skeletons in a separate directory
    c:\rmitest\classes> rmic -d "c:\mystubs\" foo (where foo is your class name)
    Hope this helps :)

  • Can't run the cluster example

              I would appreciate if someone can explanation my long list of questions regarding
              the deployment of EJB in cluster environment.
              I can't run the cluster EJB example( Teller/Account) in a cluster(contains two
              server2). I always get
              java.rmi.RemoteException: Unable to
              resolve examples.cluster.ejb.Account
              Home. Resolved: 'examples.cluster.ejb'
              Unresolved:'AccountHome'
              Following is my setup:
              Machine A: exampleServer:7001 (admin server)
              Machine A: testServer1:8001 (Managed server)
              Machine B: testServer1_B:8001(Managed server)
              MyCluster : testServer1, testServer1_B
              Test Client:
              java examples.cluster.ejb.Client "t3://Machine A:8001"
              ======================
              Q1: Should I use 8001 or 7001 as cluster port number?
              Q2: What will happen when we click "apply" after select/unselect the server in
              the "target", "server" tab?
              Q3: And what will happen if we click deploy/undeploy check box in "configuration"
              tab of EJB item?
              Q4: I check the JNDI tree from all above three servers can't find out JNDI tree
              doesn't reflect the change I did in Q2 or Q3.
              Q5: What is the right way to deploy EJB components, should we select both cluster
              and server in the "target" tab?
              Q6: I got this message from one of the server when I try to undeploy/deploy ejb
              object.
              "examples.cluster.ejb.TellerHome_EO in the jndi tree is non clusterable
              and you have tried to bind more
              once? How could I make it clusterable?
              Q7: Undeploy and EJB doesn't work and sometime I still get " JNDI name in use"
              from the server.
              How could I fix it.
              Thanks
              

    First I can tell you that the ports have to be the same, be on the the
              same network , i.e. Telnet into the other m/c. Next which you probably
              have done is the properties files. Per-cluster ...
              >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<<
              On 6/7/01, 6:59:48 AM, "James Hsu" <[email protected]> wrote regarding
              Can't run the cluster example:
              > I would appreciate if someone can explanation my long list of
              questions regarding
              > the deployment of EJB in cluster environment.
              > I can't run the cluster EJB example( Teller/Account) in a
              cluster(contains two
              > server2). I always get
              > java.rmi.RemoteException: Unable to
              > resolve examples.cluster.ejb.Account
              > Home. Resolved: 'examples.cluster.ejb'
              > Unresolved:'AccountHome'
              > Following is my setup:
              > Machine A: exampleServer:7001 (admin server)
              > Machine A: testServer1:8001 (Managed server)
              > Machine B: testServer1_B:8001(Managed server)
              > MyCluster : testServer1, testServer1_B
              > Test Client:
              > java examples.cluster.ejb.Client "t3://Machine A:8001"
              > ======================
              > Q1: Should I use 8001 or 7001 as cluster port number?
              > Q2: What will happen when we click "apply" after select/unselect the
              server in
              > the "target", "server" tab?
              > Q3: And what will happen if we click deploy/undeploy check box in
              "configuration"
              > tab of EJB item?
              > Q4: I check the JNDI tree from all above three servers can't find out
              JNDI tree
              > doesn't reflect the change I did in Q2 or Q3.
              > Q5: What is the right way to deploy EJB components, should we select
              both cluster
              > and server in the "target" tab?
              > Q6: I got this message from one of the server when I try to
              undeploy/deploy ejb
              > object.
              > "examples.cluster.ejb.TellerHome_EO in the jndi tree is non
              clusterable
              > and you have tried to bind more
              > once? How could I make it clusterable?
              > Q7: Undeploy and EJB doesn't work and sometime I still get " JNDI
              name in use"
              > from the server.
              > How could I fix it.
              > Thanks
              [att1.html]
              

  • Error while running the Dynamically generated forms example

    HI,
    I am getting an error when trying to run the web dynpro example "Interactive Forms Integration into Web Dynpro for Java".
    I am not able to trace out what exactly is going wrong. So kindly help me in this issue.
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:
         com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:282)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.createPDF(PDFObject.java:224)
         at com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper.createPDFDocumentForUIElement(AdobeFormHelper.java:483)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:185)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1154)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:402)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         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:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:85)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:95)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:279)
         ... 27 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:836)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1238)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:78)
         ... 29 more
    Thanks and regards
    kris

    The Not authorized message indicates that you haven't set up your Adobe document services properly.
    Please check the ADS Configuration Guide available at http://service.sap.com/adobe > Media Library > Documentation.
    Best regards,
    Markus Meisl

  • Receiving an error in Print Report.vi in the Text Report Example.vi

    I am trying to run the "Text Report Example.vi" example under Windows XP Professional, MS Office 2003 and LV 6.1 and I get an error in the "Print Report.vi" saying that there is an unknown error (-2147452567). I have searched through the Knowledgebase and found a couple of things to try but none of them worked (namely this solution). Is there a known problem with Office 2003 and LabVIEW 6.1? I can run the same example on another computer that is running the same setup except that it has MS Office 2002 SP3 and it prints properly.

    There are several reasons why you could get this error. There was a problem with a DLL change that caused either an invoke node or a property node (sorry, I don't remember which) to need to be replaced or relinked. I think that this is the problem that you linked to.
    The other potential problem is that you could be calling a font that you have on one of the computers but not on the other.
    I hope that this helps,
    Bob Young
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • HP 34401A-When I run the Read Meas.vi, it has error if I do not turn off the data storage

    When I run the Read Meas.vi, it has error if I do not turn off the data storage. The same thing happen when I run the App. Example. vi. Anyone knows how to solve this problem? Thanks alot.
    KL

    LoganS wrote:
    Hi KL,
    The Read Meas.vi is one of the subvi's in the App. Example.vi, so this problem is most likely the same problem in each case. From the help for Read Meas.vi:
    Data Storage instructs the device to store the data to be sent to either the internal or external buffer. If TRUE (default), the VI stores data in the on mode. If FALSE, the VI does not retain data in the off mode. Use the off mode only with the average min/max operation when you do not need to retrieve data. You cannot configure the meter for external buffering in the off mode.
    So the question is, are you trying to retrieve any data? If so, then as indicated in the above paragraph, you cannot retrieve data and have the data storage turned off. Good luck!
    Logan S.
    Yes, I need to retrieve data. So due to that problem, I cannot really get any data. I am not sure is that problem is due to the USB GPIB or not. But once I click on the click arrow, everying goes fine from initialise, measurment... once it comes to Read measurment, it has error (say somthing like: VISA Wait on Event for RQS.vi->HP34401A Read Meas.vi->Untitled 1) I have no idea like what it shows up.
    KL

  • Run - Debug project option is disabled to run the CVI RT application

    Hi,
    I am new to CVI Real time. I have taken the example code LoopTimingRT.prj and LoopTimingHost.prj from CVI samples directory. I am planning to run RT and host in the same desktop PC.  I have created two seperate workspaces for RT and Host with their respective projects.For RT, target is given as local desktop computer, target type selected as dll, in target settings, Run time support is mentioned as Real Time Only.
    In CVI Real Time Help and also in Getting Started with Labwindows/CVI Real Time pdf, it is mentioned like we have select Run -> Debug Project to run the RT application. When i am trying to do that, that option itself is disabled in RT workspace.
    Please can anyone help me.
    Thanks,
    Haari

    Hi,
    As suggested by Raman you can go ahead with same step.
    Regards,
    SM

  • Am getting the following error while running the servlet example

    Hi,
    am getting the following error while running the servlet example
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         edu.dao.StudentDao.insertStudent(StudentDao.java:18)
         edu.servlet.StudentServlet.doGet(StudentServlet.java:25)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.
    Thanks
    //sreekanth

    Hi,
    the following code i have written in StudentDao
    package edu.dao;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import org.apache.commons.dbutils.DbUtils;
    import edu.model.Student;
    import edu.util.DBUtil;
    public class StudentDao {
         public void insertStudent(Student student) {
              String stuQuery = "INSERT INTO STUDENT VALUES(?,?)";
              Connection connection = DBUtil.getConnection();
              PreparedStatement preparedStatement = null;
              try {
                   preparedStatement = connection.prepareStatement(stuQuery);
                   preparedStatement.setString(1,student.getStudentNo());
                   preparedStatement.setString(2, student.getStudentName());
                   preparedStatement.executeUpdate();
              } catch(SQLException e){
                   System.out.println("..Sql exception......");
              }finally {
                   DbUtils.closeQuietly(connection,preparedStatement,null);
    }

  • Is anyone know how to run the examples in 3d user interfaces with java 3d

    hi dear ,
    I am trying to run the examples in 3d user interfaces with java 3d.
    I hope i can load the library in jcreator. but the libarary for this book are classes files , it do not have jar file for it . the jcreator do not read these classes . i do not know why ? i am wonder if there any one run these code before can give me some idear .
    thanks so much .
    the code u can get from this link.
    http://www.manning.com/books/barrilleaux/source
    thank you for u to have a look for me .
    regards
    xiaocui

    <h2>{color:red}CROSS POSTED{color}</h2>
    [t-5289810]
    Cross posting is rude.
    db

  • Got NullPointerException we I try to run the attachment example of Axis1.4.

    Hi,
    Enviroment:
    OS: Ubuntu 7.04.
    Server: Apache Tomcat6.
    IDE: Eclipse3.2 + MyEclipse5.01
    Axis1.4.
    I have been trying to run the attachment example which locate ../samples.attachments.
    I composed program arguments as below according to README file which is included in this sample.
    java EchoAttachment
    -hlocalhost
    -lhttp://localhost:8080/axis/services/urn:EchoAttachmentsService
    -saxis/servlet/AxisServlet
    -p8080 /home/hut/wanglinghua.java
    But these exceptions were printed on the console:
    - Exception:
    java.lang.NullPointerException
         at java.lang.String.concat(String.java:1827)
         at com.sun.activation.registries.MailcapFile.parseLine(MailcapFile.java:235)
         at com.sun.activation.registries.MailcapFile.parse(MailcapFile.java:197)
         at com.sun.activation.registries.MailcapFile.createMailcapHash(MailcapFile.java:157)
         at com.sun.activation.registries.MailcapFile.<init>(MailcapFile.java:40)
         at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:276)
         at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
         at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
         at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
         at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
         at javax.activation.DataHandler.getInputStream(DataHandler.java:222)
         at javax.activation.DataHandlerDataSource.getInputStream(DataHandler.java:658)
         at org.apache.axis.attachments.MimeUtils.getContentLength(MimeUtils.java:115)
         at org.apache.axis.attachments.MimeUtils.getContentLength(MimeUtils.java:60)
         at org.apache.axis.attachments.AttachmentsImpl.getContentLength(AttachmentsImpl.java:438)
         at org.apache.axis.Message.getContentLength(Message.java:512)
         at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:373)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:138)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1870)
         at org.apache.axis.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:90)
         at example.attachments.EchoAttachment.echoUsingSAAJ(EchoAttachment.java:492)
         at example.attachments.EchoAttachment.main(EchoAttachment.java:323)
    - Exception:
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.NullPointerException
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}stackTrace:java.lang.NullPointerException
         at java.lang.String.concat(String.java:1827)
         at com.sun.activation.registries.MailcapFile.parseLine(MailcapFile.java:235)
         at com.sun.activation.registries.MailcapFile.parse(MailcapFile.java:197)
         at com.sun.activation.registries.MailcapFile.createMailcapHash(MailcapFile.java:157)
         at com.sun.activation.registries.MailcapFile.<init>(MailcapFile.java:40)
         at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:276)
         at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
         at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
         at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
         at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
         at javax.activation.DataHandler.getContent(DataHandler.java:501)
         at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1055)
         at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:1923)
         at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1904)
         at org.apache.axis.attachments.MimeUtils.writeToMultiPartStream(MimeUtils.java:201)
         at org.apache.axis.attachments.AttachmentsImpl.writeContentToStream(AttachmentsImpl.java:493)
         at org.apache.axis.Message.writeTo(Message.java:545)
         at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:511)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:138)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1870)
         at org.apache.axis.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:90)
         at example.attachments.EchoAttachment.echoUsingSAAJ(EchoAttachment.java:492)
         at example.attachments.EchoAttachment.main(EchoAttachment.java:323)
         {http://xml.apache.org/axis/}hostname:hutwang
    java.lang.NullPointerException
         at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
         at org.apache.axis.attachments.AttachmentsImpl.writeContentToStream(AttachmentsImpl.java:512)
         at org.apache.axis.Message.writeTo(Message.java:545)
         at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:511)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:138)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:1870)
         at org.apache.axis.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:90)
         at example.attachments.EchoAttachment.echoUsingSAAJ(EchoAttachment.java:492)
         at example.attachments.EchoAttachment.main(EchoAttachment.java:323)
    Caused by: java.lang.NullPointerException
         at java.lang.String.concat(String.java:1827)
         at com.sun.activation.registries.MailcapFile.parseLine(MailcapFile.java:235)
         at com.sun.activation.registries.MailcapFile.parse(MailcapFile.java:197)
         at com.sun.activation.registries.MailcapFile.createMailcapHash(MailcapFile.java:157)
         at com.sun.activation.registries.MailcapFile.<init>(MailcapFile.java:40)
         at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:276)
         at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
         at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
         at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
         at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
         at javax.activation.DataHandler.getContent(DataHandler.java:501)
         at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1055)
         at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:1923)
         at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1904)
         at org.apache.axis.attachments.MimeUtils.writeToMultiPartStream(MimeUtils.java:201)
         at org.apache.axis.attachments.AttachmentsImpl.writeContentToStream(AttachmentsImpl.java:493)
         ... 13 more
    Received problem response from serverReceived problem response from server
    AxisFault
    faultCode: {http://xml.apache.org/axis/}
    faultSubcode:
    faultString: Received problem response from server
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}stackTrace:Received problem response from server
         at example.attachments.EchoAttachment.echoUsingSAAJ(EchoAttachment.java:497)
         at example.attachments.EchoAttachment.main(EchoAttachment.java:323)
         {http://xml.apache.org/axis/}hostname:hutwang
    Received problem response from server
         at example.attachments.EchoAttachment.echoUsingSAAJ(EchoAttachment.java:497)
         at example.attachments.EchoAttachment.main(EchoAttachment.java:323)
    Here, the required jar - activation.jar and mail.jar have been placed into eclipse build path.
    Could anyone shed some light on this?
    Thanks,
    -Hut
    Edited by: HutWang on Sep 24, 2007 2:25 AM
    Edited by: HutWang on Sep 24, 2007 2:27 AM
    Edited by: HutWang on Sep 24, 2007 2:29 AM

    This is a dedicated forum for Sun WebServer. You may post your question in Tomcat. If you use our WebServer7 for your deployment, you may bring the case here.

  • I am getting the message error when trying to run the labwindowa/CVI adapters for debug

    See attachments for error message and teststand settings. I am running testand 4.0.1
    It was working before and suddenly it crash and then I am getting that error message every time
    Regards
    Attachments:
    ErrorLoadCallback.jpg ‏32 KB
    ErrorLoadCallback2.jpg ‏134 KB

    It seems that something might still be corrupted or not registered properly. Have you tried running the TestStand Version Selector to re-select your current version of TestStand as the active version?
    Also, you mentioned that it crashed and now things aren't working. What exactly occurred when it crashed? Was this just TestStand freezing, or did the entire system freeze or crash? Did you see an error message of any kind?
    If the version selector doesn't help things, I would suggest a reinstall of TestStand (and possibly CVI, but let's start with TestStand). To clarify, we want to do an uninstall/reinstall rather than a repair, because the repair will only replace missing files. If a file is corrupted, the uninstall/reinstall should replace it.
    Let us know how it goes!
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • In running the datalgr example, I get the error NIDAQ32.dll cannot start.... then program exits. Version of NI DAQ is 6.9.2, using MS C++.

    In running the datalgr example, I get the error NIDAQ32.dll cannot start.... then program exits. Version of NI DAQ is 6.9.2, using MS C++.

    Since this is a DAQ question more than a Measurement Studio for VC++ question, I'd recommend you repost it to the DAQ forum.
    Cheers,
    Azucena

Maybe you are looking for

  • How do I download adobe CC Bridge ?

    How do I download adobe CC Bridge ?

  • Howto change or delete TEST_ARCHIVE_STORE in XMLDAS

    Hi Experts, we configured the archiving in the Adapter Engine of SAP XI 7.0 and used (for testing purposes) the Filesystem TESTARCHIVE_STORE Now we want to use a WEBDAV System but unfortunatly we cannot reasign / unasign the TESTARCHIVE_STORE to WEBD

  • Load hierarchies from ODS

    Hi, all. Please advise, how I can load hierarchies from ODS, if ODS stores data about structure of hierarchies. If any solutions exists excluding, extract data to flat file and load it again to hierarchies. Max.

  • UDO Form Help

    Hi There, Need help on modifying my UDO xml form. I need to have the data in Matrix or Grid, But the UDO form that i create from B1 UDO Form Generator gives it field wise. I tried to create a new form in screen painter but it doesn't load the form fr

  • New Mac Pro Graphics Cards - Which way to go???

    Hi Everyone, Just looking at placing an order today for a new Mac Pro and have been considering it since they came out earlier this month. With the new graphics card availabilities I am kind of at a loss with which way to go and wanted to see what th