Synchronising 6210 Classic through Thin Clients an...

Hi all,
I have serveral users needing to sync phones. Our current setup seems to be playing havoc with PC Suite.
The phones plug in via USB cable into HP t5730 thin clients with XPe. From here they log directly into HP bc2000 blade PC's. The blades are running XPP SP2 with HP RGS V5.1.6 sitting between blade and thin client. (Still waiting on HP to tell us how to upgrade to v5.2)
USB passthrough is working fine with all other devices. I.e - every other USB device that has ever been plugged into one of our thin clients have worked fine (e.g. blackberry).
 PC Suite knows that the phone is there, sees it properly etc. However as soon as you ask it to actually interact with the phone, nothing happens. It asks you to plug one in - even though it tells you one is there.
This happens for anything that PC suite would need to contact the phone for. After it does initial handshake, its like it just stops.
I have installed v7.1.18.0 and am having no luck.
Please help before our users hunt us down and burn us at the stake!

I have loaded up V 7.1.30.9 and have had no success. I have tried different phones, (same model) on different machines and have ruled all of that out.
HP have said that the RGS protocol works simply as a passthrough, and all information given to either the blade or the thin client is 100% passed through to the other.
The only thing left to look at is PC suite.
Any ideas?

Similar Messages

  • Connection through jdbc thin client taking more time than from sqlplus!!!

    Hello All
    Machines A and B
    Applicaion in A is connecting to B(9.2.0.6),db server.
    The schema is so small with few tables and data in each table less than 500 rows
    We are in the process of migrating the Application Schema in B to C[9.2.0.8].
    But the response time is more when the application fetches from C.
    Even while selecting the sysdate from dual.
    The application is using the jdbc thin client for fetching the data.
    When the same sql is executed by (from A to C)
    sqlplus -s user/pass @execute.sql, its gets done in a fraction of a second.
    But when the same is done through the application which uses jdbc thin client, it takes few seconds
    to complete.
    When tried with a small java program that uses classes12.jar (from A to C)
    conn = DriverManager.getConnection(URL,UID,PASS);
                   stop = System.currentTimeMillis();
                   System.out.println("Connection time in milli sec: " + (stop - start));
                   System.out.println();
    ..It was found that creating the connection was taking time.
    But the same is not happening when tired through the sqlplus
    Could someone throw some light into this?
    What could be the reason for jdbc to get slower while establishing connections?
    TIA,
    JJ

    are you using latest drivers - http://www.oracle.com/technology/tech/java/sqlj_jdbc/index.html
    you may want to check some options reducing jdbc connection cost from the otn samples - http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/index.html

  • JDBC thin client downloads locally, not through internet

    Using same code, environment, server, etc,:
    the thin client will download successfully if the server is accessed as part of the internal network. Access with the server outside the local network (via internet) does not seem to download all the parts of the thin client.
    I have tried with the thin client jars (both), and with classess rather than jar (so I can see where it stops).
    The environment is O8iEnterprise, NT server4 (SP6), IIS, JRUN 2.3x, IE5, java 1.2x/applets, 1.3 plugin
    What am I missing for the internet access setup? Thx.

    are you using latest drivers - http://www.oracle.com/technology/tech/java/sqlj_jdbc/index.html
    you may want to check some options reducing jdbc connection cost from the otn samples - http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/index.html

  • What is thin client ?

    Please expalin me what is "Thin client? and what is seemless connections among all the 4 Tiers in HFM Applivation? and what is Classic HFM Application? and What is Artifacts?

    Hi,
    If we access a clients from web based are thin clients. We can access HFM through workspace or direct HFM weblink.
    The client tier contains the user interface and the ability to communicate with the application tier. You can display data and metadata, enter data, and maintain metadata in this tier.From the Web server tier, you access the Web-enabled portions of Financial Management.The middle tier contains the domain intelligence and connections to the relational database and The data tier contains the relational database and all Financial Management data and metadata.
    we can create two types of application in HFM classic or EPMA. Classic applications are individual to each application.
    In EPMA we can share same dimention structures among multiple applications. dimension library maintains the dimension and application library maintains the all the application whinch is created in EMPA only.
    Kiran

  • Database connection encryption and integrity with ColdFusion and Oracle thin client

    As ColdFusion datasource we are using the Oracle thin client to  connect with the database. So, basically we are using a JDBC URL such as  jdbc:oracle:thin:@... and as Driver Class oracle.jdbc.OracleDriver. This works successfully however we would like to set encryption and  integrity parameters as well. In Java this is done similarly by setting a  Properties object prior to getting a connection as follows:
    Properties prop = new Properties();
    prop.put("oracle.net.encryption_client", "REQUIRED");
    prop.put("oracle.net.encryption_types_client", "( DES40 )");
    prop.put("oracle.net.crypto_checksum_client", "REQUESTED");
    prop.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    OracleDataSource ods = new OracleDataSource();
    ods.setProperties(prop);
    ods.setURL("jdbc:oracle:thin:@localhost:1521:main");
    Connection conn = ods.getConnection();
    Is there a way that I can pass these parameters to the ColdFusion  datasource. Ideally, I would love to do this centrally in such way that a  change to all the cfquery or cfstoredproc is not needed.
    I also know that in application servers such as Oracle AS there is an  option when creating a datasource which says "Add Properties". In there  you can add such properties. So, I was thinking of maybe creating a  JNDI DS in the app. server and then magically connecting to it but this  may have some impacts on the app.
    Besides this I was also thinking of communicating with the CF  datasource through the CF admin API (cfide.adminapi.administrator) and  also the option of extending the Oracle driver so that when CF connects  with it these params are already set.
    I would love to have your professional opinion and suggestions on this.

    I believe the thin driver actually needs the IP address (not the DNS name). Also, is "java" the name of the Oracle instance to which you are trying to connect?
    Try the following:String driver = "jdbc:oracle:thin";
    String dbIP = "W2RZ1NXG01's IP address";
    String dbPort = "1530";
    String dbSid = "java";
    String dbUser = "Admin";
    String dbPswd = "apassword";
    String cnctStr = driver + ":@" + dbIP + ":" + port + ":" + dbSid;
    try
        Class.forName("oracle.jdbc.driver.OracleDriver");
        con = DriverManager.getConnection( cnctStr, dbUser, dbPswd );
        stmt = con.createStatement();
        stmt.executeUpdate(createString);
        stmt.close();
        con.close();
    catch(SQLException ex)
        System.err.println( "The following SQLException occurred: " + ex );
        System.err.println( "Message: " + ex.getMessage() );

  • What files do I need to download iPhone photos to a thin client (HP)? Apple Mobile Support gives 4 dll files to enable the iPhone to be detected and charged but the thin client doesn't see the camera or hard drive.

    The iTunes Installation files include 4 driver dlls that I can install on a Windows thin client to enable the iPhone to be charged.
    The iPhone hard drive or photos are not detected.  I guess I need scanner driver support to cope with the camera.
    Can anyone tell me which files from the iTune installation set are needed.
    It is not practical (or even possible?) to install the whole iTunes package.
    I've seen this question asked by a lot of people but never seen an answer. 
    Please, can someone help... 

    Thanks for the reply. 
    A thin client is used to connect to a Terminal Server, or in my customer's case, a Citrix Server.  I need the thin client to see the iPhone as a camera and pass it to the Citrix Client so the photos can THEN be either stored on a network storage device, or e-mailed.
    Because the thin client doesn't even SEE a camera (i.e. the iPhone) it won't be able to connect to iCloud to do anything useful. 
    I think the question I should be asking, is how do I give the thin client Camera Support.
    I've just seen a 2008 forum comment that said the iPhone DOESN'T handle photos through iTunes, but the PC (Scanner support) or MAC (iPhoto) handles them directly.  I should be putting the question to HP.
    This is still a good place for THIS question, because I've seen so many iPhone users asking it...
    If I get a satisfactory answer I'll post it back here.

  • Font Smoothing CE 6.0 Thin Clients

    We need to handle Font Smoothing on HP Thin Clients. This is supported on newer Thin Clients with RDP7 and Font Smoothing settings.
    Older Win CE 6.0 do not appear to support Font Smoothing.
    Is there a way to set up Font Smoothothing or can these thin clients be updated with RDP option to support Font Smoothing?
    Thanks Lex

    I too had the same problem just last night. It happened when I was changing the font and font size. It seemed that everytime I switched the font and font size, the text got more and more pixelated and less smooth (identical to the screenshot you just posted).
    I backed up my Torch, did a security wipe and then restored the backup file back onto the device. That didn't work, as the text still looked horrible.
    So what I did next was do a device switch from my Torch back onto my Bold 9000, security wiped the Torch then did a device switch from the Bold 9000 back onto the Torch and the text was back to normal! It was a long process but it seemed to do the trick. So if you have another BlackBerry sitting around it might be worth trying, just remember to back up your Torch before hand.
    My Torch is also running v6.0.0.246, Platform 6.4.0.105 through Rogers. Hope this helps you out.
    Good Luck!
    Ed

  • Printer for Terminal Services / Thin Clients

    Hi, Just checking on what multifunction printer you would suggest for use with a Terminal Services environment? We only require the printer to go through TS. The other features will be used locally (photo copy/fax).
    I am looking at the CM2320, a good choice?
    Terminal Services: Windows 2003
    Thin Client: T5730 using RDP 6.0
    Many thanks

    Hi,
    Thank you for posting in Windows Server Forum.
    A mandatory user profile is a special type of pre-configured roaming user profile that administrators can use to specify settings for users. With mandatory user profiles, a user can modify his or her desktop, but the changes are not saved when the user
    logs off. The next time the user logs on, the mandatory user profile created by the administrator is downloaded. There are two types of mandatory profiles: normal mandatory profiles and super-mandatory profiles.
    User profiles become mandatory profiles when the administrator renames the NTuser.dat file (the registry hive) on the server to NTuser.man. The .man extension causes the user profile to be a read-only profile.
    User profiles become super-mandatory when the folder name of the profile path ends in .man; for example, \\server\share\mandatoryprofile.man\.
    More information:
    Mandatory User Profiles
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb776895(v=vs.85).aspx
    Using User Profiles in Windows Server 2003
    http://technet.microsoft.com/en-us/library/cc776120(v=ws.10).aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Arch Linux as Thin Client, PXE, LTSP

    Hey there all, been using Arch for about a year now, from Gentoo through Zenwalk, gotta say that Arch is bar none the best so far. I think it's the way that it doesn't try to hide the system internals through abstraction (where every distro has it's own abstraction methodology).
    I'm thinking in the future that I'd like to do a network-wide deployment of "terminals" for a non-profit. I say "terminals" in because unlike a true thin client, the idea was to have PXE booting to NFS and using the local hardware more. I'm fond of the idea of centralizing system management to a single system installation, and using solid-state machines.
    VNC, NX, RDP seem to be out of the question because I need clients to have native multimedia applications like the Flash plugin, and Skype. I could see audio and video redirection becoming a pain. But having the full installation on the client doesn't seem like the right thing to do because then I've got specific machines with specific problems that I'd have to diagnose. Virtualizing an entire OS session for each user would require a powerhouse server, and then we are stuck with a graphical redirection like VNC, NX, RDP. Linux Terminal Server Project really seems to be on track, they've got a great customization method, but again, they're using XDMCP and sending raw X data over the network.
    I envision the clients as being mostly web browser-centric to interface with the necessary applications, and using software like Sun Global Desktop or NoMachine NX to connect to individual Windows applications on a Windows server when needed.
    I'm looking at the Fit-PC2 as a possible thick-client solution. It's an Intel Atom based PC with an AMD Geode graphics solution, 512MB of soldered RAM, really low energy consumption.
    The wiki doesn't seem to address having more than one client using an NFS-mounted root. If you have more than one client writing .pid and other /var files, this doesn't seem like a feasible idea.
    So I suppose that the / has to be mounted in RAM, and only the static dirs like /usr /bin /boot swap are NFS imports?
    At first the network would be homogenous, but if we add computers with differing graphics cards
    So, in summary:
    * Any clues on multiple clients using one NFS root?
    * How to autoconfigure X.org and other differing hardware?
    It sounds like a fun challenge, wondering if anyone else has tried anything like it.
    Last edited by VitaminJ (2009-10-19 00:42:31)

    I don't really know enough about this to offer any real advice, but as far as multiple machines using a single NFS root goes, you could look into mounting it on all your clients read-only, and using a union filesystem (eg aufs2, unionfs), such that you can use another partition (say on a ramdisk) to handle writes...
    Just a thought

  • SCOM monitor on Thin Clients

    Dear all,
    We know that we cannot configure SCOM agent on Thin Clients .  We  would like to know if we can set up a SNMP monitor for Thin Client?
    We are able to discover through ICMP , but not through SNMP. We need to achieve monitor the Thin Clients up and down (Availablity ) only?
    One more question Via ICMP , can we monitor Thin Clients up and down (Availablity )?
    Sengottuvel

    My thought is no, and here's why.
    According to this TechNet article: http://technet.microsoft.com/en-us/library/hh212935.aspx, it states:
    Windows computers running SNMP are filtered out of discovery results if:
    The device type is “Host” and the vendor is “Microsoft”
    The sysDescription field contains “Microsoft”
    The sysOid starts with .1.3.6.1.4.1.311.1.1.3.1
    The sysOid contains 1.3.6.1.4.1.199.1.1.3.11
    Therefore, I don't think you will be able to use SNMP to monitor the Thin Clients. You could use ICMP (aka PING), and make a simple monitor to PING the system. If there is a response, it is up, otherwise, it is down. But you also have to take network latency
    into question, since that might case packets to drop, etc. which might throw a false-positive. 
    Please remember to click “Mark as Answer” on the post that helps you.
    AdinE MCSE, MCSA, MCITP, MCTS; (Specializing in System Center and Private Cloud)
    LinkedIn: http://ca.linkedin.com/in/adinermie
    Website: http://AdinErmie.Wordpress.com

  • How to use authid with rwservlet via WebLogic Thin Client

    1. Using J2EE Thin Client for WebLogic (WL) to submit interactive requests for Oracle Reports (App Server 10g) running on another server without SSO.
    2. After starting basic Infrastructure, we start rwserver in batch mode (no other mid-tier components are used).
    3. It appears that the cgicmd.dat file in the Thin Client conf directory on the WL server controls the DB access with the key:connect string info it has.
    4. We had been allowing the testers to come in via the web through a SunOne (iPlanet/Netscape) web server instance, which in turn connects to the WL server running the Thin Client instance.
    5. We noticed that anyone could run rwservlet to view report status with the showjobs command via a URL through the same mechanism as point #4 above, and were concerned about security of the reports - "bad".
    6. Then someone realized the showmap command could also be specified, and thus see the DB connect string (Id/pw/SID) - "worse".
    I researched securing Reports, and read through the white paper, "Securing Oracle9i Reports", and although it discusses security without using SSO, all it says is "users accessing a secured instance of Oracle9iAS Reports Services will be challenged to identify themselves by the Reports Servlet, using its own authentication mechanism (as with Reports6i)", but I can find no explanation of how that works, nor how it would work with the WL Thin Client.
    Questions:
    1. How are the Id's/passwords set up under AS 10g "as with Reports6i" in this environment going through the WL Thin Client?
    2. Is there anything else that needs to be done to secure the created reports, and the connect string info (i.e. using authid with rwservlet?showjob, and not allowing the rwservlet?showmap to be executed at all)?
    TIA,
    ROC

    the JDBC Developer's Guide (11gR2)
    gives an example in chapter 9 under "JDBC Thin Driver Support for Encryption and Integrity", sub- "Setting Encryption and Integrity Parameters in Java"
    from Oracle SQL Devloper, without redirecting the client to use the OCI/thick driver, choose, new database connection, connection type Advanced. add the entry from the example noted above to the Custom JDBC URL form.
    for example:
    Properties prop = new Properties();
    prop.setProperty(OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_LEVEL,"REQUIRED");
    prop.setProperty(OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_TYPES,"(AES128)");
    OracleDataSource ods = new OracleDataSource(); ods.setProperties(prop); ods.setURL(jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xxxx)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=xxxx)(INSTANCE_NAME=xxxx))));
    Connection conn = ods.getConnection();
    strange side note!, we could not get this to encrypt unless the sqlnet.ora file included the SQLNET.ENCRYPTION_SERVER=required. if this was set to default(accepted), and even though the jdbc thin client properties set to required, the network traffic was still clear text.
    good luck

  • How to create mandatory (read-only) profile for Terminal Services user (HP Thin Client) on Server2003... aaarrgghhh!

    I've been tearing my hair out for a couple of days now...
    I'm trying to create a mandatory profile for users logging in from hp thin clients on a 2003 server at a school.
    I've set up a prototype user, then copied the proto user's NTUSER.DAT to NTUSER.MAN and renamed
    NTUSER.DAT to NTUSER.DAT_unused.
    At that point, logging in as the prototype user looks ok.  It was my understanding that renaming NTUSER.DAT to NTUSER.MAN would make it a mandatory profile, and the user (in this case the proto user) would be unable to change it.  However, in this
    case the user can still modify the desktop and those modifications are preserved across logins.  The NTUSER.MAN file is being updated, judging by the timestamp changes.
    What am I missing?  
    I've tried putting the NTUSER.MAN in the user's dir on the server
     (C:\Documents and Settings\ProtoUser),
    in the DefaultUser, and in AllUsers.
    Right now I'm getting a default, unmodifiable profile which I have no idea where it comes from.
    In case it matters, the original user and directory tree from which the NTUSER.MAN I'm trying to use has been deleted, but I wouldn't think that should matter.
    For example, I have the option to not show the security tab set in the group policy, but it is showing up.
    The Start menu is showing as the classic start menu, and I had it set for the "new" (2 column) one.
    I've got hide network places on the desktop set, but it's showing up.
    Is there a way to tell where a profile is coming from?
    I'm pretty confused at this point; any clarifications / tips would be much appreciated.
    Related questions:
      If both an NTUSER.DAT and an NTUSER.MAN exist, which is used?
      If no profile is found for a user in the normal place, what happens?

    Hi,
    Thank you for posting in Windows Server Forum.
    A mandatory user profile is a special type of pre-configured roaming user profile that administrators can use to specify settings for users. With mandatory user profiles, a user can modify his or her desktop, but the changes are not saved when the user
    logs off. The next time the user logs on, the mandatory user profile created by the administrator is downloaded. There are two types of mandatory profiles: normal mandatory profiles and super-mandatory profiles.
    User profiles become mandatory profiles when the administrator renames the NTuser.dat file (the registry hive) on the server to NTuser.man. The .man extension causes the user profile to be a read-only profile.
    User profiles become super-mandatory when the folder name of the profile path ends in .man; for example, \\server\share\mandatoryprofile.man\.
    More information:
    Mandatory User Profiles
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb776895(v=vs.85).aspx
    Using User Profiles in Windows Server 2003
    http://technet.microsoft.com/en-us/library/cc776120(v=ws.10).aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Surface pro 3 - using rdp - thin client - display resolution shrink

    Hi,
    I have a surface pro 3, using a thin client to access and run an application on our server.  it is an access based application.  the display of the forms and application display in a very small font - through the thin client interface.  I
    cannot figure out how to enlarge the font - msft tech chat suggested I post this question here as there seems to be no immediate resolution for now.  if I plug a USB into the SP3 and open the app it displays wonderfully - any suggestions are welcome.
    thank you,
    john

    Anyone?! :(
    I think this device is trememdous - and could replace 'everyday business users' - maybe not hardcore IT/coder/developers - hardware - but it surely has the balls to keep Suzy happy while answering emails and buying shoes (so chauvenistic - I know - ok then
    think Billy playing solitaire).
    Struggling to find ANYone having woe's using a Surface Pro 3 through a VPN & thin-client.  The resolution just shrinks to the point it's almost illegible.  I downloaded the RDMC - but unsure of how or what to do with it, unfortunately.
    Any suggestions are greatly appreciated.
    John

  • Synchronization HP t5335z Thin Client and USB GPS trip recorder

    Can't connect USB GPS trip recorder to my terminal server through HP t5335z Thin Client. Any suggestions?

    Hello Tony-CCS,
    Your system is one of our business units.
    Your question may be better answered on our business forums.
    Here is a link to the business forums.

  • Problem with oracle forms,jre & sun thin clients

    we have oracle forms using jre 1.5.0 update 11 running on more than 100 thin clients . but the application hangs when navigating through the forms sometime. if all the browser window is closed and started from the begining it again works fine
    any support is highly appreciated
    thanks
    mish

    I have a RHEL4(Linux) 64 system I can test and post my notes here as an edit.
    For Java based web applications to work, the Firefox 3.6 browser requires you to run Java SE 6 Update 18 or later.
    http://java.sun.com/products/archive/j2se/6u22/index.html
    jre-6u22-linux-x64.bin
    As root
    cd /usr
    mkdir java
    cd java
    With a copy of "jre-6u22-linux-x64.bin" in /usr/java/
    Change the permission of the file you downloaded to be executable. Type:
    chmod a+x jre-6u22-linux-x64.bin
    Run the self-extracting binary Type
    ./jre-6u22-linux-x64.bin
    The license agreement is displayed. Review the agreement.
    Press the spacebar to display the next page.
    At the end, enter yes to proceed with the installation.
    Did not display on mine
    Double check of mozilla install
    find / -name mozilla -print
    /usr/share/mozilla
    /usr/lib64/mozilla
    cd /usr/lib64/mozilla/
    mkdir plugins
    Exit Firefox browser if it is already running.
    Create a symbolic link to the libnpjp2.so file in the browser plugins directory
    ln -s /usr/java/jre1.6.0_22/lib/amd64/libnpjp2.so
    Restart and test firefox
    about:plugins (works)
    Best Regards
    mseberg
    Edited by: mseberg on Aug 11, 2011 11:11 AM
    MORE
    The application less happy until I changed these lines in my formsweb.cfg
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_22
    jpi_classid=clsid:CAFEEFAC-0016-0000-0022-ABCDEFFEDCBA
    Seems it wanted the exact JRE version that was installed.
    Edited by: mseberg on Aug 11, 2011 11:18 AM
    And finally :
    http://www.java.com/en/download/help/linux_install.xml

Maybe you are looking for

  • Ipod classic isn't recognized by the computer & keeps on restarting

    hii I am experiencing very strange problem.My apple ipod classic isn't recognized by my computer nor it formats or restore & keeps on restarting on it's own when tried to open any application.it also shows that there is 0kb free & 0kb used. please he

  • Html file will not display

    Hi, I hope this is the right forum for my question. I am building a website using AS3 for my son. He lives in another city so I am sending the html files as test so he can see how things are progressing. We have done this in the past but for some rea

  • Spotlight returns wrong results

    After installing Yosemite on my MacBook Pro, I tried to use Spotlight on some simple searches, with startling results. For example, I looked for Spotlight help...and a Word for Mac file opened. I recognize that Spotlight scours my Mac for material, b

  • How could i export a JPanel as a pdf ??

    is there any package to help me encode a pdf from a bufferedImage or what else ?? Thanks @

  • Looking for the oldest Macbook that can support garage band

    I am looking for the oldest "vintage" apple macbook or macbook pro that is capable of supporting garageband.