nor-psp in Linux libs LV SV

I need to read some SV (a few bytes every few seconds) a LV 2012 installation on a network. The player is in a box of 6 CentOS (rhel 14), I would write a little routine of reading in c / c ++ which could be characterized as bash scripts and seeks neither-PSP c libraries. Why avoid LV-linux? I did above in LV on a different machine recently that worked well, but the General fresh start is important in the command line and the vi takes forever to start-report-quit and lv-as-service is one doomed to failure in this application. It is possible that this task force VI on a separate host will end as a UDP relay and my computer of the end user will be asked to relay, but surely there is an easier way to just look at the OAS on the network without another facility full of LV, right? and FWIW we had licenses on site for years, so 1). cost of the next copy is not a problem and 2.) If there are older libraries that only ~ after ~ were available, I can probably get my grubby mitts on them.

Any ideas?

Hi asquit,

In my opinion, using TCP/IP instead of trying to communicate using shared variables might be a better alternative, because TCP/IP is not based on a specific operating system. TCP/IP is also more reliable because it is a connection protocol based and you won't suffer data loss in your communication, which would be possible using shared variables. I will attach a link to a white paper I found on NI.com which gives an overview of how to set a TCP/IP communication in LabVIEW. You can then simply use standard client/server C/C++ code to connect.

Basic TCP/IP in LabVIEW communication:

http://www.NI.com/white-paper/2710/en/

If you decide to try this method, there are also several examples in the example LabVIEW Finder that you can start with.

Tags: NI Software

Similar Questions

  • Binds a shared variable to a NOR-PSP data object does not work

    Hello

    I want to share data between a RT-target and one or several hosts (LV 8.6.1). Shared network variables are deployed to the target RT.  According to NOR to access shared another project or host variables must be done by defining a variable shared on the host computer and the aliasing they NEITHER-PSP data object on the target.

    I did and the shared host variable was an error (0x8BBB0011) during execution.

    Next I have an alias to a shared variable, deployed on the host to another project. It worked.

    Another thing I tried was to bind the variable of the RT-target to a display element:

    This works! And as you can see that the path of the NOR-PSP data object is exactly the same thing! So, what is the difference between linking a data object to a shared variable and a display element?

    Is there a bug in the EVS, or am I missing something here?

    Home project:

    The VI editor

    Hope someone has an answer.

    Concerning

    Matthias Quade

    Dear Mr. Quade,

    Thanks for posting on the Forum of National Instruments. There is a known issue with the path of the linked with LabVIEW 8.6.1 variable

    Please download the patch for LabVIEW 8.6.1, it should solve your problem:

    http://Joule.NI.com/nidu/CDs/view/p/ID/1255/lang/de

    Best regards from Munich

  • Y at - it a new version of NOR-VXI for Linux including Red Hat Enterprise 4?

    We now use the NOR-VXI 2.1 on kernel 2.6.19, it works very well. Now, we try to use on kernel 2.6.20, but it fails to compile the driver for nivxi, it seems not easy to resolve compile errors, do you know if there is a new NO-VXI software released for Linux?

    Thank you

    Huaqing Zhan

    mdsaero,

    According to this article in the knowledge baseon ni.com, our last official kernel that is supported is 2.6.15. This can be updated since you say that you can run on 2.6.19

    I'll check with R & D to see what the latest status of this driver.

    Thank you

  • Compatibility of Linux NOR PCI 7851R

    Hi y ' All!

    I take into consideration this based FPGA Board to make digital acquisition/generation, plug it into a location PCIe to a PC running LabVIEW for Linux in a Red Hat environment.

    The data sheet of the "NI R series Multifunction RIO", it's the series in which this Council falls, does not list Linux in the paragraph "needs and compatibility." only several Windows OS.

    However, the description of the "NOR-RIO drier 14.0 for Linux" (which is the one used for this Board) mentions clearly PCI-7851R in the list of supported devices.

    Find these two statements a bit confused, I ask you if this material is actually compatible Linux.

    See you soon!

    Hi, as explained in RIO for Linux (http://www.ni.com/download/ni-rio-14.0/5027/en/) driver:

    14.0 driver NOR-RIO for Linux provides Runtime support for devices OR RIO Scientific Linux 6.x, Red Hat Enterprise Linux 6.x and 7.x and openSUSE 12.x and 13.1. Please see the file Readme for the full operating system supported.

    This means that you can use the card PCI 7851R in a Linux OS computer is compatible such as Red Hat Enterprise.

    Good day

  • NOR-DAQmx 8.0.1 undefined reference

    Hello

    I'm new with NOR-DAQmx on Linux. After reading the posts in this forum, I was able to successfully install OR-DAQmx 8.0.1 on OpenSUSE 11.0. When you run "nilsdev", I get the following list of features:

    OR PXI-6255: "Dev4.
    OR PXI-6733: "Dev3.
    OR PXI-6733: "Dev2.
    OR PXI-6713: "Dev1".

    What is correct. However, when you try to compile the following program example, using "gcc main.c:

    #include "NIDAQmx.h".
    #include
    #define DAQmxErrChk (functionCall) if (DAQmxFailed (error = (functionCall))) goto error; on the other
    int main (void) {}
    error int = 0;
    TaskHandle taskHandle = 0;
    char errBuff [2048] = {'\0'};
    float64 data [3] = {1.0,2.0,3.0};
    /*********************************************/
    DAQmx Configure Code
    /*********************************************/
    DAQmxErrChk (DAQmxCreateTask("",&taskHandle));
    DAQmxErrChk (DAQmxCreateAOVoltageChan(taskHandle,"PXI1Slot4/ao0:2","",-10.0,10.0,DAQmx_Val_Volts,""));)
    /*********************************************/
    Starting code DAQmx
    /*********************************************/
    DAQmxErrChk (DAQmxStartTask (taskHandle));
    /*********************************************/
    DAQmx write code
    /*********************************************/
    DAQmxErrChk (DAQmxWriteAnalogF64(taskHandle,1,1,10.0,DAQmx_Val_GroupByScanNumber,data,,));
    Error:
    If (DAQmxFailed (error))
    DAQmxGetExtendedErrorInfo (errBuff, 2048);
    If (taskHandle! = 0) {}
    /*********************************************/
    Stop DAQmx code
    /*********************************************/
    DAQmxStopTask (taskHandle);
    DAQmxClearTask (taskHandle);
    }
    If (DAQmxFailed (error))
    printf ("Error");
    GetChar ();
    return 0;
    }

    I get several errors about undefined references:

    main.c.text + 0 x 90): refers to 'DAQmxCreateTask' the undefined
    main.c.text + 0xdc): refers to 'DAQmxCreateAOVoltageChan' the undefined
    main.c.text + 0xf0): refers to 'DAQmxStartTask' the undefined
    main.c.text + 0 x 140): refers to 'DAQmxWriteAnalogF64' the undefined
    main.c.text + 0x15f): refers to 'DAQmxGetExtendedErrorInfo' the undefined
    main.c.text + 0 x 171): refers to 'DAQmxStopTask' the undefined
    main.c.text + 0x17c): refers to 'DAQmxClearTask' the undefined

    I have already installed OR DAQmx on a Windows XP computer and got the same errors, but could (using this post) to create the libraries needed to link against. However, I have found no information similar to that in Linux (this message seemed to understand this problem, but unfortunately, the author does not share its solution). So far, I tried various options of connection with no success '-ldl ' etc. Obviously, I'm not bind properly.

    Any help would be greatly appreciated.

    Thank you

    Grine

    I solved step connects. (Why answers always come when you almost gave up? )

    As I suspected, a liaison simple number. Compilation with 'gcc /usr/local/lib/libnidaqmx.so o main main.c', did the trick.

    I have still some errors during execution of the program, but I can probably solve these on my own.

  • Crontab Linux real time OR

    We have a chassis with NEITHER time NOR 9068 real Linux as OS.  Does anyone know how to properly configure and run a cron job?

    Other reference documents OR indicates that cron must be used to perform periodic commands the base OS and that cron is supplied with the package busybox.  The version of busybox running on the chassis is 1.20.2 and only compiled with crond and not crontab?

    I tried to install the cronie package using opkg. He have successfully installed and enabled me to run crontab.  However, when you try to run the crontab all the getting is a segmentation fault.

    Am I missing something?

    Thanks in advance!

    Thanks for the reply AGJ!

    I haven't posted this question to the community of Linux in real-time.  When I made the post, I tried a Linux forum but did not find one.  Thanks for the link.

    I actually solved the problem late last night.

    Out of the box, the init system running crond.  There is a crontab file for the root user, located at/etc/cron/crontabs.  This file can be edited with vi (or another editor if you have installed on the chassis).  The editing process is normally accomplished with the command crontab - e, but by directly modifying the file works.

    I hope this helps the next poor soul who needs to implement on the 9068 cron jobs.

    See you soon!

  • Version of gcc with NIDAQmx problem

    Hello

    When I try to install NIDAQmx8.0 I have this problem:

    [root@localhost test] # ls
    ConfigurationGuide.html LICENSE.txt PATENTS.txt UNINSTALL *.
    INSTALL * nidaqmx%8.0.1f0.tar.gz README.txt
    [root@localhost test] #. / INSTALL
    *****************************************************************************
    NEITHER DAQmx for Linux install Distribution
    version 8.0.1f0 for Linux
    *****************************************************************************
    Learn about the differences between % NOR DAQmx under Linux and Windows, so
    as important and application software system supports information, refer to the
    Readme file in the installation directory.
    National Instruments products are supported on the following Linux distributions:
    Mandriva Linux official
    openSUSE
    Red Hat Enterprise Linux Desktop + Workstation
    See README.txt for the latest information at the time of the release.
    Refer to www.ni.com/linux for the latest information on Linux
    supports at National Instruments.
    Continue? [Y/n] THERE
    Checking for the required installation tools...
    Checking versions of installation tool...
    4.4.8 RPM can be used with a default installation path
    tar 1.18
    Checking dependencies...
    glibc 2.6.1
    Unpacking install files for tmp/nidaqmx%8.0.1f0.install...
    ******************************** ERROR ****************************************
    * The version of gcc in the path does not match the version of gcc used to *.
    to compile the kernel running. This can cause unpredictable *.
    * behavior of kernel drivers and should be fixed. *
    * version gcc: gcc version 4.2.2 20071128 (prerelease) (4.2.2%3.1mdv2008.0)
    *
    * kernel compiled with: 4.2.2 *.
    ******************************** ERROR ****************************************
    Setup stops.
    [root@localhost test] #.

    I don't know what I can do.  Please help me!

    I work in the Mandriva operating system with real time kernel.

    Thank you

    OK, it seems that your gcc version string has been localized French and therefore does not match the string stored in the kernel.  To resolve this issue, you need to make some modifications to the script that performs the audit.  Copy the files from the iso image in a directory writable on your system then:

    # Extract files from archive of NOR-DAQmx 8.0.1

    tar xvzf nidaqmx - 8.0.1f0.tar.gz

    # Edit bin/installerUtility.sh and replace lines 340 and 341 with the following

    currentGCCVersion ='$CC - v 2 > & 1 | tail-n 1 | Of $SED. [* gcc [(a-zA-Z)]--------+------([0-9] [^])] \+\).*/\1/ "
    kernelGCCVersion =' $CAT/proc/version. Of $SED. [* gcc [(a-zA-Z)]--------+------([0-9] [^])] \+\).*/\1/ "

    # Rebuild the archive of NOR-DAQmx

    tar cvzf nidaqmx bin - 8.0.1f0.tar.gz / RPM /.

    # Run the installer

    . / INSTALL

    Shawn Bohrer

    National Instruments

  • Ensure that a single NSV is delivered

    I have a project with a compactRIO, stream of data to a PC via the network stream.

    I use VNRS to share state information between devices (i.e.. a Boolean value that indicates if the HARD disk on the compactRIO is full).

    NSV is deployed to the compactRIO, compactRIO can work without a PC and its code is dependent on the NSV.

    I don't care about losing intermediate data, but I don't like that the last value I wrote is delivered (whether for the PC or the cRIO) because I can write only to the NSV once ever.

    My question is twofold:

    (1) if I write a value to a variable that is shared once, assuming that there are no network problems, it is guaranteed to eventually spread to the other side? How will I know if she did?

    2) given that the NSV is hosted on the RT are values written on the NSV of the RT immediately available for the RT for playback?

    j.Collins says:


    I still need to add the step where I loop continuously on a read NSV until my changes are propagated during initialization, as suggested here.

    Example refers to initialization of a SV hosted on a DIFFERENT target - the target RT variable initialization hosted on a PC, then wait for the PC propagate the initial values back as a way to confirm that initialization was successful. We must wait and check because there is a chance that the link to the PC is down.

    Since you are hosting your variable on your RT target, waiting is not necessary. If your cRIO done writing, your cRIO variable motor is guaranteed to receive the initial value.

    j.Collins says:


    (1) given that the data in this project are written on the NSV is rare and isolated readers don't know where they should be concerned that no new values have been written.  I guess I'm more worried that a writer knows that its value has been published on the EVS (if the writer is on the same machine as the EVS or not).  What prompted my concern initially was something I read in an article of OR: 'writing to a Publisher does not guarantee an update because the NOR-PSP is frozen.  It was an article that was specific to the buffering of the shared network variables, I don't.

    (2) "immediate" was a bad choice of phrasing on my part.  I want to know is if access from the same device hosting the NSV EVS will work as access to a process variable unique in the sense that the network layer is avoided.  I should have a warm fuzzy feeling that a NSV, read and written from the same machine (or RT) of hosting EVS can handle a critical Boolean value on it as ' should I be saving data or not.  On a remote system, I catch error access NSV otherwise a network disconnection will throw errors popup to the user, if I'm going to read it. What I have to do this on the machine hosting EVS or is access NSV as safe for the EVS machine like any other local variable?  Would it not more sure that I just read NSV written all the worms and to leave local variables on a periodic basis and use local variables in the rest of my code?

    (1) "lossy" in this context refers to the Protocol. If your network goes down and your host writes 10 values without buffer before returning to the network, the player will only see the last value and not the first 9. No check is made to ensure that each value is received, and there is no way to recover old values of service. (Compare this with TCP, a protocol without loss - the sender retransmits packets that have not been received)

    In your case, since your variable is a flag instead of a data flow, you don't have to worry about this. Even if your network goes down before your written cRIO "full disk" flag, your PC will see the flag after the connection is restored. Just make sure that your connection is good.

    (2) given that AES is hosted locally, your cRIO doesn't have access to the network to write values in it. A machine cannot lose the connection with himself. However, you still have to 'open access' to a locally hosted NSV. I've never seen this failure with NSV hosted locally, but I guess I can't confirm with 100% certainty that it will never fail. You need an engineer OR with the knowledge of the inner secrets of the EVS.

  • LabView 2009 tagsrv.exe problem

    Hello!

    I installed LV 2009 on windows XP machine. To start the computer, the error in the tagsrv.exe is reported. On Distributed System Manager is not possible to see the variable shared on computers on the network. The firewall is disabled. Do you have any idea how to solve this?

    Thank you!

    Hi Toni

    The definitions of these errors are (you can find them here):

    Error-1950679027: NOR-PSP has not connected to the server again

    1950679035 error: unable to locate the variable in the shared Variable engine. Deployment of this variable may have failed.

    As you can see, they both have to do with the shared Variable engine. You are able to use the variable shared on another computer? You have your installed antivirus software? In this case you can try disabeling also? If all else fails, try to reinstall in accordance with this statement and then reinstall it again. Sorry for the inconveniance

    Best regards

    David

  • Is the C API of DAQmx compatible cross-platform?

    Given the same material of NOR and the last DAQmx software is installed. Would the same DAQmx associated with C source compiles and work on Windows, Linux and Mac OS X?

    I ask this, because I already produced an application of special measures using the API C DAQmx to treat the PCI hardware OR in a Windows XP box, and I think now on porting my app for Linux and Mac OS X.

    Do I need to reprogram the associated DAQmx part of my application for all platforms, or might it be likely that it simply works for all the supported platforms as it is (maybe with small changes).

    Best regards

    Rolf

    Rolf-

    You don't mention what PCI M series that you use, but most of the M line series is supported by NEITHER-DAQmx for Linux.  From July 2009, the latest version is NEITHER-DAQmx 8.0.1.  The Readme file lists the supported devices.  If your device and the Linux distribution are supported, I strongly suggest using NOR-DAQmx on Linux.  Your 'C' for NOR-DAQmx for Windows programs should port directly to NOR-DAQmx for Linux with little or no programming changes.

    You should note that NEITHER-DAQmx Base is only available for Mac OS x driver package.  Note also that there is no support for USB DAQ of NOR-DAQmx for Linux devices, so if you find yourself using any DAQ USB under Linux, you will need to use NOR-DAQmx Base to program these devices.

    I hope this helps.

  • Cannot run the service method "run the Html Conversion" - dynamic converter problem

    Hello

    We are facing the sub question for dynamic conversion. We have Oracle COE 11.1.1.8 Linux

    Installing the last group of patches Patch 19991981 : OUTDOOR 8.4.0.140 OPATCH for PS5, PS6 or PS7

    Always face the question.

    Unable to run the 'runHtmlConversion' of service method. Null pointer is dereferenced. [Details]

    An error has occurred. The stack trace below shows more information.

    ! csUserEventMessage, 410484, dev - wcc.qbe.com.au! csFileServiceReferredToBy, http:// <> <> / cs/idcplg? IdcService = DOC_INFO & dID = 1219 & dDocName = 15393345! csFileServiceUserAgent, Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729 .NET CLR 3.0.30729; Media Center PC 6.0; NET4.0C;. NET4.0E), GET! csUnableToExecMethod, runHtmlConversion! syNullPointerException

    intradoc.common.ServiceException:! csUnableToExecMethod, runHtmlConversion

    * ScriptStack GET_DYNAMIC_CONVERSION_SUB

    3:doSubService, dID = 1219, dDocName = 15393345GET_DYNAMIC_CONVERSION_SUB, dID = 1219, dDocName = 153933453:runHtmlConversion, dID = 1219, dDocName = 15393345

    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2176)

    at intradoc.server.Service.buildServiceException(Service.java:2404)

    at intradoc.server.Service.createServiceExceptionEx(Service.java:2398)

    at intradoc.server.Service.createServiceException(Service.java:2393)

    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:102)

    at intradoc.server.Service.doCodeEx(Service.java:622)

    at intradoc.server.Service.doCode(Service.java:594)

    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)

    at intradoc.server.Service.doAction(Service.java:566)

    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)

    at intradoc.server.Service.doActions(Service.java:561)

    at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1346)

    at intradoc.server.Service.executeSubServiceCode(Service.java:4184)

    at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1222)

    at intradoc.server.Service.executeServiceEx(Service.java:4179)

    at intradoc.server.Service.executeService(Service.java:4163)

    at intradoc.server.Service.doSubService(Service.java:4073)

    at sun.reflect.GeneratedMethodAccessor370.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)

    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)

    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)

    at intradoc.server.Service.doCodeEx(Service.java:639)

    at intradoc.server.Service.doCode(Service.java:594)

    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)

    at intradoc.server.Service.doAction(Service.java:566)

    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)

    at intradoc.server.Service.doActions(Service.java:561)

    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)

    at intradoc.server.Service.executeActions(Service.java:547)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)

    at intradoc.server.Service.doRequest(Service.java:1976)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)

    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)

    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1355)

    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1732)

    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:223)

    at sun.reflect.GeneratedMethodAccessor292.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.executeContentServerIntegrateMethodOnConfig (ServletUtils.java:1680)

    to idcservlet. IdcFilter.doFilter (IdcFilter.java:457)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.lang.NullPointerException

    to dynamicconverter. DynConverterHandler.doConversion (DynConverterHandler.java:1730)

    to dynamicconverter. DynConverterHandler.runHtmlConversion (DynConverterHandler.java:1498)

    at sun.reflect.GeneratedMethodAccessor427.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)

    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)

    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)

    ... more than 69

    Please help us to solve the problem,

    Thanks in advance.

    Tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 caused by: java.io.IOException: cannot run program "/ u01/app/Middleware/Oracle_ECM1/ILO/linux/lib/contentaccess/htmlexport" (in the directory ' / u01/app/Middleware/Oracle_ECM1/ILO/linux/lib/contentaccess '): = 13, Permission denied error

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 to java.lang.ProcessBuilder.start(ProcessBuilder.java:1042)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 to intradoc.taskmanager.TaskLauncher.startExe(TaskLauncher.java:177)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19... 2 more

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 caused by: java.io.IOException: error = 13, Permission denied

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 at java.lang.UNIXProcess.forkAndExec (Native Method)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 to java.lang.UNIXProcess. (UNIXProcess.java:135)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 to java.lang.ProcessImpl.start(ProcessImpl.java:130)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19 to java.lang.ProcessBuilder.start(ProcessBuilder.java:1023)

    The tasks/6 01.23 Manager 17:22:46.296 htmlexport_19... 3 more

    > taskmanager/6 01.23 17:22:46.297 withdrawal htmlexport_19 launcher for task: htmlexport that has been marked as finished

    Permission denied is the main reason for the error. As you saw command line as well as executable files are evidence of permission denied for user wccadm. If please check or give higher set of permissions for the executables under u01/app/Middleware/Oracle_ECM1/ILO/linux/lib/contentaccess and test it.

  • Conversion of image using DAM error

    Hi all

    We are facing a problem during the implementation of a new environment. We have configured DAM in accordance with http://docs.oracle.com/cd/E14571_01/doc.1111/e10800/c04_damia_all.htm#IBRAG299.

    But we face a problem in IBR, image files are not converted. Here are the details of the newspaper (active record):

    Info09/01/15-01:15Journal entry for '202' conversion job:
    Starts converting: Input File = ' / oracle/app/Middleware/user_projects/domains/base_domain/ucm/ibr/vault/~temp/localhost16200/202/202.jpg 'output file =' / oracle/app/Middleware/user_projects/domains/base_domain/ucm/ibr/vault/~temp/localhost16200/202/stag_test4~1.jpg ' Type of Conversion = "Digital Media Graphics" Content ID = "STAG_TEST4" Title = "STAG_TEST4".
    Info09/01/15-01:15Journal entry for '202' conversion job:
    Started the DigitalGraphicRenditions stage.
    Info09/01/15-01:15Journal entry for '202' conversion job:
    Loading game name "BasicRenditions".
    File export in writing search resources.
    Launch of export research
    Starts to create the rendering 'Web' of type 'web '.
    Failure of the interpretation of "Web". The engine has reported the following error: "no module available for outputid graphic export selected (0x01C6)."
    Finished restoring "Web".
    Starts to create the rendering "Miniature" of type "miniature".
    Failure of the interpretation of "Miniature". The engine has reported the following error: "no module available for outputid graphic export selected (0x01C6)."
    Finished rendering "Miniature".
    Starts to create the "Preview" of "Overview" type rendering
    Failure of the 'Sample' interpretation The engine has reported the following error: "no module available for outputid graphic export selected (0x01C6)."
    Finished the 'Sample' return
    Analysis of the results for rendering "indexData.
    Analysis of the results for 'Web' rendering
    The rendering of the 'Web' was not created successfully.
    Analysis of the results for rendering "Miniature".
    "Miniature" rendering was not created successfully.
    Analysis of the results for 'Sample' rendering
    'Preview' rendering was not created successfully.
    Copy 'Native file' rendition as the primary rendition.
    Info09/01/15-01:15Journal entry for '202' conversion job:
    DigitalGraphicRenditions step completed.
    Info09/01/15-01:15Journal entry for '202' conversion job:
    Step DigitalGraphicRenditions forced conversions incomplete with the error: one or more renditions has not converted successfully.

    I also checked for failures of the dependency, using the:

    [oracle@localhost contentaccess] $ cd/home/oracle/Oracle/Middleware/Oracle_ECM1/ILO/linux/lib/contentaccess /.

    [oracle@localhost contentaccess] $ ldd exsimple

    All dependencies are also available.

    Please help here.

    Thank you

    Praveen.

    Thanks to all, Yes, I've identified the problem.

    Very useful thread: https://community.oracle.com/message/12258180#12258180

    Thank you

    Praveen.

  • Search for content in DOCX/PDF documents is not possible

    Hello

    I use WebCenter content (11.1.1.8). I want to search in the documents. WebCenter content-> Administration-> management-> General Configuration Server, I put the following.

    SearchIndexerEngineName = DATABASE. FULL-TEXT

    SearchIndexerEngineName = ORACLETEXTSEARCH

    I can search in TXT, HTM and XML files, but not in the PDF or DOCX files.  I after conversion failed.

    pdf_conversion_failure.PNG

    How can I solve this problem?

    Kind regards

    Rigassi

    Thank you

    I think that libraries are not correctly installed. See the extract of downloaded papers:

    > taskmanager/7 15:54:20.070 01.29 TaskLauncher_TextExport_stderr__13 read 166 bytes: / u01/app/oracle/product/fmw / 11 g/oracle_ecm1/ILO/linux/lib/contentaccess/textexport: error while loading shared libraries: libstdc ++. so.5: evil class ELF: ELFCLASS64

    Please see oracle Note:

    Error 'content is indexed with the info only... ". "When you use Oracle Text Search (Doc ID 1551703.1)

  • Content error DAM Server

    Hi all

    My problem is very similar to: Inbound refinery problem causing assets to remain in the State GenWWW AAU

    I configured the dam on the Linux environment and running WCC & IBR as services. I have not integrated with the conversion of any third party applications and also not created the games of additional interpretation (using the three out of the box ones). I am trying to run the built-in image conversion mechanism.

    I followed all the steps documented but again the conversion does not. Have enabled the agent verbose logs and following is the snapshot:

    Info30/07/14 14:22Journal entry for '203' conversion job:
    Starts converting: Input File = ' / home/oracle/Oracle/Middleware/user_projects/domains/base_domain/ucm/ibr/vault/~temp/localhost16200/203/403.tif 'output file =' / home/oracle/Oracle/Middleware/user_projects/domains/base_domain/ucm/ibr/vault/~temp/localhost16200/203/localhost16200000403~1.tif ' Type of Conversion = "Digital Media Graphics" Content ID = "LOCALHOST16200000403" Title = "Test9 '.
    Info30/07/14 14:22Journal entry for '203' conversion job:
    Started the DigitalGraphicRenditions stage.
    Info30/07/14 14:22Journal entry for '203' conversion job:
    Loading game name "substitutes".
    File export in writing search resources.
    Launch of export research
    Starts to create the rendering 'Web' of type 'web '.
    Failure of the interpretation of "Web". The engine has reported the following error: < undefined >
    Finished restoring "Web".
    Starts to create the rendering "Miniature" of type "miniature".
    Failure of the interpretation of "Miniature". The engine has reported the following error: < undefined >
    Finished rendering "Miniature".
    Starts to create the "Preview" of "Overview" type rendering
    Failure of the 'Sample' interpretation The engine has reported the following error: < undefined >
    Finished the 'Sample' return
    Starts to create the rendering "Jpeg2000" of type "extra".
    "Jpeg2000" rendering failed. The engine has reported the following error: ' / home/oracle/Oracle/Middleware/Oracle_ECM1/ILO/linux/lib/contentaccess/oitconverter: error while loading shared libraries: libstdc ++. so.5: evil class ELF: ELFCLASS64'
    Finished restoring "Jpeg2000.
    Starts to create the rendering "Tiff" type "extra".
    The interpretation of 'Tiff' failed. The engine has reported the following error: < undefined >
    Finished rendering "Tiff".
    Starts to create the rendering "Bitmap" of type "extra".
    Failure of the interpretation of "Bitmap". The engine has reported the following error: < undefined >
    Finished rendering "Bitmap".
    Analysis of the results for 'Web' rendering
    The rendering of the 'Web' was not created successfully.
    Analysis of the results for rendering "Miniature".
    "Miniature" rendering was not created successfully.
    Analysis of the results for 'Sample' rendering
    'Preview' rendering was not created successfully.
    Analysis of the results for rendering "Jpeg2000.
    'Jpeg2000' restitution was not created successfully.
    Analysis of the results for rendering "Tiff".
    Rendering 'Tiff' was not created successfully.
    Analysis of the results for rendering "Bitmap".
    The 'Bitmap' interpretation was not created successfully.
    Copy 'Native file' rendition as the primary rendition.
    Info30/07/14 14:22Journal entry for '203' conversion job:

    DigitalGraphicRenditions step completed.Info30/07/14 14:22Journal entry for '203' conversion job:
    Step DigitalGraphicRenditions forced conversions incomplete with the error: one or more renditions has not converted successfully.

    Can someone please help me here? Let me know if you need all the information to do this.

    Thank you

    Praveen.

    Thanks William, Ryan & Srinath, it worked.

    I followed the steps you have mentioned and identified 32 bit libstdc ++. so.5 was missing, installed the same and everything worked.

    Thank you very much!!

    Praveen.

  • Problem with ECM 10 G work with Apache 2.2.22

    Hello everyone and thanks for your help.
    I am facing a problem when you try to use Apache to display my URL of the Complutense University of MADRID.
    I get this error when I try to the Apache user:

    ----------------------------------------------

    [oracle@ucm-2 bin] $. / apachectl start
    httpd: syntax error on line 465 of the /app/apache2/conf/httpd.conf: cannot load /app/oracle/ecm/ucm/shared/os/linux/lib/IdcApache22Auth.so into server: /app/oracle/ecm/ucm/shared/os/linux/lib/IdcApache22Auth.so: evil class ELF: ELFCLASS32

    --------------------------------------------

    I use Linux Oracle 5u6, Oracle DB 11 G, ECM 10 G, Apache 2.2.22 (my VM). The host is Windows 7 Enterprise 64-bit.
    I know it's an old and obsolete the ECM version, but we need this configuration for training purposes.
    What is the line 465 (and below) is:

    -----------------------------------------------

    LoadModule IdcApacheAuth "/ app/oracle/ecm/ucm/shared/os/linux/lib/IdcApache22Auth.so".
    Oracle IdcUserDB "/ app/oracle/ecm/ucm/data/users/userdb.txt".
    Alias /idc "/ app/oracle/ecm/ucm/weblayout.
    < /idc location >
    Allow all the
    DirectoryIndex portal.htm
    IdcSecurity oracle
    < / location >

    ----------------------------------------------

    Thus, it is anyway I could solve this problem? I'm new to Linux (especially of Oracle), I tried on a lot of things before coming here to create this post.
    Can you please help me?

    Thanks for your help and your kindness.
    Have a nice weekend!

    Hello

    You will need to download the Patch 6899660 of MoS gate and use the IdcApacheauth22.so file that is for the 64-bit platform. Place it the Group of hotfixes to the location of the Complutense University of Madrid, then restart Apache and UCM.

    Thank you
    Srinath

Maybe you are looking for

  • 6733 OR general issues

    Hi all I'm having some trouble with the NI PCI-6733 device and I have a few questions about this. 1. What is the resistance of exit? 2. can I change the output resistance? 3. If I change the output resistance, can be infinite? Thank you

  • Automatic indexation shows that partial data

    Hello world Please see the attachment.  I added notes where the data are reported missing.  I know this has something to do with automatic indexing and I spent a bit of time to read about it and try different things, but I really need help now please

  • Pavilion dv6: failure of hard drive test

    my system does not work and I tried to go to safe mode but is not wor and I trried to do system test and there all tests except the short DST hard drive, it failed with the following information Failure ID: OLKQ0F-5SW7JD-QFPH5A-60XE03 PRODUCT ID: A7M

  • Aspire 5560G without Windows Driver Ethernet 10

    Hi Acer community. I just registered here today that I need to ask a question about my computer Aspire 5560 G laptop problem. A few days ago, I installed my version of Windows from Windows 7 to Windows Home 64 bit 10.  Everything was good except that

  • Cursor position using TextField

    Hello Is it possible to get information about the position of the slider component TextField? It is property of cursor QML TextField component, but I can't find something similar in the Cascades. ARO Maciek