Runtime exception for application with pdf in webdynpro

hi,
I have a web dynpro project with pdf, I dont get any build error or any deployment exception but when i run that i get following exception,
com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (404) Not Found.
i am trying to deploy that on WAS 6.4
has any body any clue
regards,
abhijeet

Abhijeet,
I think you have to redeploy thr Application and Check Weather you have the necessary Credentials for PDF or not.
Check the link below.
Credential for Adobe Interactive Forms ?
Usually 400's error are Client Side Error's and 500's are Server Side error's.
regards
Anil Dichpally

Similar Messages

  • Runtime exception for configurable products

    Hi Gurus,
    I am getting a runtime exception for configurable products on clicking the link You can select more product options in CRM 7 b2c application . But when i login with a registered user and click the same link , it opens up and takes to the page for configuration of products .
    Please find the error from logs :
    [EXCEPTION]
    79823   java.lang.NullPointerException: It was tried to rebuild the connection because of invalidity. It is not allowed because the connection type is not JCoConnectionStateless. You may also check the user authorizations.
    79824   at com.sap.isa.core.eai.sp.jco.BackendBusinessObjectBaseSAP.getDefaultJCoConnection(BackendBusinessObjectBaseSAP.java:55)
    79825   at com.sap.isa.maintenanceobject.backend.crm.DynamicUICRM.readData(DynamicUICRM.java:121)
    79826   at com.sap.isa.maintenanceobject.businessobject.DynamicUI.read(DynamicUI.java:767)
    79827   at com.sap.isa.ipc.ui.jsp.action.InitDynamicUIAction.ecomPerform(InitDynamicUIAction.java:67)
    79828   at com.sap.isa.isacore.action.EComBaseAction.doPerform(EComBaseAction.java:375)
    79829   at com.sap.isa.core.BaseAction.execute(BaseAction.java:212)
    79830   at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    79831   at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:692)
    79832   at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    79833   at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:409)
    79834   at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    79835   at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
    79836   at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    79837   at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    79838   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    79839   at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
    79840   at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
    79841   at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    79842   at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    Can anybody help me out to find the issue .
    Thanks and Regards,
    Tony Isaac

    Tony,
    It looks more like an issue with the loading of the JCO properties before the logon. Can you go to XCM and try reentering the password and save the config. Once done do a test connection and restart the application.
    Then set a breakpoint in the BackendBusinessObjectBaseSAP class in the method getDefaultJCoConnection().
    Here when the current connection is invalid it tries to read the config properties from XCM. Just check if it is reading the correct values from the config ISA_COMPLETE which is read on the backend object.
    In case of mismatch, you need to fix that or you could try to build a new JCO connection with your own parameters.
    Pradeep
    Edited by: Pradeep Kumar on Mar 11, 2010 6:20 AM

  • Runtime Exception for Transaction MEREP_MON

    Can you please help me solving this problem?
    For last 3 days I am getting runtime exception for Transaction MEREP_MON. Error description is Time limit Exceeded.
    This is coming only for Direction Outbound ( When I chcking OutBound Checkbox) at the top left corner.
    For Inbound and Distribution it is working fine.
    I tried with MEREP_PURGe and purging all inbound and outbound data.

    Hi Baskar,
    I changed the mapping. I removed the ABS function. It's still throwing the same error. Now when I copy the payload from SXMB_MONI and test in Mapping in ESR, it's working fine. But the same source file throws error in SXMB_MONI. The xml that works in Test tab should certainly work in SXMB_MONI also, shouldn't it?
    So I guess it is a different error.
    Runtime exception occurred during application mapping com/sap/xi/tf/_MM_INFRECMASS_ECC_to_MDM_; com.sap.aii.mappingtool.tf7.MessageMappingException: Runtime exception when processing target-fieldmapping /ns0:MT_INFRECMASS_Receiver/INFREC_Receiver
    I must add that the INFREC_Receiver is the root node of the target file and I have kept it 0..unbounded and fields 0...1. But the source has many segements of the Idoc, so should I change them ?
    Harish Babu

  • Runtime exception for other than programming error.

    In a conversation the question arose whether it could be a case of throwing a runtime exception for anything other than a bug. The tutorial on oracle site says "These Usually Indicate programming bugs" leading to think that can be used in situations in which there is no bug.
    Anyone have a practical example of a runtime exception when there is no bug?
    Thanks.

    937643 wrote:
    Ok. But. Do you think that in these cases the use of a runtime exception could be considered a bad practice?That's actually a matter of some debate.
    On the one hand, Java has defined two major kinds of exceptions since the very beginning (unchecked exceptions, which are RuntimeException, Error, and their descendants; and checked exceptions which are everything else). The intended use of those was that checked exceptions should be for things that can normally go wrong in the execution of a program, even without a bug or without a major internal JVM error, such as a failed attempt to persist something or a network connection dropping--stuff that a programmer might normally be expected to deal with; while unchecked exceptions were created for things that a programmer would not normally handle in his code (except possibly at major architectural boundaries), like buggy code or an internal JVM failure.
    With the rule about having to catch or declare checked exceptions, but not unchecked ones, that makes it easy for programmers so say, "Okay, I know exactly what can go wrong here that I might be expected to handle and I can therefore choose what to do with it; there will be no surprises. But I don't have to deal with problems that are outside my normal responsibility, like somebody passing me a null when they shouldn't have." It gives a programmer a nice bit of control, and the ability to know he hasn't missed something, kind of like the type safety provided by a strongly typed language.
    At least that's the theory.
    In practice, most checked exceptions either just get bubbled up to the next layer (via a throws clause), or caught wrapped in a fairly generic layer-appropriate exception and rethrown. There's not a whole lot of use made of what checked exceptions provide, and there's a lot of ugly boilerplate code that doesn't do anything useful for the app but is just there to satisfy the compiler.
    So, some people think that checked exceptions are useless, or mostly useless, and favor unchecked exceptions in most or all cases. I believe that's part of the philosophy of Spring, but I'm not totally sure.
    The idea is that since most of the time you can't do anything about exceptions that might be thrown to you, it's wasteful and pointless to have all that code to catch and rethrow. In this viewpoint, it would be better if, for example, not providing a throws clause at all meant that you could throw any exception. Any given code can still catch specific exceptions that it knows it can handle, but we don't have to write a bunch of code notating something that we're not really doing anything about.
    Personally, I used to be totally in the checked exception camp. However, all the pointless boilerplate is wearing me down. I'm still not completely convinced though, and here's why: If I'm calling a method, I'd like to at least be able to see what might go wrong, so that I can decide how to deal with it. If all exceptions were unchecked, and the throws clause were optional, a conscientious developer could still provide it, and list the unchecked exceptions his method might throw to me, and/or he could document them in the javadoc comments. But a lot of developers won't do that, or even if they start to, as their method evolves, without the compiler to enforce it, they won't keep it up to date.
    So there are advantages to both approaches. I personally would to know that the information will always be available to me, but for the small percentage of the time where I actually use it (like handle one specific exception one way and some other exception differently), I'm not sure if it's worth the overhead.

  • JRockit for applications with very large heaps

    I am using JRockit for an application that acts an in memory database storing a large amount of memory in RAM (50GB). Out of the box we got about a 25% performance increase as compared to the hotspot JVM (great work guys). Once the server starts up almost all of the objects will be stored in the old generation and a smaller number will be stored in the nursery. The operation that we are trying to optimize on needs to visit basically every object in RAM and we want to optimize for throughput (total time to run this operation not worrying about GC pauses). Currently we are using hugePages, -XXaggressive and -XX:+UseCallProfiling. We are giving the application 50GB of ram for both the max and min. I tried adjusting the TLA size to be larger which seemed to degrade performance. I also tried a few other GC schemes including singlepar which also had negative effects (currently using the default which optimizes for throughput).
    I used the JRMC to profile the operation and here were the results that I thought were interesting:
    liveset 30%
    heap fragmentation 2.5%
    GC Pause time average 600ms
    GC Pause time max 2.5 sec
    It had to do 4 young generation collects which were very fast and then 2 old generation collects which were each about 2.5s (the entire operation takes 45s)
    For the long old generation collects about 50% of the time was spent in mark and 50% in sweep. When you get down to the sub-level 2 1.3 seconds were spent in objects and 1.1 seconds in external compaction
    Heap usage: Although 50GB is committed it is fluctuating between 32GB and 20GB of heap usage. To give you an idea of what is stored in the heap about 50% of the heap is char[] and another 20% are int[] and long[].
    My question is are there any other flags that I could try that might help improve performance or is there anything I should be looking at closer in JRMC to help tune this application. Are there any specific tips for applications with large heaps? We can also assume that memory could be doubled or even tripled if that would improve performance but we noticed that larger heaps did not always improve performance.
    Thanks in advance for any help you can provide.

    Any suggestions for using JRockit with very large heaps?

  • Problem signing code for application with embedded runtime

    Hi,
    I have an Adobe Air application which I am publishing with the runtime embedded.  There are lots of reasons for publishing this way.
    I have already seen an unknown publisher message after signing on Windows 8 and a tester reported the same thing on Windows 7.  According to the cert issuer (DigiCert) I need to have an Extended Validation (EV) certificate to get by the Windows 8 issue, but there was no explanation on the Windows 7 issue. 
    As the windows file is essentially a folder wiith ".app" appended to it's name, I'm not sure how signing (which I am doing with the Signature tab on the Flash GUI) ensures that the executable contained in that file is signed.
    Can anyone tell me anything about code signing when publishing an AIR application with embedded runtime?
    Best,
    Chris McLaughlin

    Not that I can think of.  What OS are they running?  Do they have the shared runtime also installed?

  • How to handle runtime exceptions for sync scenario?

    Hi Experts,
       I have a synchronous scenario.
       Request :
       webservice -
    > sends input data -
    > PI -
    > SAP R/3 --BAPI
       Response:
       webservice -<---  PI <sends back any validation error or successfully processed message----- SAP R/3 --BAPI
       Here a webservice uses SOAP adapter to send input data to PI. While PI uses ABAP proxy to send data to SAP R/3.
       The problem is when the BAPI takes too long to process and resulting in timeout exception in PI. Is there some way we can catch this runtime exception in PI and send it to webservice as response?
       Please help!
    Thanks & Regards,
    Gopal

    Hi Gopal,
    as mentioned by otheres: the main issue is here to detect the reason for performance lack...
    >Is there some way we can catch this runtime exception in PI and send it to webservice as response?
    You can invoke a Business Process and open a sync / asyn Bridge. In the process call the FM synchronous and define an exception branch which you access in case of system failure. In the exception branch execute a transformation step to fill the response container with a corresponding error message.
    Regards,
    Udo

  • Runtime Error For Converting Static pdf to Dynamic Xml Form pdf

    Hi All,
    I am converting my static pdf to dynamic xml form pdf using Adoble Livecycle Designer ES 8.2 it is giving runtime error dialog.
    My static pdf size is 12MB and it contains 46 pages(mostly all pages will have images). Do we have any limitations for converting static pdf to dynamic xml form pdf ?
    Error message image file is attatched to this thread.
    Can any body please help me on this.
    Advance Thanks
    Prasad Sagala

    Hi Paul,
    With out dividing into smaller chunks, Do we have any other alternative?
    Because in my other pdf reports having more than 50 pages (in between 100-600). If i want do divide smaller chunks it will be the long process.
    Thanks
    Prasad Sagala

  • Problem for Mail with PDF attachment

    Hello all,
    I have a problem regarding sending mail with a PDF attachment from SAP. The attachment contains Payslip of employee that is being generated from a Submit program of the respective HRFORM. I have used the Submit program within a JOB and the spool request generated. From the spool request i am extracting the pages using FM RSPO_GET_PAGES_SPOOLJOB.
    Now to convert the spool job to PDF am using FM CONVERT_OTFSPOOLJOB_2_PDF.  And after the job is being finished, am deleting both the JOB and SPOOL.
    To change the output of the FM CONVERT_OTFSPOOLJOB_2_PDF, into attachment with line width of 255 am using FM SX_TABLE_LINE_WIDTH_CHANGE. Then after filling all the required parameters for FM SO_DOCUMENT_SEND_API1, am sending the mail with the attachment. I have kept the format as PDF.
    But the problem here is, the attachment is going as .DAT file and not as .PDF file!!!
    Please help to resolve this issue.
    with regards,
    Koushik.

    Hello,
    Instead of using SO* APIs to send mail you should use the BCS classes. Anyway there is a sample program BCS_EXAMPLE_8 which is very similar to your requirement
    Cheers,
    Suhas
    PS: The sample program BCS_EXAMPLE_6 has got more to do with PDF forms as is your case

  • Runtime exception for Date format

    Hi,
    Scenario : RFC to IDOC
    found the error in my payload :
    RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZORDERS06/IDOC/E1EDK03/DATUM. The message is: Unparseable date: "2008-05-19" at com.sap.aii.mappingtool.tf3.AMappingProgram.start
    Here i has used DateTransformation from the Date Function.
    How can i give the format for Target side here.
    Regards,
    yeswanth.

    Hello Yeshwanth,
    RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZORDERS06/IDOC/E1EDK03/DATUM. The message is: Unparseable date: "2008-05-19" at com.sap.aii.mappingtool.tf3.AMappingProgram.start
    Here i has used DateTransformation from the Date Function.
    In Date Trans Properties:
    In Format Source date u select : yyyy-mm-dd
    In Target Format u select: yyyy/mm/dd
    Thanks,
    Satya

  • For FF19 with PDFs, can the yellow "Open With Different Viewer" pop-up bar be disabled?

    Hi all, I really like the built in PDF viewer because search as a I type works with, thanks FF devs!
    But ... I get this yellow pop-up with many PDFs I view:
    This PDF document might not be displayed correctly and a button for Open With Different Viewer
    The thing is these PDFs seem fine and I have to close the warning every time.
    Is there anyway this pop-up can be disabled or I can set an about:config setting to skip it? I can manually save a PDF or disable FF19's viewer if there's a noticeable problem with the FF19 viewer.

    Ok, since the pop up bar can't be disabled I'll disable the built in PDF viewer. Too bad, I like the search as you type feature with PDFs but this un-disable-able pop-up bar is not user friendly.

  • "Add to bookmarks - button" for application with application alias

    How to make "add to bookmarks - button" to login page of the application with the application alias?
    The idea is to ensure that end-users are storing the application alias to bookmarks rather than the direct link to application id which might change.
    rgrds Paavo

    Jari, here are some of my trials hosted now in apex.oracle.com. All url's to be bookmarked are "hardcoded" in to the login page html-header's javascript function.
    Sample db application - url with workspace name.
    http://apex.oracle.com/pls/apex/f?p=COM_ORACLE_APEX_PRODUCT_PORTAL:LOGIN:0&c=PAAVO_POC
    - the LOGIN alias defaults to login page
    - the session id is = 0 as recommended here: http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_url.htm#HTMDB03020
    - workspace name is actually Internal in the administration so omitting workspace name leads to error " Error The application alias "COM_ORACLE_APEX_PRODUCT_PORTAL" can not be converted to a unique application ID. ", perhaps other workspaces have also the same sample app alias
    - so used the PAAVO_POC as workspace name (got it during registration)
    - LOGIN page HTML-header is:
    <script type="text/javascript">
    function bookmark()
    window.external.AddFavorite("http://apex.oracle.com/pls/apex/f?p=COM_ORACLE_APEX_PRODUCT_PORTAL:LOGIN:0&c=PAAVO_POC","COM_ORACLE_APEX_PRODUCT_PORTAL in ws paavo_poc");
    </script>- LOGIN page HTML Body attribute is:
    <form>
    <input type="button" onclick="bookmark()" value="Bookmark me">
    </form>- tried to also add "Click here to bookmark me" button in the login region with the following code (couldn't figure out how to do button for this via apex developer)
    <form>
    <input type="button" onclick="bookmark()" value="Click here to bookmark me">
    </form>- login doesn't work anymore
    Copy of the same sample application but with more different / more unique alias and without the "Click here to bookmark me" button in the Login-region.
    http://apex.oracle.com/pls/apex/f?p=paavos_product_portal:LOGIN:0&c=PAAVO_POC
    - the bookmark could be stored without workspace name, but it might break if the same app. alias name appears in some other workspace http://apex.oracle.com/pls/apex/f?p=paavos_product_portal:LOGIN:0
    - login works now because no hassling with the button-code in the Login-region :)
    Then fresh new application with the following URL's and with the same symptoms.
    http://apex.oracle.com/pls/apex/f?p=POCTEST_NO_B_BUTTON:LOGIN:0&c=PAAVO_POC
    http://apex.oracle.com/pls/apex/f?p=poctest:LOGIN:0&c=PAAVO_POC
    - Enter with "demo" and "ApexIsGood". Please don't kill my workspace with lots of 'fishes' :).
    It would be good to have the URL constructed dynamically e.g. fetching the application_alias_name and the correct workspace to be used.
    In perfect world it would also be good to have feature in for redirecting the user from old version to production 'application alias' with dynamic action requesting the user to update his/her bookmark.
    But as said I am bit stuck ..
    rgrds Paavo
    Edited by: paavo on Apr 7, 2012 3:20 PM
    Edited by: paavo on Apr 10, 2012 4:05 PM

  • Java runtime setting for application server

    Hi,
    I have developed a web service using jax-rpc. I use a HP package Jena2.1 to do onotology file parsing. When I build my web service and compile it there is no problem. I finds all the necessary classes in the Jena package installed on my machine.
    Once I deploy the web service and the client makes a call to the method that uses the classes in Jena package, I get the following error on the server.
    [#|2004-10-22T16:30:19.201-0400|SEVERE|sun-appserver-pe8.1|javax.enterprise.resource.webservices.rpc.server.http|_ThreadID=16;|caught throwable
    java.lang.NoClassDefFoundError: com/hp/hpl/jena/ontology/OntModelSpec
         at ontocmp.OntoImpl.ontoCompare(OntoImpl.java:40)
         at ontocmp.OntoIF_Tie.invoke_ontoCompare(OntoIF_Tie.java:92)
         at ontocmp.OntoIF_Tie.processingHook(OntoIF_Tie.java:184)
         at com.sun.xml.rpc.server.StreamingHandler.handle(StreamingHandler.java:321)
         at com.sun.xml.rpc.server.http.JAXRPCServletDelegate.doPost(JAXRPCServletDelegate.java:443)
         at com.sun.enterprise.webservice.JAXRPCServlet.doPost(JAXRPCServlet.java:50)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:246)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:273)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:236)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:145)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:141)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:262)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:618)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:500)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doTask(ProcessorTask.java:375)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:55)
    The client can access all other methods in the web service except for the method that uses Jena classes.
    Could you please let me know the problems I am running into. How come the web service classes can compile and recognize the class but not run later?
    Infact I am able to parse files in a java application but as a web services after deployment it fails.
    Thanks for any help!!

    In the console: Server1 -> JVM Settings -> Path Settings -> Classpath Suffix:. By default the app server ignore the system classpath (the CLASSPATH environment variable).
    You can also modify the 'classpath-suffix' attribute in the <java-config> tag in the "server.xml" file in the domain1/server1/config directory (and restart the app server).
    hth,
    -Alexis

  • Creating Runtime Installer for VI with VISA Read VI

    Greetings Fellow Users,
    Please let me know which 'ADDITIONAL INSTALLERS' the  LabView RunTime engine requires in order to run a VI that reads from the built-in serial port (COM 1) of a Windows XP PC.  For instance, I include LabView Run-Time engine 8.0.1 to creat an installer for the VI.  If I want to load and run this .exe on a PC that has no other NI software, do I need to include any of the following as 'ADDITIONAL INSTALLERS':
    ->NI-SERIAL 1.8?
    ->NI-VISA RUNTIME 3.4?
    ->NI-DAQmx 8.0?
    What does the NI-VISA RUNTIME do anyways?  Also, when I do include some of these, I have to dig out my LanVIEW installations CDs and they are loaded from teh D:\.  What is the cleanest way to load these onto my HDD so that LabView will select these automatically.
    Thank you. 

    FLT CTRL 6 wrote:
    Greetings Fellow Users,
    Please let me know which 'ADDITIONAL INSTALLERS' the  LabView
    RunTime engine requires in order to run a VI that reads from the
    built-in serial port (COM 1) of a Windows XP PC.  For instance,
    I include LabView Run-Time engine 8.0.1 to creat an installer
    for the VI.  If I want to load and run this .exe on a PC that has
    no other NI software, do I need to include any of the following as
    'ADDITIONAL INSTALLERS':
    ->NI-SERIAL 1.8?
    ->NI-VISA RUNTIME 3.4?
    ->NI-DAQmx 8.0?
    What does the NI-VISA RUNTIME do anyways?  Also, when I do
    include some of these, I have to dig out my LanVIEW installations CDs
    and they are loaded from teh D:\.  What is the cleanest way
    to load these onto my HDD so that LabView will select these
    automatically.
    Thank you. 
    ->NI-SERIAL 1.8?
    This is the driver used for serial port controller boards and
    interfaces from NI. You do not need that software when trying to access
    built in serial ports or ports on interface cards from other
    manufactureres than NI.
    ->NI-VISA RUNTIME 3.4?
    This is the software LabVIEW uses to talk to all kinds of IO interfaces
    including serial ports. This is what you will need. Runtime means it is
    a stripped down version without LabVIEW, C, VB, Delphi and whatever
    development bindings and examples etc.
    ->NI-DAQmx 8.0?
    This is the software driver for NI data acquisition devices (analog IO, digital IO, counter , timers).
    These are all to be considered drivers and (very maybe apart from
    NI-VISA) it is usually not a very good idea to include drivers into the
    application installer. If you use them your user is likely to have
    bought his own kind of hardware and no matter if he happens to have
    bougt the newest SuperPCI interface board with 256 ultra-high-speed
    serial ports over wireless connections or an old standard PCI board
    with 2 RS-232 interfaces they both will have come with a CD that is
    appropriate for that device, whereas the NI-Serial driver you included
    is only appropriate for NI serial boards that are still AND already
    sold at the moment when that driver was released. The same applies for
    any other driver software.
    NI_VISA being able to connect to standard built-in serial ports could
    be considered different but it isn't really. I have included NI-VISA on
    application installers in the past only to find out that the included
    NI-VISA version did not run or not run reliably on newer machines with
    new OS versions, so we had to point the customer to the NI site to
    download the newest version anyhow, or even burn a new CD with updated
    NI-VISA versions and express ship it.
    Basically including any kind of driver software in the application
    installer may seem like a good idea but will usually cause lots of
    additional support after some time due to incompatibilities with newer
    OS versions, new hardware, etc.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Troubleshooting Io exception for application where other applications work

    I'm using jdev9052 to create a struts/jsp application. I've successfully deployed it to a test machine similarly configured to my production environment. I already have another application working in the production environent that uses the following connection in data-sources.xml:
    <data-source class="com.evermind.sql.DriverManagerDataSource" name="Orac
    leDS" location="weblogic.jdbc.DataSource.PlateauCoreDS" xa-location="weblogic.jd
    bc.DataSource.xa.PlateauDS" ejb-location="weblogic.jdbc.DataSource.PlateauDS" co
    nnection-driver="oracle.jdbc.driver.OracleDriver" username="user" password="pwd" url="jdbc:oracle:thin:@localhost:1521:PTdev" inactivity-timeout="30"/>
    My application connection looks like this on the production machine:
    <data-source name="jdev-connection-PlatPTVPC" class="com.evermind.sql.DriverMa
    nagerDataSource" location="jdbc/PlatPTVPCCoreDS" xa-location="jdbc/xa/PlatPTVPCX
    ADS" ejb-location="jdbc/PlatPTVPCDS" pooled-location="jdbc/PlatPTVPCPooledDS" co
    nnection-driver="oracle.jdbc.driver.OracleDriver" username="user" password=
    "pwd" url="jdbc:oracle:thin:@localhost:1521:PTDev" inactivity-timeout="30"
    />
    The connection works on the test machine with this:
    <data-source name="jdev-connection-PlatPTVPC" class="com.evermind.sql.DriverMa
    nagerDataSource" location="jdbc/PlatPTVPCCoreDS" xa-location="jdbc/xa/PlatPTVPCX
    ADS" ejb-location="jdbc/PlatPTVPCDS" pooled-location="jdbc/PlatPTVPCPooledDS" co
    nnection-driver="oracle.jdbc.driver.OracleDriver" username="userVPC" password=
    "pwdVPC" url="jdbc:oracle:thin:@w2kserver:1521:PTVPC" inactivity-timeout="30"
    />
    The production machine is running Solaris 10, OAS 9.0.2.7 and the development machine is running Win2000, OAS 9.0.2.7.
    The listener is running and the database is working because I can connect using the other application. Yet, when I run my application, I get the dreaded "java.sql.SQLException: Io exception: The Network Adapter could not establish the connection"
    I used jdev to create an .EAR file, deployed it using the enterprise manager on both machines.
    Any suggestions?

    Get Turbo Lister (a free page editing and listing tool from eBay).
    http://pages.ebay.com/turbo_lister/
    eBay uses some seriously flawed markup on their auction pages.  In fact, they don't even ALLOW you to use good code. You're better off using their proprietary tools for this.   IMO, DW is not the right tool for creating eBay pages.
    When you're ready to build a serious web site, come back to Dreamweaver.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

Maybe you are looking for

  • I need help getting my IPhone 5 to work in Mexico

    So I'm in La Paz and found a Telcel customer service center that had the small SIM card required for the IPhone 5.  I checked with Verizon twice and they tell me it is unlocked.  Telcel say my account is activated but my phone says no service.  When

  • Creating a diradimin for OD Master in 10.5 Standard?

    Hi there, As a "know-nothing-about-servers-dude", I've struggled hard and long to understand the essentials involved in getting an os x going. However, while setting the server up as an Open Directory Master in standard mode, I never get the opportun

  • Dynamic Link Media Server Error On Video Export Photoshop CC 2014

    Dynamic Link Media Server Error On Video Export Photoshop CC 2014

  • T2000 ipge network issue

    I have a T2000 with JES 2005Q4 installed on it. I have had some complaints about timeouts connecting to the mail server. I can find nothing in the mail logs or system logs for why this might be happening, and my network admin says no errors on any of

  • Why will my iPhone 4 not turn on, charge, or be recognized by my mac?

    I went to check the time on my phone and click the home button to show the lock screen. When did this, my phone remained blank then I tried the lock button, and that didnt work either. I then tried to plug it in to charge and not even a red battery s