Inventory reports multiple parallel ports

Hello everyone,
I'm having an issue with zcm's inventory, where on some workstations it would detect 1000s of parallel ports. Obviously this causes the inventory scan file to grow very large (approx. 25MB!), which I think is what is making the server and the PCs very slow.
here is a snippet of what I see in the inventory xml file:
Code:
<ParallelPort>
<Component>
<ComponentOID>b7949a55df5dc6498b717a0464ff831b</ComponentOID>
<Product>
<ProductOID>d99235000000000000000000c0000cbf</ProductOID>
<Manufacturer />
<ProductName>Parallel Ports</ProductName>
<ModelVersion />
<Type>15</Type>
<Code>3511001</Code>
<IsLocal>0</IsLocal>
<ProductCategoryOID>a9e5e4000000000000000090279059b1</ProductCategoryOID>
<Category>Parallel Port</Category>
<ProductCategory>Parallel Port</ProductCategory>
</Product>
<SerialNumber />
<AssetTag />
<DeltaState>1</DeltaState>
</Component>
<LogicalName />
<IsEPP>0</IsEPP>
<IsECP>0</IsECP>
</ParallelPort>
<ParallelPort>
<Component>
<ComponentOID>77a764323a55814fae79d66ad80fee6e</ComponentOID>
<Product>
<ProductOID>d99235000000000000000000c0000cbf</ProductOID>
<Manufacturer />
<ProductName>Parallel Ports</ProductName>
<ModelVersion />
<Type>15</Type>
<Code>3511001</Code>
<IsLocal>0</IsLocal>
<ProductCategoryOID>a9e5e4000000000000000090279059b1</ProductCategoryOID>
<Category>Parallel Port</Category>
<ProductCategory>Parallel Port</ProductCategory>
</Product>
<SerialNumber />
<AssetTag />
<DeltaState>1</DeltaState>
</Component>
<LogicalName />
<IsEPP>0</IsEPP>
<IsECP>0</IsECP>
</ParallelPort>
<ParallelPort>
<Component>
<ComponentOID>385d075dc99beb4c9459aed9c3240ff3</ComponentOID>
<Product>
<ProductOID>d99235000000000000000000c0000cbf</ProductOID>
<Manufacturer />
<ProductName>Parallel Ports</ProductName>
<ModelVersion />
<Type>15</Type>
<Code>3511001</Code>
<IsLocal>0</IsLocal>
<ProductCategoryOID>a9e5e4000000000000000090279059b1</ProductCategoryOID>
<Category>Parallel Port</Category>
<ProductCategory>Parallel Port</ProductCategory>
</Product>
<SerialNumber />
<AssetTag />
<DeltaState>1</DeltaState>
</Component>
<LogicalName />
<IsEPP>0</IsEPP>
<IsECP>0</IsECP>
</ParallelPort>
<ParallelPort>
<Component>
<ComponentOID>f57b89ce1b953c47be3d584126eb54ec</ComponentOID>
<Product>
<ProductOID>d99235000000000000000000c0000cbf</ProductOID>
<Manufacturer />
<ProductName>Parallel Ports</ProductName>
<ModelVersion />
<Type>15</Type>
<Code>3511001</Code>
<IsLocal>0</IsLocal>
<ProductCategoryOID>a9e5e4000000000000000090279059b1</ProductCategoryOID>
<Category>Parallel Port</Category>
<ProductCategory>Parallel Port</ProductCategory>
</Product>
<SerialNumber />
<AssetTag />
<DeltaState>1</DeltaState>
</Component>
<LogicalName />
<IsEPP>0</IsEPP>
<IsECP>0</IsECP>
</ParallelPort>
this obviously gets repeated a bunch of times, and what I have noticed is that the <ComponentOID> is always different.
I know I might have to open a SR request, but I just wanted to see if anybody had seen this before.
thanks,
Giordano

gbianchi77,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • RxtxSerial library multiple serial ports listener

    Hello All,
    I am using rxtxSerial library (import gnu.io.*; compatible with previousely available from Sun import javax.comm.*;) for my bridge application. Th example provided in the library's web site with nulltest.java employs only one serial port. It is powerful since it is threaded and detects incomming/outgoing streams.
    However, I would like to bridge between servers so multiple ports will be employed. Do you heave any suggestion how to obtain multiple port handling (reading/writing) within the same class. The null test code is presented as follows. Simplest idea is to use arrays, but more details are required.
    // derived from SUN's examples in the javax.comm package
    import java.io.*;
    import java.util.*;
    //import javax.comm.*; // for SUN's serial/parallel port libraries
    import gnu.io.*; // for rxtxSerial library
    public class nulltest implements Runnable, SerialPortEventListener {
       static CommPortIdentifier portId;
       static CommPortIdentifier saveportId;
       static Enumeration        portList;
       InputStream           inputStream;
       SerialPort           serialPort;
       Thread           readThread;
       static String        messageString = "AT";
       static OutputStream      outputStream;
       static boolean        outputBufferEmptyFlag = false;
       public static void main(String[] args) {
          boolean           portFound = false;
          String           defaultPort;
          // determine the name of the serial port on several operating systems
          String osname = System.getProperty("os.name","").toLowerCase();
          if ( osname.startsWith("windows") ) {
             // windows
             defaultPort = "COM5";
          } else if (osname.startsWith("linux")) {
             // linux
            defaultPort = "/dev/ttyS0";
          } else if ( osname.startsWith("mac") ) {
             // mac
             defaultPort = "????";
          } else {
             System.out.println("Sorry, your operating system is not supported");
             return;
          if (args.length > 0) {
             defaultPort = args[0];
          System.out.println("Set default port to "+defaultPort);
              // parse ports and if the default port is found, initialized the reader
          portList = CommPortIdentifier.getPortIdentifiers();
          while (portList.hasMoreElements()) {
             portId = (CommPortIdentifier) portList.nextElement();
             if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
                if (portId.getName().equals(defaultPort)) {
                   System.out.println("Found port: "+defaultPort);
                   portFound = true;
                   // init reader thread
                   nulltest reader = new nulltest();
          if (!portFound) {
             System.out.println("port " + defaultPort + " not found.");
       public void initwritetoport() {
          // initwritetoport() assumes that the port has already been opened and
          //    initialized by "public nulltest()"
          try {
             // get the outputstream
             outputStream = serialPort.getOutputStream();
          } catch (IOException e) {}
          try {
             // activate the OUTPUT_BUFFER_EMPTY notifier
             serialPort.notifyOnOutputEmpty(true);
          } catch (Exception e) {
             System.out.println("Error setting event notification");
             System.out.println(e.toString());
             System.exit(-1);
       public void writetoport() {
          System.out.println("Writing \""+messageString+"\" to "+serialPort.getName());
          try {
             // write string to serial port
             outputStream.write(messageString.getBytes());
          } catch (IOException e) {}
       public nulltest() {
          // initalize serial port
          try {
             serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
          } catch (PortInUseException e) {}
          try {
             inputStream = serialPort.getInputStream();
          } catch (IOException e) {}
          try {
             serialPort.addEventListener(this);
          } catch (TooManyListenersException e) {}
          // activate the DATA_AVAILABLE notifier
          serialPort.notifyOnDataAvailable(true);
          try {
             // set port parameters
             serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8,
                         SerialPort.STOPBITS_1,
                         SerialPort.PARITY_NONE);
          } catch (UnsupportedCommOperationException e) {}
          // start the read thread
          readThread = new Thread(this);
          readThread.start();
       public void run() {
          // first thing in the thread, we initialize the write operation
          initwritetoport();
          try {
             while (true) {
                // write string to port, the serialEvent will read it
                writetoport();
                Thread.sleep(1000);
          } catch (InterruptedException e) {}
       public void serialEvent(SerialPortEvent event) {
          switch (event.getEventType()) {
          case SerialPortEvent.BI:
          case SerialPortEvent.OE:
          case SerialPortEvent.FE:
          case SerialPortEvent.PE:
          case SerialPortEvent.CD:
          case SerialPortEvent.CTS:
          case SerialPortEvent.DSR:
          case SerialPortEvent.RI:
          case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
             break;
          case SerialPortEvent.DATA_AVAILABLE:
             // we get here if data has been received
             byte[] readBuffer = new byte[20];
                   int numBytes = 0;
             try {
                // read data
                while (inputStream.available() > 0) {
                   numBytes = inputStream.read(readBuffer);
                // print data
                String result  = new String(readBuffer);
                System.out.println("Bytes read: "+numBytes+", Read contents: "+result);
             } catch (IOException e) {}
             break;
    }Kujtim
    Edited by: Kujtim on Jul 12, 2009 1:41 PM
    Edited by: Kujtim on Jul 12, 2009 1:43 PM
    Edited by: Kujtim on Jul 13, 2009 1:57 PM

    As an off the wall suggestion, check the usb "power save settings" under "control Panelower Options:Edit Plan Settings:Advanced Settings:USB settings" You want the USB selective suspend setting to be Disabled. Another possible idagnostic tool might be to do  a    Power Efficiency Diagnostics Report  which we have found has occasionally pointed us to usb hanging issues. 
    Using the same type usb-serial adapters doesn't guarantee anything, but I have run into issues where a vendor's driver was implemented incorrectly. It ended up being a wrapper around the FTDI driver, and the wrapper dll wasn't correctly made multi-threaded safe. I browbeat the vendor (I was working at a LARGE corporation, with a prospective LARGE purchase of the devices) into telling me what calls their wrapper made. I then used the FTDI dll directly, not using the "simplified interface" of the vendor's dll. FTDI's dll was thread safe, no more random lockups/BSOD.
    Good Luck, these are incredibly painful!
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • Sending trigger through parallel port, C++, Visual Studio 2010, Windows 7

    Hi, I have a problem that I am really stuck with, and I am novice to the task so any help would be extremely helpful.
    I an trying to write to parallel port on my PC in order to send a trigger to EEG recording machine every time the new goal appears in a Virtual Reality game that I wrote in C++ (I want to record EEG brain signals while subjects are playing the game).
    I tried to follow the instructions from here: http://msdn.microsoft.com/en-us/library/ff802693.aspx
    I wrote the following code:
    BOOL FileExists(LPCTSTR szPath)
    DWORD dwAttrib = GetFileAttributes(szPath);
    return (dwAttrib != INVALID_FILE_ATTRIBUTES && 
    !(dwAttrib & FILE_ATTRIBUTE_DIRECTORY));
    BOOL WriteABuffer(char * lpBuf, DWORD dwToWrite)
    OVERLAPPED osWrite = {0};
    DWORD dwWritten;
    DWORD dwRes;
    BOOL fRes;
    // Create this write operation's OVERLAPPED structure's hEvent.
    osWrite.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (osWrite.hEvent == NULL)
    // error creating overlapped event handle
    return FALSE;
    // Issue write.
    if (!WriteFile(ghComm, lpBuf, dwToWrite, &dwWritten, &osWrite)) {
    if (GetLastError() != ERROR_IO_PENDING) {
    // WriteFile failed, but isn't delayed. Report error and abort.
    fRes = FALSE;
    else
    // Write is pending.
    dwRes = WaitForSingleObject(osWrite.hEvent, INFINITE);
    switch(dwRes)
    // OVERLAPPED structure's event has been signaled.
    case WAIT_OBJECT_0:
    if (!GetOverlappedResult(ghComm, &osWrite, &dwWritten, FALSE))
    fRes = FALSE;
    else
    // Write operation completed successfully.
    fRes = TRUE;
    break;
    default:
    // An error has occurred in WaitForSingleObject.
    // This usually indicates a problem with the
    // OVERLAPPED structure's event handle.
    fRes = FALSE;
    break;
    else
    // WriteFile completed immediately.
    fRes = TRUE;
    CloseHandle(osWrite.hEvent);
    return fRes;
    I get none of the specified errors, but game fails to start and it seems nothing gets written to parallel port. Any suggestions on how to proceed from here would be more than appreciated.
    Thank you, Joanna

    Hi, I have a problem that I am really stuck with, and I am novice to the task so any help would be extremely helpful.
    I an trying to write to parallel port on my PC in order to send a trigger to EEG recording machine every time the new goal appears in a Virtual Reality game that I wrote in C++ (I want to record EEG brain signals while subjects are playing the game).
    I tried to follow the instructions from here: http://msdn.microsoft.com/en-us/library/ff802693.aspx
    I wrote the following code:
    BOOL FileExists(LPCTSTR szPath)
    DWORD dwAttrib = GetFileAttributes(szPath);
    return (dwAttrib != INVALID_FILE_ATTRIBUTES && 
    !(dwAttrib & FILE_ATTRIBUTE_DIRECTORY));
    BOOL WriteABuffer(char * lpBuf, DWORD dwToWrite)
    OVERLAPPED osWrite = {0};
    DWORD dwWritten;
    DWORD dwRes;
    BOOL fRes;
    // Create this write operation's OVERLAPPED structure's hEvent.
    osWrite.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (osWrite.hEvent == NULL)
    // error creating overlapped event handle
    return FALSE;
    // Issue write.
    if (!WriteFile(ghComm, lpBuf, dwToWrite, &dwWritten, &osWrite)) {
    if (GetLastError() != ERROR_IO_PENDING) {
    // WriteFile failed, but isn't delayed. Report error and abort.
    fRes = FALSE;
    else
    // Write is pending.
    dwRes = WaitForSingleObject(osWrite.hEvent, INFINITE);
    switch(dwRes)
    // OVERLAPPED structure's event has been signaled.
    case WAIT_OBJECT_0:
    if (!GetOverlappedResult(ghComm, &osWrite, &dwWritten, FALSE))
    fRes = FALSE;
    else
    // Write operation completed successfully.
    fRes = TRUE;
    break;
    default:
    // An error has occurred in WaitForSingleObject.
    // This usually indicates a problem with the
    // OVERLAPPED structure's event handle.
    fRes = FALSE;
    break;
    else
    // WriteFile completed immediately.
    fRes = TRUE;
    CloseHandle(osWrite.hEvent);
    return fRes;
    I get none of the specified errors, but game fails to start and it seems nothing gets written to parallel port. Any suggestions on how to proceed from here would be more than appreciated.
    Thank you, Joanna

  • Client Hardware inventory showing multiple errors

    We have some client which are not sending the operating system Build No.
    while looking in the inventor logs it show multiple errors.Complete inventory log attached below.
    Can anybody help to understand the issue.
    Inventory: Delta report without a previous Full report; will do a Full report.    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Inventory: Action=Hardware ReportType=Full    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Inventory: Initialization completed in 0.062 seconds    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ApplicationID, Description, EvaluationEndDate, GracePeriodRemaining, ID, LicenseStatus, MachineURL, Name, OfflineInstallationId, PartialProductKey, ProcessorURL, ProductKeyID,
    ProductKeyURL, UseLicenseURL FROM SoftwareLicensingProduct; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:10:58 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, FilePropertiesHash, FilePropertiesHashEx, FileSize, FileVersion, Language, ParentName, Product, ProductCode, ProductVersion,
    Publisher, ShortcutKey, ShortcutName, ShortcutType, TargetExecutable FROM SMS_SoftwareShortcut; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:00 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, Version FROM Win32_WindowsUpdateAgentVersion; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:01 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, InstallDate, ProdID, Publisher, Version FROM Win32Reg_AddRemovePrograms64; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:01 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\Microsoft\appvirt\client; Query = SELECT __CLASS, __PATH, __RELPATH, CachedLaunchSize, CachedPercentage, CachedSize, LaunchSize, Name, PackageGUID, TotalSize, Version, VersionGUID FROM Package; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Failed to enumerate instances of Package: 8004100E    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, DriverName, HardwareVersion, Index, Manufacturer, Name, Status FROM Win32_SCSIController; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Caption, ClassGuid, ConfigManagerErrorCode, ConfigManagerUserConfig, CreationClassName, Description, DeviceID, Manufacturer, Name, PNPDeviceID, Service, Status, SystemCreationClassName,
    SystemName FROM Win32_USBDevice; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupState, friendlyName, id, infoClsid, isBound, percentage, registrationDate, vendorName, version FROM NAP_SystemHealthAgent; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, DeviceID, PrimaryBusType, RevisionNumber, SecondaryBusType, Status, StatusInfo, SystemName FROM Win32_MotherboardDevice; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, Manufacturer, Name, Status FROM Win32_NetworkClient; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM    8676
    (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Access, Bootable, BootPartition, Description, DeviceID, Name, PrimaryPartition, Size, SystemName, Type FROM Win32_DiskPartition; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ConfigManagerErrorCode, DeviceID, ErrorDescription, LastErrorCode, Name, PNPDeviceID FROM Win32_PnpEntity; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, MediaType, Name, Status FROM Win32_TapeDrive; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ExpirationDate, IssueDate, KeyPackId, LicenseId, LicenseStatus, sHardwareId, sIssuedToComputer, sIssuedToUser FROM Win32_TSIssuedLicense; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Class "Win32_TSIssuedLicense" does not exist out.    InventoryAgent    8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, CLSID, Description, FileName, FilePropertiesHash, FilePropertiesHashEx, FileVersion, Product, ProductVersion, Publisher, Version FROM SMS_BrowserHelperObject;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Drive, Manufacturer, MediaType, Name, SCSITargetId, SystemName, VolumeName FROM Win32_CDROMDrive; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\SoftwareMeteringAgent; Query = SELECT __CLASS, __PATH, __RELPATH, AdditionalProductCodes, CompanyName, ExplorerFileName, FileDescription, FilePropertiesHash, FileSize, FileVersion, FolderPath, LastUsedTime, LastUserName,
    msiDisplayName, msiPublisher, msiVersion, OriginalFileName, ProductCode, ProductLanguage, ProductName, ProductVersion, SoftwarePropertiesHash FROM CCM_RecentlyUsedApps; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:04
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, ChannelCode, ChannelID, MPC, ProductCode, SoftwareCode FROM SMS_InstalledSoftwareMS; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:04
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BootDevice, BuildNumber, Caption, CountryCode, CSDVersion, Description, InstallDate, LastBootUpTime, Locale, Manufacturer, Name, Organization, OSLanguage, RegisteredUser, SystemDirectory,
    TotalSwapSpaceSize, TotalVirtualMemorySize, TotalVisibleMemorySize, Version, WindowsDirectory FROM Win32_OperatingSystem; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:18 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, Name, PathName, ServiceType, StartMode, StartName, Status FROM Win32_Service; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:18
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Index, InterfaceType, Manufacturer, MediaType, Model, Name, Partitions, PNPDeviceID, SCSIBus, SCSILogicalUnit, SCSIPort, SCSITargetId, Size,
    SystemName FROM Win32_DiskDrive; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AvailableLicenses, Description, IssuedLicenses, KeyPackId, KeyPackType, ProductType, ProductVersion, TotalLicenses FROM Win32_TSLicenseKeyPack; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Class "Win32_TSLicenseKeyPack" does not exist out.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\CIMv2\Security\MicrosoftTpm; Query = SELECT __CLASS, __PATH, __RELPATH, ManufacturerId, ManufacturerVersionInfo, SpecVersion FROM Win32_Tpm; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DefaultIPGateway, DHCPEnabled, DHCPServer, DNSDomain, DNSHostName, Index, IPAddress, IPEnabled, IPSubnet, MACAddress, ServiceName FROM Win32_NetworkAdapterConfiguration; Timeout
    = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DeviceID, DriveLetter, ProtectionStatus FROM Bitlocker; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Skipping Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, InstanceKey, PhysicalHostName, PhysicalHostNameFullyQualified FROM Win32Reg_SMSGuestVirtualMachine, we're running on wow64 and attempting to force enumerating 32-bit
    data.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = root\ccm; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, Name, Version FROM CCM_InstalledComponent; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, DeviceID, DisplayType, MonitorManufacturer, MonitorType, Name, PixelsPerXLogicalInch, PixelsPerYLogicalInch, ScreenHeight, ScreenWidth FROM Win32_DesktopMonitor;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\Microsoft\appvirt\client; Query = SELECT __CLASS, __PATH, __RELPATH, LastLaunchOnSystem, Name, PackageGUID, Version FROM Application; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20
    PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to enumerate instances of Application: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\vm\VirtualServer; Query = SELECT __CLASS, __PATH, __RELPATH, Name FROM VirtualMachine; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\vm\VirtualServer Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to enumerate instances of VirtualMachine: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, InstallDate, Manufacturer, Name, PNPDeviceID, ProductName, Status FROM Win32_SoundDevice; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, CompatibleIDs, DeviceID, HardwareIDs, IsPnP, Name FROM CCM_SystemDevices; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\VulnerabilityAssessment; Query = SELECT __CLASS, __PATH, __RELPATH, Tool, VulnerabilityID, VulnerabilityScore FROM Win32_Vulnerability; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:21
    PM    8676 (0x21E4)
    Collection: Class "Win32_Vulnerability" does not exist out.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = root\SmsDm; Query = SELECT __CLASS, __PATH, __RELPATH, DeviceOEMInfo, DeviceType, InstalledClientID, InstalledClientServer, InstalledClientVersion, LastSyncTime, OS_AdditionalInfo, OS_Build, OS_Major, OS_Minor, OS_Platform, ProcessorArchitecture,
    ProcessorLevel, ProcessorRevision FROM SMS_ActiveSyncConnectedDevice; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Class "SMS_ActiveSyncConnectedDevice" does not exist out.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, SecurityLogStartDate, TopConsoleUser, TotalConsoleTime, TotalConsoleUsers, TotalSecurityLogTime FROM SMS_SystemConsoleUsage; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AdapterCompatibility, AdapterDACType, AdapterRAM, CurrentBitsPerPixel, CurrentHorizontalResolution, CurrentNumberOfColumns, CurrentNumberOfRows, CurrentRefreshRate, CurrentScanMode,
    CurrentVerticalResolution, Description, DeviceID, DriverDate, DriverVersion, InstalledDisplayDrivers, Name, NumberOfColorPlanes, SpecificationVersion, VideoMode, VideoModeDescription, VideoProcessor FROM Win32_VideoController; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:22 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Name FROM Win32_USBController; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:22 PM    8676
    (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AdapterType, Description, DeviceID, MACAddress, Manufacturer, Name, ProductName, ServiceName, Status FROM Win32_NetworkAdapter; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:22 PM    8676 (0x21E4)
    Collection: Namespace = root\SmsDm; Query = SELECT __CLASS, __PATH, __RELPATH, LastSyncTime, MajorVersion, MinorVersion FROM SMS_ActiveSyncService; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676
    (0x21E4)
    Collection: Class "SMS_ActiveSyncService" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AuthorizationName, BinPath, DatePosted, DateRevised, ID, InfoPath, Language, LocaleID, Product, QNumbers, RebootType, ScanAgent, Severity, Status, Summary, TimeApplied, TimeAuthorized,
    TimeDetected, Title, Type, UnattendSyntax FROM Win32_PatchState; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Class "Win32_PatchState" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Manufacturer, Name, Status FROM Win32_IDEController; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ChassisTypes, Manufacturer, Model, SerialNumber, SMBIOSAssetTag, Tag FROM Win32_SystemEnclosure; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ID, Language, ProductID, QNumbers, RevisionNumber, Status, TimeDetected, Title, UpdateID FROM Win32_PatchState_Extended; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Class "Win32_PatchState_Extended" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, InstanceKey, PhysicalHostName, PhysicalHostNameFullyQualified FROM Win32Reg_SMSGuestVirtualMachine64; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Update cached IWbemService pointer to namespace: \\.\root\cimv2    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Name, TotalPageFileSpace, TotalPhysicalMemory, TotalVirtualMemory FROM CCM_LogicalMemoryConfiguration; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupURL, name, napEnabled, napProtocolVersion, systemIsolationState FROM NAP_Client; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, CertificateSelectionCriteria, CertificateStore, ClientAlwaysOnInternet, HttpsStateFlags, InstanceKey, InternetMPHostName, SelectFirstCertificate FROM Win32Reg_SMSAdvancedClientSSLConfiguration;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AddressWidth, BrandID, CPUHash, CPUKey, DataWidth, DeviceID, Family, Is64Bit, IsMobile, IsMulticore, Manufacturer, MaxClockSpeed, Name, NormSpeed, PCache, ProcessorId, ProcessorType,
    Revision, SocketDesignation, Status, SystemName, Version FROM SMS_Processor; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, CurrentTimeZone, Description, Domain, DomainRole, Manufacturer, Model, Name, NumberOfProcessors, Roles, Status, SystemType, UserName FROM Win32_ComputerSystem; Timeout = 600
    secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, FileName, FilePropertiesHash, FilePropertiesHashEx, FileVersion, Location, Product, ProductVersion, Publisher, StartupType,
    StartupValue FROM SMS_AutoStartSoftware; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BuildNumber, Description, Manufacturer, Name, ReleaseDate, SerialNumber, SMBIOSBIOSVersion, SoftwareElementID, SoftwareElementState, TargetOperatingSystem, Version FROM Win32_BIOS;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Capabilities, DeviceID, Name, Status FROM Win32_ParallelPort; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, ExecutableName, FilePropertiesHash, FilePropertiesHashEx, FileSize, FileVersion, HasPatchAdded, InstalledFilePath, IsSystemFile,
    IsVitalFile, Language, Product, ProductCode, ProductVersion, Publisher FROM SMS_InstalledExecutable; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AnswerMode, DeviceID, DeviceType, Index, MaxBaudRateToPhone, MaxBaudRateToSerialPort, Model, Name, Properties, Status, StringFormat, SystemName, VoiceSwitchFeature FROM Win32_POTSModem;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\VulnerabilityAssessment; Query = SELECT __CLASS, __PATH, __RELPATH, DetailKey, DetailScore, DetailValue1, DetailValue2, DetailValue3, Tool, VulnerabilityID FROM Win32_Vulnerability_Detail; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Class "Win32_Vulnerability_Detail" does not exist out.    InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, InstallDate, ProdID, Publisher, Version FROM Win32Reg_AddRemovePrograms; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ID, Name, ParentID FROM Win32_ServerComponent; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Class "Win32_ServerComponent" does not exist out.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AMT, AMTApps, BiosVersion, BuildNumber, DeviceID, Flash, LegacyMode, Netstack, ProvisionMode, ProvisionState, RecoveryBuildNum, RecoveryVersion, Sku, TLSMode, VendorID, ZTCEnabled
    FROM SMS_AMTObject; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ClientMachineID, IsKeyManagementServiceMachine, KeyManagementServiceCurrentCount, KeyManagementServiceMachine, KeyManagementServiceProductKeyID, PolicyCacheRefreshRequired, RequiredClientCount,
    Version, VLActivationInterval, VLRenewalInterval FROM SoftwareLicensingService; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, ARPDisplayName, CM_DSLID, EvidenceSource, InstallDate, InstallDirectoryValidation, InstalledLocation, InstallSource, InstallType, Language, LocalPackage, ProductCode, ProductID,
    ProductName, ProductVersion, Publisher, RegisteredUser, ServicePack, SoftwareCode, SoftwarePropertiesHash, SoftwarePropertiesHashEx, UninstallString, UpgradeCode, VersionMajor, VersionMinor FROM SMS_InstalledSoftware; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, LastUpdateTime, PackageID, PackageVer, Type FROM Win32_ScanPackageVersion; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:12 PM  
     8676 (0x21E4)
    Collection: Class "Win32_ScanPackageVersion" does not exist out.    InventoryAgent    8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, LastConsoleUse, NumberOfConsoleLogons, SystemConsoleUser, TotalUserConsoleMinutes FROM SMS_SystemConsoleUser; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\invagt; Query = SELECT __CLASS, __PATH, __RELPATH, Name, SMSID, Domain, SystemRole, SystemType, LocalDateTime FROM CCM_System; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:12 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Compressed, Description, DeviceID, DriveType, FileSystem, FreeSpace, Name, Size, SystemName, VolumeName, VolumeSerialNumber FROM SMS_LogicalDisk; Timeout =
    600 secs.    InventoryAgent    8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: 50/64 inventory data items successfully inventoried.    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Collection Task completed in 74.116 seconds    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: 14 Collection Task(s) failed.    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Temp report = C:\Windows\SysWOW64\CCM\Inventory\Temp\b10dd5e0-1535-409c-afa0-77a0cd56c8fe.xml    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Starting reporting task.    InventoryAgent    8/7/2013 3:12:13 PM    10060 (0x274C)
    Reporting: 3777 report entries created.    InventoryAgent    8/7/2013 3:12:14 PM    10060 (0x274C)
    Inventory: Reporting Task completed in 1.170 seconds    InventoryAgent    8/7/2013 3:12:14 PM    10060 (0x274C)
    Inventory: Successfully sent report. Destination:mp:MP_HinvEndpoint, ID: {3593753E-6C4D-47D1-9EAD-048B981804BD}, Timeout: 80640 minutes MsgMode: Signed, Not Encrypted    InventoryAgent    8/7/2013 3:12:14 PM    10060
    (0x274C)
    Inventory: Cycle completed in 134.051 seconds    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Inventory: Action completed.    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Inventory: ************************ End of message processing. ************************    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Thanks

    Lines like this:
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client
    simply means that for that particular client, that wmi namespace does not exist.  I suspect that namespace does not exist on that particular client because for the specific client, it does not have the APPv client.
    or like this: Failed to get IWbemService Ptr for \\localhost\root\vm\VirtualServer    means that for that particular client, it does not have Microsoft VirtualServer installed (which you MIGHT have on a server, maybe).
    anything like that can be easily ignored and explained.  the only reason to care about those would be if you absolutely 100% KNOW that the namespace root\vm\virtualserver does exist on that client, and it does have instances, and then you are wondering
    why it's not reporting.  then maybe you would be concerned.  Otherwise, your log file looks perfectly fine.
    So; what problem are you trying to solve?
    Standardize. Simplify. Automate.

  • LMS3.1/RME: inventory report

    Hi,
    I would like to get an information about gigaStack port on switch inventory.
    I have generated an Detail device Report but I didn't get this information.
    I can find this information by show interface status | include GigaStack on switch :Gi0/1                        connected    trunk      a-full a-1000 1000BaseCX Gigastack
    Gi0/2                        connected    trunk      a-full a-1000 1000BaseCX Gigastack
    So, I try with RME -> Tools -> Netshow. see file attached.
    I get the information but I prefered to get it in with a report because I need to get thoses informations for 150 devices.
    Is there a way to get it on a report ?
    When I look at RME->Admin-> Inventory-> Change Filter,
    I think that there are more port information compare to report generator.
    Status
    Parent Relative Position
    Port Interface Index
    Operational Status
    Manufacturer Name
    Field Replaceable Unit
    Alias Name
    Slot Configuration
    Port Model Name
    Port Vendor Type
    Power Remaining
    Port Serial Number
    Power Consumption(%)
    Description
    Power Consumption
    Component Type
    Power Available
    Port Index
    Power Allocated
    Maximum Power
    POE Admin Status
    Physical Entity Name
    Custom report, port attribute, I can take only thoses attributes:
    Maximum Power
    Power Allocated
    Power Available
    Power ConsumptionPower Consumption(%)
    Power Remaining
    POE Admin Status
    Why there are more infiormation for change audit than inventory report ?
    Thanks, Elisabeth
    Inventory Change Filter : Port 

    Do you think that there is an attribute or an snmp variable for GigaStack information like I can get with show status ?
    Port      Name               Status       Vlan       Duplex  Speed Type
    Gi0/1                        connected    trunk      a-full a-1000 1000BaseCX Gigastack
    Gi0/2                        connected    trunk      a-full a-1000 1000BaseCX Gigastack

  • HP color laserjet 4600 parallel port is wierd need help to identify

    Hi I have a laserjet 4600 and it has a wierd looking parallel port and I can't seem to find out the name for it so I can buy it online. I have tried looking for it online but the only thing that comes up is the IEEE 1284 36 pin parallel port. Can anyone help me identify this port so I can connect it to my computer?
    Thanks

    dan4757 wrote:
    I am running windows 7 64 bit trying to connect to a HP color laser jet 4600. We have tried multiple times to get a Notebook to load the driver. Everything works and asks to print a test page. When you press print test page nothing happens and nothing will print. 
      This is a working printer. It is presently hooked to a network and it works from it. I am trying to make it work from my notebook. I am using a ethernet cable wired directly to the Jetdirict card. 
      Do I need to set up a network. I know the IP of the printer and can not access it from the Notebook.
    This should work for you.  I've installed several printers using a Jet Direct this way:
    Install the printer manually.  Go into Devices and Printers -> Click "Add a printer" then select "add a local printer" and select the option for "Create a new port - Standard TCP/IP Port" and click next.  Type the IP address of the printer into the Hostname/IP Address field then click "next" -  Choose Hewlett Packard Jet Direct from the Standard drop down menu then click next.  You will need to select your printer model/driver from the list and then click next.  

  • Parallel port read with a CIN

    I need to read the status of a pin of the parallel port from within a Labview CIN.
    I intend to use this as a trigger for multiple camera acquisitions, and going back to Labview to read this value would not be fast enough.
    I know that under windows XP I need to "unlock" access to this port. I used a set of functions called "winio" to do this. This works fine from a regular C program, but won't work from within a CIN. Does Labview lock the use of the parallel port in any way?
    Does anyone know what I should do ?
    Thanks.

    Tchill wrote:
    Does Labview lock the use of the parallel port in any way?
    Does anyone know what I should do ?
    Thanks.
    Hi Tchill,
    I can't remember Win-XP causing trouble with the parallel port. But I do know about the security feature which does not allow to change the parallel port IO addressing (that's another topic )
    If you are running LV7.0, you can do a search example on parallel port. There are a couple of very useful vi's that you can run right away and it should get you going.
    You can also check this thread.
    or more directly into the developer zone for a tutorial by clicking HERE.
    JLV

  • OBIEE11g, BI Apps 7.9.6 for EBS - Consignment Inventory Report details

    Hi,
    If anyone worked on BI Apps for EBS, can you please tell me the details of Consignment Inventory Report?
    I need to know the columns names and how calculations done on Consignment Inventory Report.
    Any information on this will be highly appreciated.
    Thanks in advance.

    Hi,
    The 3 Global currency codes are different from functional , local currency.
    All the transactions are brought into the warehouse and there is no limitation to the number of currencies that can be brought in but for reporting purpose you want to convert all these transactions in multiple currencies to a single currency ...lets say US$ and at a monthly rate or GBP at a spot rate etc..
    So in a nutshell the document and local currenclies do come in and there is no configuration needed but translation to a global reporting currency and the rates at which its converted is determined by what you provide in DAC.. the conversion is done by mplt_currency_conversion which is present in each and every fact mapping.

  • HT202450 If the issue is reported multiple times, is it still covered?

    If the issue is reported multiple times, is it still covered?

    Security Software and Related Troubles
    http://support.apple.com/kb/TS3125          Basic Troubleshooting
    http://support.apple.com/kb/TS3297          Advance Troubleshooting
    http://support.apple.com/kb/ts1629          Ports List
    Basics
    Check correct date, time, and timezone.
    Log in as administrative user account
    Verifiy iTunes updated
    Update Operating System “OS” (Ms Windows, Mac OSX)
    Update Modem / Router firmware
    Update security software (Antivirus, Firewall)
    Remove Outdated Security Software (Always restart afterwards)
    Advanced
    Remove Mobile Software not used anymore
    (Motorola, Android, Nokia, Sony, Blackberry)
    Add Apple programs to firewall permissions
    Allow Ports 80, 443, 3689, 5297, 5298, 5353, 8000-8999, and 42000-42999
    Permit Domains - apple.com , edgesuite.net , mzstatic.com
    Disable Security Software
    Remove Security Software (restart!)
    Delete “Hosts” file and restart, or edit and save.
    Check Browser Settings: Use SSL3, TLS1, Auto Detect, No Proxy Settings
    Reinstall itunes FOLLOWING ARTICLE while all security off / disabled or completely removed.
    http://support.apple.com/kb/HT1923
    http://support.apple.com/kb/HT1925

  • File owner in Volume Inventory reports

    On Netware, I sometimes used the Volume Inventory report in iManager to find files on NSS volumes that are owned by specific user. Now I migrated to OES Linux and it appears that these reports show file ownership based on Linux users not eDirectory users. Can someone suggest a good alternative that would give me the information I'm looking for?

    Originally Posted by vatson
    Duh... Of course I meant Novell Remote Manager (port 8009), not iManager...
    Here you go (this is for OES2, so I don't know if the same applies on OES11). It DID drastically slow things down in OES2, so if it works on OES11, it will probably do the same for it:
    Here's IF you wanted to enable the non-LUM ownership:
    "InventoryResolveNonLumOwnerName" in the httpstkd.conf file. By default Inventory resolve non-lum user names is false. If you wish the non-lum user names to resolved set parameter to true. See conf file clip below:
    ; InventoryResolveNonLumOwnerName - This parameter is used when doing an inventory and file owner uid is set to nobody.
    ; This occurs when a file is owned by a user that is not lum enabled.
    ; By setting this parameter to true, we will try to resolve the owner name using Novll NSS apis.
    ; By using Novell NSS apis to resolve the owner name there is a major performance impact when doing an inventory.
    ; The more non-user owners encountered the longer the inventory may take.
    ; The default will be false
    ; If you modify the setting it will be necessary to restart NRM.
    ; Options: false, true
    ; false - Non-Lum Owner is NOT resolved
    ; true - Non-Lum Owner is resolved
    ; Example (Resolve non-lum owners to owner name):
    ; InventoryResolveNonLumOwnerName true;
    ; Example (do not resolve non-lum owners):
    ; InventoryResolveNonLumOwnerName false
    InventoryResolveNonLumOwnerName false
    3. Edit the conf file and add the following "InventoryResolveNonLumOwnerName false" or "InventoryResolveNonLumOwnerName true". FYI: if the InventoryResolveNonLumOwnerName parameter is not in conf. file InventoryResolveNonLumOwnerName false is assumed.
    4. do rcnovell-httpstkd start

  • How to enable parallel port DC5800

    This PC has header pins on the motherboard for a parallel port and I have connected a header cable but linux does not recognise that the computer has any parallel port hardware. There also seems to be no way to enable or disable the parallel port in the BIOS although it does have a setting for the printer port mode. The parallel support is described as "optional" on this PC, is it possible that the port cannot be enabled on this model?
    Additional: I just installed Windows and it's the same. It really seems like the parallel port is disabled at BIOS level and cannot be activated.

    869578 wrote:
    Could you give me a sample query using by the above example query?
    What kind of hints are needed in order to invoke multiple db link? As I said - this (distributed PQ across db links) is not supported. PQ needs to run inside a single database.
    The only time that PQ runs across servers, is with an Oracle RAC database. But even then, PQ runs inside a single physical database.
    If you want to use parallel processing across databases via db links, you need to code and implement that yourself.

  • Labview cant see parallel port

    We have this old computer in the lab and when I tried to test a new program
    on it I found that labview cannot seem to see the serial port. The port
    works fine in hyperterminal, but in labview the serial control which usually
    has a dropdown box to choose com1, com2, etc, now cannot dropdown.
    Measurement and Automation also does not list serial and parallel ports
    after a refreshview. The computer has both 6.02 and 6.1 installed on it, so
    I suspect that maybe I need to uninstall and reinstall but I hate to go
    through all that trouble if it's something simple. Has anyone seen this
    kind of thing before?

    Hi Adam,
    You can have both Labview 6.0.2 and 6.1 on the same machine without problems. But you should have only one version of the drivers on the machine. You may have multiple versions of the drivers since the basic drivers get installed with labview. You can uninstall the old drivers by going to add/remove programs. Choose the older labview version (6.0.2 in this case)and hit change. Select Modify on the next window, on the drivers section in the next window right click on drivers and select 'Do not Install this feature'.
    This should leave you with only one version of labview installed drivers. Also look into add/remove programs for multiple versions of Measurement and Automation Explorer (MAX)and NI-VISA.
    You must have VISA 2.5 (or higher) for this. MAX needs
    the NI-VISA driver in order to access the COM ports on your system. Without NI-VISA installed, you will be unable to access or create serial, GPIB-VXI, or TCP/IP interfaces.
    Note: Though you mention parallel port in the title, since you refer to COM1, COM2 i guess you are refering to serial ports.
    Hope this helps,
    Pravin

  • Room Inventory Report - failed -Report stopping because of ReadOnly mode

    Hi All,
           I'm trying to run the Room Inventory Report  (content Admin -> KM Content-> Toolbox -> Report -> Room Inventory Report ) to get more info on the Rooms. Currently there are more than 500 rooms and when i run the report after 30 mins i'm getting the result as "Report stopping because of ReadOnly mode" . I have tried giving full permission to my user id to the rooms folder and also to the reporting folder where the file is supposed to come. This has worked in past say 2 years before but now i'm getting this failed message.
    Pls. suggest your inputs for this error.
    Thanks
    Yusuf

    Hello Experts,
           Your help is highly appreciated. I have run the report with multiple admin ids but still getting the read only failure message..
    Thanks
    Yusuf

  • Tecra M2 parallel port disabled

    I have a Tecra M2 series laptop that reports it is running ACPI BIOS version 1.4
    I have Kubuntu installed (previously 7.10 now 8.04). I am unable to print via the parallel port. If I go into the bios the port is shown as disabled which I can enable, save a boot and then I am able to print. The problem is, next time I start the computer the bios has forgotten that I enabled the parallel port and I can no longer print.
    As it is a bit of a pain to have to enter the bios every time I think I might want to print, does anyone know how to make bios changes stick?

    you have to press end and then answer yes to save the settings after making any changes - it is quite clear on the bios screen what you have to do and it obviously works as the parallel port works. the problem is that it does not remember when I next shut down and start up again
    I have just found that if I change the parallel port from ECP to std bi-directional the bios remembers this but this makes no difference to it remembering the enabled state of the port. Interesting!
    Message was edited by: peterroots

  • Parallel Port access using Java

    hello guys.. Please Solve my Problem..
    I have to access motor through pc using Parallel Port. I want to know how to program in java to access Parallel Port. So How can i code to access the any Port of Parallel Port. Please Guide me in this..
    I have tried using parport (code given below )---------------->but it gives error hs_err_pid2172.log (error explanation given at last ). Please tell me what is the problem or if u have any other alternative to access  Parallel Port
    //===============================================================================
    //code :
    package parport;
    public class ParallelPort
    private int portBase;
    public ParallelPort(int portBase)
    this.portBase = portBase;
    public int read()
    return ParallelPort.readOneByte(this.portBase+1);
    public void write(int oneByte)
    ParallelPort.writeOneByte(this.portBase, oneByte);
    public static native int readOneByte(int address);
    public static native void writeOneByte(int address, int oneByte);
    static
    System.loadLibrary("parport");
    import parport.ParallelPort;
    class SimpleIO {
    public static void main ( String []args )
    ParallelPort lpt1 = new ParallelPort(0x378);
    lpt1.write(240);
    ===================================================================================
    ERROR file : hs_err_pid2172.log
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_PRIV_INSTRUCTION (0xc0000096) at pc=0x1000107b, pid=2172, tid=2108
    # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86)
    # Problematic frame:
    # C [parport.dll+0x107b]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x02b5c000): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=2108, stack(0x02fd0000,0x03020000)]
    siginfo: ExceptionCode=0xc0000096
    Registers:
    EAX=0x000000ff, EBX=0x26a28380, ECX=0x000000ff, EDX=0x00000378
    ESP=0x0301f2f4, EBP=0x0301f308, ESI=0x26a28380, EDI=0x02b5c000
    EIP=0x1000107b, EFLAGS=0x00010246
    Top of Stack: (sp=0x0301f2f4)
    0x0301f2f4: 10001041 10000378 000000ff 000000ff
    0x0301f304: 02b50378 0301f34c 00989c91 02b5c0f4
    0x0301f314: 0301f354 00000378 000000ff 02b5c6f4
    0x0301f324: 02b5c6f4 02b5c6e4 0301f32c 26a28380
    0x0301f334: 0301f360 26a28618 00000000 26a28380
    0x0301f344: 00000000 0301f35c 0301f384 00982cb1
    0x0301f354: 26a285b8 00988099 000000ff 00000378
    0x0301f364: 0301f364 26a28255 0301f390 26a28618
    Instructions: (pc=0x1000107b)
    0x1000106b: cc cc cc cc cc 33 c0 66 8b 54 24 04 8a 44 24 08
    0x1000107b: ee c3 66 8b 54 24 04 66 8b 44 24 08 66 ef c3 66
    Stack: [0x02fd0000,0x03020000], sp=0x0301f2f4, free space=316k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [parport.dll+0x107b]
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00295800 JavaThread "DestroyJavaVM" [_thread_blocked, id=2164, stack(0x00870000,0x008c0000)]
    =>0x02b5c000 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=2108, stack(0x02fd0000,0x03020000)]
    0x02b5ac00 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3640, stack(0x02f30000,0x02f80000)]
    0x02b59c00 JavaThread "AWT-Shutdown" [_thread_blocked, id=2204, stack(0x02ee0000,0x02f30000)]
    0x02b59000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3740, stack(0x02e90000,0x02ee0000)]
    0x02addc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=372, stack(0x02d90000,0x02de0000)]
    0x02adb400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=608, stack(0x02d40000,0x02d90000)]
    0x02ad6c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3920, stack(0x02cf0000,0x02d40000)]
    0x02ad6000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=808, stack(0x02ca0000,0x02cf0000)]
    0x02ad1800 JavaThread "Finalizer" daemon [_thread_blocked, id=1736, stack(0x02c50000,0x02ca0000)]
    0x02acd000 JavaThread "Reference Handler" daemon [_thread_blocked, id=2728, stack(0x02c00000,0x02c50000)]
    Other Threads:
    0x02acbc00 VMThread [stack: 0x02bb0000,0x02c00000] [id=624]
    0x02ae7800 WatcherThread [stack: 0x02de0000,0x02e30000] [id=580]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 262K [0x229e0000, 0x22ae0000, 0x22ec0000)
    eden space 896K, 22% used [0x229e0000, 0x22a11830, 0x22ac0000)
    from space 64K, 100% used [0x22ad0000, 0x22ae0000, 0x22ae0000)
    to space 64K, 0% used [0x22ac0000, 0x22ac0000, 0x22ad0000)
    tenured generation total 4096K, used 344K [0x22ec0000, 0x232c0000, 0x269e0000)
    the space 4096K, 8% used [0x22ec0000, 0x22f161a8, 0x22f16200, 0x232c0000)
    compacting perm gen total 12288K, used 289K [0x269e0000, 0x275e0000, 0x2a9e0000)
    the space 12288K, 2% used [0x269e0000, 0x26a286b0, 0x26a28800, 0x275e0000)
    ro space 8192K, 66% used [0x2a9e0000, 0x2af30f10, 0x2af31000, 0x2b1e0000)
    rw space 12288K, 52% used [0x2b1e0000, 0x2b8306d0, 0x2b830800, 0x2bde0000)
    Dynamic libraries:
    0x00400000 - 0x00423000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\java.exe
    0x7c900000 - 0x7c9b0000 G:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000 G:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 G:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000 G:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000 G:\WINDOWS\system32\Secur32.dll
    0x7c340000 - 0x7c396000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\msvcr71.dll
    0x6d870000 - 0x6dac0000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\client\jvm.dll
    0x7e410000 - 0x7e4a0000 G:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000 G:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000 G:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000 G:\WINDOWS\system32\IMM32.DLL
    0x6d710000 - 0x6d723000 G:\PROGRA~1\KASPER~1\KASPER~1\mzvkbd.dll
    0x76bf0000 - 0x76bfb000 G:\WINDOWS\system32\PSAPI.DLL
    0x6d730000 - 0x6d743000 G:\PROGRA~1\KASPER~1\KASPER~1\mzvkbd3.dll
    0x6d020000 - 0x6d035000 G:\PROGRA~1\KASPER~1\KASPER~1\adialhk.dll
    0x77f60000 - 0x77fd6000 G:\WINDOWS\system32\SHLWAPI.dll
    0x77c10000 - 0x77c68000 G:\WINDOWS\system32\msvcrt.dll
    0x6d4c0000 - 0x6d4c6000 G:\PROGRA~1\KASPER~1\KASPER~1\kloehk.dll
    0x6d320000 - 0x6d328000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\hpi.dll
    0x6d820000 - 0x6d82c000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\verify.dll
    0x6d3c0000 - 0x6d3df000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\java.dll
    0x6d860000 - 0x6d86f000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\zip.dll
    0x6d0b0000 - 0x6d1de000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\awt.dll
    0x73000000 - 0x73026000 G:\WINDOWS\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761d000 G:\WINDOWS\system32\ole32.dll
    0x5ad70000 - 0x5ada8000 G:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000 G:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000 G:\WINDOWS\system32\DCIMAN32.dll
    0x74720000 - 0x7476b000 G:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000 G:\WINDOWS\system32\msctfime.ime
    0x6d2c0000 - 0x6d313000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\fontmanager.dll
    0x7c9c0000 - 0x7d1d6000 G:\WINDOWS\system32\shell32.dll
    0x773d0000 - 0x774d3000 G:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5d090000 - 0x5d12a000 G:\WINDOWS\system32\comctl32.dll
    0x6d620000 - 0x6d633000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000 G:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 G:\WINDOWS\system32\WS2HELP.dll
    0x6d640000 - 0x6d649000 G:\Program Files\Java\jdk1.6.0_07\jre\bin\nio.dll
    0x77120000 - 0x771ab000 G:\WINDOWS\system32\OLEAUT32.DLL
    0x10000000 - 0x1000b000 G:\Program Files\Java\jdk1.6.0_07\bin\parport.dll
    VM Arguments:
    java_command: parport.NewJFrame
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=G:\Program Files\Java\jdk1.6.0_07\bin;G:\java\classes
    PATH=G:\Program Files\PC Connectivity Solution\;G:\Program Files\Java\jdk1.5.0_07\bin;G:\WINDOWS\system32;G:\WINDOWS;G:\WINDOWS\System32\Wbem;G:\Program Files\K-Lite Codec Pack\QuickTime\QTSystem\;G:\Program Files\Java\jdk1.6.0_07\bin;G:\Program Files\Microsoft SQL Server\90\Tools\binn\;G:\Program Files\MATLAB\R2007b\bin;G:\Program Files\MATLAB\R2007b\bin\win32
    USERNAME=shankar
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 15 model 4 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3
    Memory: 4k page, physical 457196k(30972k free), swap 1074312k(241668k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:14:11 by "java_re" with MS VC++ 7.1
    time: Thu Oct 09 13:47:18 2008
    elapsed time: 7 seconds

    I have same problem...
    No one more have solve this?
    I alread have tried use RXTX library..
    but I have:
    java.io.IOException: The device is not connected.
    I think that pass-motor don't have correct response for pararell protocol (I need use it with direct write, no ack signal, no read, etc)

Maybe you are looking for

  • Oracle: Problem creating package via CF

    G'day I've got a <cfquery> that creates a package header, another that creates the body, and then a <cfstoredproc> which calls one of the procedures in the package. I am getting this error, when my code comes to execute the procedure: [Macromedia][Or

  • PI File Adapter variable substitution

    Hi everybody, I do have the following message: <?xml version="1.0" encoding="utf-8"?> <ns:MT_FileIn_Budget xmlns:ns="urn:rlp.de:test:budgeting">      <BudgetRecord>           <Monat>Pa</Monat>           <Jahr>b_Lie</Jahr>                             

  • SharePoint Search API multiple refinementfilters

    Hi, im trying to query the user profile service through the search REST API https://server/_api/search/query?querytext=''&rowlimit=500&sourceid='b09a7990-05ea-4af9-81ef-edfab16c4e31'&refinementfilters='BaseOfficeLocation:equals("Netherlands")' this w

  • AJAX delete row

    Carl: Please see http://htmldb.oracle.com/pls/otn/f?p=24317:134 Clicking the x image deletes the table row from the DOM and also deletes it from the database using an application process and htmldb_get (as your examples showed). All this works fine b

  • Avoid transporting data through a mapping

    Hello, folks. I have one view, which displays an alv table. Another view is opened when user wants to edit line of the table. This view is modal and has two buttons: Ok and Cancel. I made a mapping between table on the first view (lead selection) and