ZAM detecting Clients as Pre-3.00

We are deploying a brand new install of Zam 7.5. Zam collection server is
displaying the detected clients as 3.00 instead of 7.5 . Zam server is up
to date 7.50.0013
Any suggestions?

On Fri, 04 May 2007 17:55:47 GMT, Brian Harmon wrote:
> We are deploying a brand new install of Zam 7.5. Zam collection server is
> displaying the detected clients as 3.00 instead of 7.5 . Zam server is up
> to date 7.50.0013
> Any suggestions?
better been posted in the zenworks asset management forum, this is for ZDM
inventory
Marcus Breiden
If you are asked to email me information please change -- to - in my e-mail
address.
The content of this mail is my private and personal opinion.
http://www.edu-magic.net

Similar Messages

  • Detecting client proxy settings

    Dear All,
    Can anyone tell me how to detect client proxy settings from a java application (not in a browser).
    I tried System.getProperties().getProperty("http.proxyhost") without success.
    Our application is distribuited using Java Web Start technology and needs to know proxy settings to connect to the remote host thru an unknown proxy server.
    Solution to this problem is very important and urgent! Please help me!
    Thanks in advance!

    Look for
    proxyHost
    proxyPort
    or (for https)
    https.proxyHost
    https.proxyPort

  • Detecting client disconnects

    What's the best way to detect a client loss of connection? I've heard
    you can register for weblogic.accounting.disconnect events or used the
    workspace destroyMonitor method. Which is preferred? The events method
    concerns me because I don't believe it will be supported in the future
    once JMS takes a foothold. Is this a valid concern? Are there any new
    ways to do this?
    thanks,
    Edwin

    I would suggest you try catching java.net.SocketException (Connection reset
              by peer: socket write error) in you doGet/doPost method. This is not a sure
              way though ...
              --- Igor Zavialov
              "Dylan Taffe" <[email protected]> wrote in message
              news:3a5393d6$[email protected]..
              > Does anyone know of a way to detect client disconnects with servlets?
              Does
              > the contextEventListener or any other event listener get called when a
              > clients kills its connection with the weblogic server?
              >
              >
              

  • How to detect client socket shutdowns in server socket

    Hi,
    Hoping to get some help with this. I am writing this program that implements a socket server that accepts a single client socket (from a third-party system). This server receives messages from another program and writes them to the client socket. It does not read anything back from the client. However, the client (which I have no control over) disconnects and reconnects to my server at random intervals. My issue is I cannot detect when the client has disconnected (normally or due to a network failure), hence am unable to accept a fresh connection from the client. Here's my code for the server.
    ServerSocket serverSocket = null;
    Socket clientSocket = null;
    PrintWriter out = null;
    BufferedReader in = null;
    try{
              if (serverSocket == null){
                    serverSocket = new ServerSocket(4511);
         clientSocket = serverSocket.accept();
         System.out.println("Accepted client request ... ");
         out = new PrintWriter(clientSocket.getOutputStream(), true);
         in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
         System.out.println("Input / Output streams intialized ...");          
         while (true){                              
              System.out.println("Is Client Socket Closed : " + clientSocket.isClosed());
              System.out.println("Is Client Socket Connected : " + clientSocket.isConnected());
              System.out.println("Is Client Socket Bound : " + clientSocket.isBound());
              System.out.println("Is Client Socket Input Shutdown : " + clientSocket.isInputShutdown());
              System.out.println("Is Client Socket Output Shutdown : " + clientSocket.isOutputShutdown());
              System.out.println("Is Server Socket Bound : " + serverSocket.isBound());
              System.out.println("Is Server Socket Closed : " + serverSocket.isClosed());
              messageQueue = new MessageQueue(messageQueueDir+"/"+messageQueueFile);
              //get Message from Queue Head (also removes it)
              message = getQueueMessage(messageQueue);
              //format and send to Third Party System
              if (message != null){
                             out.println(formatMessage(message));
                   System.out.println("Sent to Client... ");
              //sleep
              System.out.println("Going to sleep 5 sec");
              Thread.sleep(5000);
              System.out.println("Wake up ...");
    }catch(IOException ioe){
         System.out.println("initSocketServer::IOException : " + ioe.getMessage());
    }catch(Exception e){
         System.out.println("initSocketServer::Exception : " + e.getMessage());
    }I never use the client's inputstream to read, although I have declared it here. After the client is connected (it enters the while loop), it prints the following. These values stay the same even after the client disconnects.
    Is Client Socket Closed : false
    Is Client Socket Connected : true
    Is Client Socket Bound : true
    Is Client Socket Input Shutdown : false
    Is Client Socket Output Shutdown : false
    Is Server Socket Bound : true
    Is Server Socket Closed : false
    So, basically I am looking for a condition that detects that the client is no longer connected, so that I can bring serverSocket.accept() and in and out initializations within the while loop.
    Appreciate much, thanks.

    Crossposted and answered.

  • RMI detect client disconnect

    Hello, I want to detect when a network disconnect occurs. I implemented a TimerTask that checks every X seconds if the remote object is still bound in the registry, by doing a Naming.lookup(). When I unplug the cable of my computer (to simulate the disconnect), the Naming.lookup() just seems to hang, there is no response... When I plug in the cable again, then I get a response, but this is not the idea... Is there a way to set a timeout or something on this method call?
    thanks

    When I was toying around with chat servers using the RMI Technology, I would have the server keep a vector of RMI Clients (almost like the registry). Then when I went to send a message, I would try to cast the Vector element into the correct type of a client and write the message. If an exception was thrown, I knew the client was not connected any longer and I removed the client from the vector. This approach I have since seen in a lot of documentation on chat servers.
    I haven't tried this but you may try calling the Naming.list () and comparing the values to see if you find a match.
    Hope this helps

  • Detect Client Disconnect When using RTMP

    Hello,
    I hava a Java Server and Clients using RTMP. I've read somewhere that I can detect instantly client disconnection when using RTMP. However I cannot find an example code (in Java) that demonstrates this functionality? Can you help me please?

    I am not sure how your client looks, however the lient connect using NetConnection under the hood which spits NetStatusEvents's and you can listen to them ...
    C

  • Detect client disconnection

    Hi.
    My Java Web Service works with ComPorts so I need to close it in a right way when a client disconnects.
    Is there a way to detect in the Web Service when a client disconnects.
    Thank�s you all!!

    So, i want to be able to find out if the client is disconnected without waiting to send or receive data.Use a read timeout.
    how can i change the value of SO_KEEPALIVEYou can't. It is two hours by default and requires privilege to change it, and changing it is system-wide. So you don't want to do that.
    Use a read timeout. Socket.setSoTimeout().

  • How to detect client OS from SQL*Plus script

    Sometimes in a SQL*Plus script I need to execute OS commands e.g.
    host rm tempfile.bufHowever of course Windows has no "rm" command by default, so I have to edit the script to use
    host del tempfile.bufNow if I could define &DELETE (for example, "cat"/"type" is another) as a substitution variable, I could just use
    host &DELETE tempfile.bufMaybe I need more coffee but all I could come up with was something like this:
    def rm=rm
    def cat=cat
    spool sqlplus_windows_defs.cmd
    prompt echo def rm=del
    prompt echo def cat=type
    spool off
    host .\sqlplus_windows_defs > sqlplus_windows_defs.sql
    @sqlplus_windows_defs.sql
    host &rm sqlplus_windows_defs.cmd
    host &rm sqlplus_windows_defs.sqlthe idea being that you first define the variables for nix ("rm" and "cat"), then attempt to create and execute a Windows command file containing DOS versions ("dele" and "type"), which does not run under nix. Unfortunately the OS failure message (".sqlplus_windows_defs: not found" in Unix) appears on the screen despite SET TERM OFF, so I'm back where I started.
    I know there are various ways to get the server OS, and you can get the SQL*Plus version with &_SQLPLUS_RELEASE and so on, but I can't see a way to determine the client OS. Any suggestions?

    Thanks guys. This seems to work in Windows XP - will try on Unix when I get a chance:
    col DELETE_COMMAND new_value DELETE_COMMAND
    col LIST_COMMAND new_value LIST_COMMAND
    def list_command = TYPE
    def delete_command = DEL
    SELECT DECODE(os,'MSWIN','TYPE','cat') AS list_command
         , DECODE(os,'MSWIN','DEL','rm')   AS delete_command
    FROM   ( SELECT CASE WHEN UPPER(program) LIKE '%.EXE' THEN 'MSWIN' END AS os
             FROM   v$session
             WHERE  audsid = SYS_CONTEXT('userenv','sessionid') );
    host &LIST_COMMAND xplan_errors.lst
    host &DELETE_COMMAND xplan_errors.lstIf the user doesn't have access to v$session it will just default to the Windows commands.
    http://www.williamrobertson.net/code/xplan.sql

  • How to detect client's max screen size?

    I am using 2 functions right now, but I don't quite understand what they do.
    //Create and set up the window.
    frame = new JFrame("Test of TAN Books product database");
    frame.setBounds(30,30,1024,740);
    The main content pane is a table:
    table.setPreferredScrollableViewportSize(new Dimension(1024, 650));
    But if I set the latter to 1280 X 1024, the window becomes larger than my screen!
    How can I get it set to the MAX client window size?
    I'm willing to read up on this -- but I can't find that category on Sun's documentation.
    Matthew

    when in doubt, go to Google: http://www.google.com/search?q=java+screen+size
    Could have saved a lot of typing...
    Toolkit.getScreenSize()
    Message was edited by:
    Jaspre

  • Detecting Client Disconnect

    I am looking for a way to determine when a client connects and disconnects (especially the latter) from the grid. Two approaches come to mind:
    1) Polling for something that appears/disappears when a client connects or disconnects. The most obvious candidate is a lock. This approach is inefficient because it requires polling. It also raises the issue of how clients are distinguished, although that is not difficult (e.g. - invocable increments a counter which is used as a basis for the key to lock).
    2) Getting a notification when this happens - preferably in-grid. However, I could find no listener for either the client connect/disconnect event or for locking. Likewise, using custom cache implementations (overriding a class and calling it out in the cache config) doesn't seem to provide notification of either locking, or (an alternate approach) the registration of a listener.
    Overriding a cache indeed provides notice of listener registration, but it appear to be a general listener which is feeding some other internal Coherence facility which manages the specific per-client listeners.

    Answering my own question, after research and help from Gene Glyzer:
    There are a couple of ways to do this:
    1) A client can lock a phantom (or real) entry in a cache. When the client member of the cluster goes away, the lock will be released.
    2) Tracking cluster members:
    * Add a listener:*service = CacheFactory.getService("name").addMemberListener(...)*
    * Get the membership information (synchronously guard against listener events):*Set members = service.getServiceMembers()*
    * Use subsequent listener events to adjust the members set.

  • Detecting Client Bandwidth

    I'm a one-trick pony, having bought Flash CS3 solely to
    manipulate transparent video files, adding a stop alert, various
    player controls and closed captioning. I know that sooner or later
    a small business client will ask me
    what happens when dial up users or broadband lite users hit
    his transparent spokeperson files. I know there's a tester of sorts
    in Flash but I'd prefer to add something in each case that
    withholds the video when it won't present properly - or provides a
    message explaining what you're missing. Can someone help me get
    there?
    David Hurdon
    Toronto

    you can use actionscript to determine a user's donwload speed
    by using getBytesLoad() and getTimer() to initialize the bytes
    loaded and start time when you initialize your test and then a loop
    to calculate the same parameters repeatedly stopping whenever you
    want up to the time your app is completely loaded.

  • Detecting client drive letters

    my question is addressed to anyone with experience in Files.
    how can I get the drive letters representing a client computer drives, be it hard disks or CD-ROM drives, burners etc. some people have 2 disk drives while others have partitions on their C disk.
    i would like to display all of their folders in a JTree which I learned to do with a link supplied to me in my first post here. i don't need to know how to do the JTree display, just how to get the drive letters or partitions.
    I have looke and looked everywhere on the Internet but have only found pages realted to the System properties which give me the folder called Documents And Settings in C.
    thanks to anyone who has this knowledge or a link pointing to this topic.
    Jewel Bocks, New York

    Some people run a *nix systems which (fortunately) do not have ridiculous drive names.
    Check out
    java.io.File.listRoots()

  • Server to detect client disconnection "Sockets"

    i want to know how it is possible for a server to find out when the client is disconnected at any instance. not only at the time of sending data...
    i am writing a server that should communicate with different clients, and i want it to be able to find out if a client suddenly disconnects or crashes, so how can this be done?!
    is it this way:
    skt.setKeepAlive(true);the problem is that SO_KEEPALIVE checks after 2 hours, which is too much time, how can i change this value????

    So, i want to be able to find out if the client is disconnected without waiting to send or receive data.Use a read timeout.
    how can i change the value of SO_KEEPALIVEYou can't. It is two hours by default and requires privilege to change it, and changing it is system-wide. So you don't want to do that.
    Use a read timeout. Socket.setSoTimeout().

  • Possible to detect client's cellphone number with JSP page?

    Hi, I've a JSP site thats catered to mainly mobile handheld device users. When a user using a cellphone accesses my site, is it possible that my server snoops out the user's cellphone number?

    I imagine you use JavaScript to find the dimensions and include it in a query string to a new already formatted page.
    E.g.
    <html>
    <head>
    <script language="JavaScript" >
    // get current url
    // if current url contains dimensions do nothing
    // else
    // query dimensions
    // url = "..." ?width="..."&height="..."
    // set page src = url
    </script>
    something like that

  • Signature to detect mobile cell client

    Hello
    I have question about create signature which  detect client from phone  mobile cell network ?
    It is possibe to create this signature to IPS  based on cisco module ssl-card for router 7600  ?
    Thanks
    Marcin

    I don't think there's a standard way to do that....
    The best you can do is to determine if the device implements one particular library.
    Why do you need this? Maybe there's another way to do it.
    jc

Maybe you are looking for

  • Some prints have black stripes instead of text

    Sometimes when I print a pdf, the printouts contain black stripes instead of text. Acrobat X Pro was used to create the documents from Word 2010. The Printer is a HP Laserjet 4700 Driver: HP Universal Printing PCL 6 (61.118.1.11744); UDP Version: 5.4

  • Until external monitor update, how to mirror display?

    What is the preferred method of mirroring FCP X on an HDMI monitor? I would assume that I need a thunderbolt to HDMI cable? Then what? Cheers. Tom

  • How does this LINQ query work with Option Infer Off?

    How should value and filtered be declared?  It doesn't work when I turn Option Infer Off.  Originally, it worked with Option Infer On. There was no Dim statement on the first line, but the Dim keyword was placed before the filtered = line.  As soon a

  • SID Name in oracle 10g

    Dear Experts, how I can find SID name in Oracle 10g databse, which i forget. thanks in advance

  • Restrict creation of BP based on PFCG role

    Hi Experts, We are implementing CRM 7.0. In the IC AGENT business role we would like to restrict the user to only create contacts using the PFCG role SAP_CRM_UIU_IC_AGENT. We tried using authorisation object B_BUPA_RLT and  CRM_BPROLE. But it did not