Communication between Managed servlet using ProxyServlet

          Hi,
          I have multiple Managed servers running on the same host, each hosting one web
          app on a particular port.
          The Admin server runs on port 7001.
          Example :
          The Managed Server hosting the Session Manager is running on 7100, and the
          Managed server hosting the DSLTools is running on port 7200.
          The following link works -
          http://localhost:7100/sessionmgr/servlet/sessionmgr
          Now when I click on DSLTools button on the page displayed by the above link,
          it takes me to
          http://localhost:7100/dsltools/servlet/dsltools
          whereas, I want it to take me to
          http://localhost:7200/dsltools/servlet/dsltools
          If I type the http://localhost:7200/dsltools/servlet/dsltools
          in the web browser, it works.
          So, ques is how can I go from Session Manager running on port 7100 to
          DSL Tools running on port 7200 ?
          I am trying Proxy by path using HttpProxyServlet, but it doesn't seem to work.
          I may be doing something wrong setting up HttpProxyServlet to handle this,
          but not sure what ? Any suggestions.
          I don't want to hard code the port numbers in the Session Manager servlet
          for obvious reasons.
          A quick response will be appreciated.
          Thank you very much
          -Anil Varma
          

Hi jDee
I�m not sure that the connection is kept opened, I mean by �you need to know that http connexion, DataInputStreamand DataOutputStream are always opened� that I don�t make an explicit call to close() method.
My aim is to keep the http connection alive, because the Servlet needs to send with push mode some request to the Midlet. The Midlet handles the request and answers the Servlet.
the behavior of my application is the following:
DataInputStream dis=null;
DataOutputStream dos=null;
they are 3 modules: mobile client (J2ME), Mobile Server (J2ME), Coordinator (Servlet)
1-Server: open Httpconnection with Servlet
2-Server: open dis and dos
3-Server: send user & passwd trougth dos
4-Coordinator: check user&passwd
5-Coordinator: send response
6-Server:keep connection opened
7-Server: execut while(dis.avalaible()<1) {};
8-Client: send Request to coordinator
9-Coordinator: redirect Request to the right Server
10-Server: get request dis.read()
11-Server: handles the request
12-Server: answer the coordinator dos.write()
13-Coordinator:redirect the Response to the right Client
14-Client:get answer coming from Coordinator
Regards
-Med-

Similar Messages

  • Communicating between Managed Servers

    Hi,
    I have multiple Managed servers running on the same host, each hosting one web
    app on a particular port.
    The Admin server runs on port 7001.
    Example :
    The Managed Server hosting the Session Manager is running on 7100, and the
    Managed server hosting the DSLTools is running on port 7200.
    The following link works -
    http://localhost:7100/sessionmgr/servlet/sessionmgr
    Now when I click on DSLTools button on the page displayed by the above link,
    it takes me to
    http://localhost:7100/dsltools/servlet/dsltools
    whereas, I want it to take me to
    http://localhost:7200/dsltools/servlet/dsltools
    If I type the http://localhost:7200/dsltools/servlet/dsltools
    in the web browser, it works.
    So, ques is how can I go from Session Manager running on port 7100 to
    DSL Tools running on port 7200 ?
    I am trying Proxy by path using ProxyServlet, but it doesn't seem to work.
    I don't want to hard code the port numbers in the Session Manager servlet
    for obvious reasons.
    A quick response will be appreciated.
    Thank you very much
    -Anil Varma

    Hi Chris,
    Thanks for your suggestion. I am going to try you suggestion
    and hope somebody responds to it.
    Thanks
    -Anil
    "Chris Chiodo" <[email protected]> wrote:
    Hi Anil,
    You might consider asking this same question on the
    "weblogic.developer.interest.servlet" newsgroup. The people monitoring
    that
    group would be likely to know the answer to this question.
    Thanks
    Chris Chiodo
    BEA Systems
    "Anil Varma" <[email protected]> wrote in message
    news:3f1c020e$[email protected]..
    Hi,
    I have multiple Managed servers running on the same host, each hostingone
    web
    app on a particular port.
    The Admin server runs on port 7001.
    Example :
    The Managed Server hosting the Session Manager is running on 7100,and the
    Managed server hosting the DSLTools is running on port 7200.
    The following link works -
    http://localhost:7100/sessionmgr/servlet/sessionmgr
    Now when I click on DSLTools button on the page displayed by the abovelink,
    it takes me to
    http://localhost:7100/dsltools/servlet/dsltools
    whereas, I want it to take me to
    http://localhost:7200/dsltools/servlet/dsltools
    If I type the http://localhost:7200/dsltools/servlet/dsltools
    in the web browser, it works.
    So, ques is how can I go from Session Manager running on port 7100to
    DSL Tools running on port 7200 ?
    I am trying Proxy by path using ProxyServlet, but it doesn't seem towork.
    I don't want to hard code the port numbers in the Session Manager servlet
    for obvious reasons.
    A quick response will be appreciated.
    Thank you very much
    -Anil Varma

  • Communication between Applets & Servlets

    How do you communicate in between Applets & Servlets ?

    http://forum.java.sun.com/thread.jsp?forum=45&thread=525518&start=0&range=15#2519429

  • No communication between applet - servlet

    hi
    my applet and my servlet is not at all communicating in the browser.
              any body knows how to solve this problem?
              in my applet code:Jus i am pasing as name string to invoke the serlvet via URL
              String location = "http://ctp-vi0275:8880/HandlePassword?"+"Name=XXX";
              URL testServlet = new URL( location );
              URLConnection servletConnection = testServlet.openConnection();
              servletConnection.setDoInput(true);
              servletConnection.setDoOutput(true);
              servletConnection.setUseCaches (false);
              servletConnection.setDefaultUseCaches (false);
              servletConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
              servletConnection.connect();
              i have changed server.xml file to listen the port number 8880.(in tomcat)
              in my servlet code:
              doGet Method in servlet
              String str = req.getParameter("Name");          
              System.out.println(str);
              here i am jus printing the name
              but when i run my applet is not at all invoking the serlvet - HandlePassword.I have placed the
              servlet in ROOT\web-inf\classes\HandlePassword
              in web.xml
              <web-app>
              <servlet>
              <servlet-name>HandlePassword</servlet-name>
              <servlet-class>HandlePassword</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>HandlePassword</servlet-name>
              <url-pattern>/HandlePassword</url-pattern>
              </servlet-mapping>
              </web-app>
              where i am doing wrong here?

    You do following things and let me know:
    1. Does the servlet work when you type "http://ctp-vi0275:8880/HandlePassword?Name=XXX" in your browser?
    2. Run applet using appletviewer. Does it work?
    3. If it works using appletviewer then enable java console in your browser and see error stacks if any.
    4. If there are applet security errors on java console, try creating servlet URL in applet code by calling getDocumentRoot() method and see what happens.

  • Communication between 2 servlets/java classes.

    Hi,
    I’ve a problem. Not sure if it’s a simple one.
    I have a web app with servlets (say Servlet1, Servlet2, etc.) in it. I use a SQL query in Servlet1 and fetch an employee’s information (say empinfo) from the database. This is a string value. Now, I need to pass this “empinfo” to Servlet2.
    I might sound dumb till here but please continue till the end to know what I still have to say…
    1.     I tried using getters and setters. Servlet2 has the “empinfo” value I need. This is the first time Servlet2 is accessed.
    2.     But, think that Servlet1 is transferring the control to an html page. And, this html page submits its parameters (say manager) to Servlet2. And, when this html passes its control to Servlet2, the “empinfo” value I need is gone because I used “empinfo” as a class member/global.
    3.     So, when the control enters the Servlet2 the second time everything is lost and this is when I need the “empinfo” value.
    4.     I cannot make the “empinfo” value in Servlet2 “static” because it keeps changing.
    Note: I tried with all these: httpsession, reflection, etc. but nothing seems to fulfill my task.
    Actually, Servlet2 lets the users to download the “empinfo” when a link on the html page (which sends the parameters to this servlet) is clicked.
    I used httpsession to store this “empinfo” in Servlet1 and used to grab the value in Servlet2.
    Then, I ran this app on my localhost. Then:
    Step1: I opened up one browser and when I clicked the link on html, I checked the “empinfo” value. It was fine.
    Step2: I opened up another browser and when clicked the link on html, I checked the “empinfo” value. It worked again.
    Step3: Now, I went back to the html page in the browser1 and clicked the link and checked to see the “empinfo” value and now it has the value of that in browser2.
    The “empinfo” always had the latest value. Previous values are overwritten.
    If I could find a way to cache the Servlet1 object to use it in Servlet2 then I think my job is half done because even if I let Servlet2 keep a reference of the Servlet1, the html page is ruining the desired result.
    If anyone can let me know how to do this with normal Java classes even that works for me.
    Thanks in advance.

    Thanks for the reply.
    Actually, when I used the session the IE browser behaved properly and its the FireFox that was weird.
    I think this is because Firefox uses single cookie for many instances of itself.
    Thanks again.

  • Communication between 2 servlets

    Hi,
    I’ve a problem. Not sure if it’s a simple one.
    I have a web app with servlets (say Servlet1, Servlet2, etc.) in it. I use a SQL query in Servlet1 and fetch an employee’s information (say empinfo) from the database. This is a string value. Now, I need to pass this “empinfo” to Servlet2.
    I might sound dumb till here but please continue till the end to know what I still have to say…
    1.     I tried using getters and setters. Servlet2 has the “empinfo” value I need. This is the first time Servlet2 is accessed.
    2.     But, think that Servlet1 is transferring the control to an html page. And, this html page submits its parameters (say manager) to Servlet2. And, when this html passes its control to Servlet2, the “empinfo” value I need is gone because I used “empinfo” as a class member/global.
    3.     So, when the control enters the Servlet2 the second time everything is lost and this is when I need the “empinfo” value.
    4.     I cannot make the “empinfo” value in Servlet2 “static” because it keeps changing.
    Note: I tried with all these: httpsession, reflection, etc. but nothing seems to fulfill my task.
    If I could find a way to cache the Servlet1 object to use it in Servlet2 then I think my job is half done because even if I let Servlet2 keep a reference of the Servlet1, the html page is ruining the desired result.
    Hope I’m clear and it is understandable.
    Any help is appreciated.
    Thanks in advance.

    Depending on your need you could use one of these:
    a) use ServletContext to store the emp data, so that all other webapp elements (servlets, jsp) could access thit information:
    String empInfo = ...//get it from the db
    ServletContext sc = getServletContext();
    sc.setAttribute("com.myapp.empInfo", empInfo);
    // you can either forward / include servlet2 here, or simply let the user click a link or sth, the value will still be accessible until some other web component removes it, or you shutdown the serverb) if the flow of control in your app is that servlet1 takes the info from the db, and then the user goes to servlet2, you could store the emp info in the request as an attribute, and use a RequestDispatcher:
    String empInfo = ...//get it from the db
    request.setAttribute("com.myapp.empInfo", empInfo);
    RequestDispatcher rd = request.getRequestDispatcher("servlet2"); // maybe this could be a JSP if it is used to present the result to the user?
    if (rd != null) {
        rd.forward(request, response);
    } else {
    /// probably should not happen, but do take care of this
    }This would require you to prevent the user form being allowed to go to servlet2 directly, not through servlet1
    c) httpsession should work fine, unless you have cookies disabled, and you don't use URL rewriting, but you gave us to little information to know what is wrong
    Hope I could help a little, I'm still lerning this stuff myself.

  • Communication between two Jsps using Javascript

    I m new to use Javascript.
    I will really aprreciate if someone take some time and clarify my doubt.
    Here is the situation
    There is a 'Browse' hyperlink on the Parent.jsp. As soon as, i click the link, a new jsp Child.jsp is opening with the values coming from the backend. As the user selects some values in the Child jsp and say 'Add', the values should be transfered and displayed ( can be done by creating dyanamic 'divs')to the Parent jsp. Here is the tricky one. The Parent.jsp should not refreshed.
    I tried so hard to achive this, but failed miserably.
    (Creation of dynamic divs is just a way to achive this)
    Can you please help me out in this? Is there any other way, this requirement can be achived?
    Advance thanks

    Hope this would help
    http://digital.ni.com/public.nsf/allkb/B937AC4D8664E37886257206000551CB
    Parallel port acess VIs will be in found in the following path.
    C:\Program Files\National Instruments\LabVIEW xxxx\examples\portaccess\parallel port examples.llb
    However,the above VIs doesn't support Windows Vista & Later.

  • Using 1394 to perform communication between two PCs

    Hi all,
    Does anybody knows how to use a 1394 (firewire) to implement a communication between two computers using Labview ?
    Do I need a special toolkit for this ?
    Thanks
    Eduardo

    Currently, if you have installed NI-VISA, you should have the 1394 Passport already installed and running. This gives you the ability to communicate with 1394 instruments via your 1394 instruments. This is important because this helps determine how you will communicate from one computer to another. If you want to use the VISA and communicate using the FireWire INSTR, then you need to find or create drivers for your 1394 ports that allow you to communicate with them as 1394 instruments. There might be other ways to do this, but this is probably the most simple. Once you've got the pcs set up, you can just use VISA to communicate with your other devices.
    Logan S.

  • How to link between 2 servlets which are in 2 diferent servers

    I tried to move between 2 servlets which are residing in 2 different servers using the response.Redirect("myurl") method but when i try to return from the second servlet it gave me an error saying the response has been committed. I also tried using the request.getRequestDispatcher("myurl") method but this method does not seem to work as the servlets are in different servers. Anyone who have encountered this problem before please help. Thanks

    A RequestDispatcher only works within one JVM so cannot be used in your case. sendRedirect() causes the client to request the second servlet. To return to the first servlet, you need to sendRedirect() again. Basically, there is no link between the two servlets and you are communicating via the client (presumably a browser). You cannot pass session or servlet context attributes between the two servlets because they ruin in separate JVMs.
    If you're already using sendRedirect() in boht places and the second servlet is giving an error, then there's a problem with that servlet. Perhaps you could post the code and the error.
    If you want direct communication between the servlets, you need to custom build a link using HTTP, RMI or other protocols. There are many examples on this forum.

  • Communication between SAP and 3rd Party Systems using IDOC HTTP XML Interfa

    Hi
    i am try do
    Communication between SAP and 3rd Party Systems using IDOC HTTP XML Interface
    With The help of SDN Contribution
    link----
    ( have look on it)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4943f2b7-0a01-0010-37af-faff35b2f08c
    I am getting error in
    Partner system as HTTPLOG and "Execute" to check the results
    Error is --  Port could not be created
    RFC destination HTTPLOG Not specified for system HTTPLOG
    any 1 have any idea  if plzzzzzzzz...........
    Thank u
    Ram

    Hello .
      we are also in  process of implementing the same
    could you share the knowledge pl?
    1)is it a separate add on with ALE to saphr
       or using ECC ??
    2)can u share the configuration part ??
    we are trying it on webas as addon 3.0 .

  • I have burned CDs before from 2gb to 7gb using different types of discs. Now I get this error message Apple error The disc can't be burned because communication between the computer and the disc drive failed (error code 0x80020022). What should I do

    I have burned CDs before from 2gb to 7gb using different types of discs. Now I get this error message Apple error The disc can't be burned because communication between the computer and the disc drive failed (error code 0x80020022). What should I do

    Reset the SMC, as per > Resetting the System Management Controller (SMC)
    1. Shut down the computer.
    2. Unplug the computer's power cord.
    3. Wait fifteen seconds.
    4. Attach the computer's power cord.
    5. Wait five seconds, then press the power button to turn on the computer.
    Then zap the PRAM/NVRAM as per > About NVRAM and PRAM
    1. Shut down the computer.
    2. Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    3. Turn on the computer.
    4. Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    5. Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    6. Release the keys.
    Then retry the Disc Drive.

  • Communication between the DNS/DHCP Manager and OES Server

    No communication between the DNS/DHCP Manager Console and OES server (status,start,stop)
    The screenshot shows the tab "DHCP (OES Linux)" in the DNS / DHCP Manager console
    in the bottom of the image it shows the state of the DHCP servers.
    allDHCP.JPG
    The dhcp service is started on all these servers
    You can see that the status is known only for four servers.
    The button "start/stop DHCP service" works fine on this servers and
    the dhcp service can be canceled and also restarted
    But the status of the "dhcp service" is not recognized for all the other DHCP servers
    and so we can not start or stop dhcp service on these servers.
    All servers were installed at different times (last three years) with OES11 and
    are upgraded to OES11SP2 with all patches.
    The server keto (DHCP_keto) is a new installation OES11SP2 few days ago.
    All OES servers were set up identically from me. LDAP, LUM, DMS, DHCP works fine.
    Which service on the OES server is responsible for
    communication (status indicator) between the DNS/DHCP Manager and the OES serve?
    How the status query is performed by the DNS/DHCP Manager?
    How can I test the communication to the server on the client (console)?
    Which configurationfiles I should be compare on the server?
    Thanks in advance
    Gernot

    gernot,
    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://www.novell.com/support 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 Forums Team
    http://forums.novell.com

  • Encrypting communication between an app that uses an ODBC/DSN (with ADODB) and SQL Server 2008 R2

    I've been doing a lot of reading the last couple of days on how we can encrypt db communication between our product app and a customer's SQL Server db, but cannot make it work as expected. The app uses a ODBC/DSN to connect to the SQL Server db. I use this
    ODBC app to setup the DSN (on a Windows 7 PC):
    C:\Windows\SysWOW64\odbcad32.exe
    The  DSNconnection uses the SQL Server driver 6.01.7601.17514 and has these properties:
    - WinNT authentication.
    - Client Config button: TCP/IP to <server-name>\<instance.-name>
    - Change to default db: <name-of-app-db>
    - Everything else is default setting.
    SQL Server is on the same Windowns 7 PC and has a self-signed cert installed (used IIS to generate it) and has the Force Enryption set to "yes".
    I have a test C# program that uses the ADODB 2.7.0.0 COM-wrapper, made by Visual Studio after adding a reference to the ADO 2.7 library version 6.1.7601.17857. The program creates an ADODB.Connection object that has a simple connection string: "DSN=<san-name>;UID=<user>;PWD=<password>". The
    program then creates an ADODB.Recordset object and reads and displays a field from a table.
    Works fine.
    If I go into SQL Server and set Force Encryption to "no," clear the cert, restart the SQL service, and then re-run the program, it works fine.
    Here's the kick. If I go into the DSN and select "Use strong encryption for data" the Test button on the DSN works—why does it work? The SQL Server is no longer encrypting the connection so an error should occur. If I run the test program, it works
    as well—why? I can look at the connection properties in the test program and see that ADODB has added the ";Encrypt-yes" stuff to the end of the connection string. Yet that option seems to have no effect.
    If I set the SQL instance back to Force Encryption:yes, enable the cert, restart the SQL service, and clear the DSN's "Use strong encryption for data" option, I can still connect to the db with the
    test program—why?
    What am I doing wrong? I need to be able to ensure that the communication between our app product and the SQL instance is encrypted, and that we get an error if the SQL instance does not support encrypted communications. We really don't want the customer
    to have to enable Force Encryption because they have other db's on their SQL Server that do not use encrypted communication, but they want to know that our product's communication channel with the db is encrypted.
    No, I can't change the app product's code at this point in time. I'm stuck with working with what a DSN called from ADODB has to offer.
    Also, how can I be sure that communications are encrypted? I mean, I've tried things like "SELECT * FROM sys.dm_exec_connections" but that doesn't help because I have no idea how to tie the list of sessions shown back to my test program, although
    I guess it's a good thing that some of the sessions listed show encrypt_option as TRUE.
    -glenn-

    Ah yes, very good point. It's easy to miss because you have to delete then recreate the DSN in order to change drivers. So I switched the DSN over to the SQL Native 11 driver.
    Now when I try to connect to the SQL instance as <computer-name>\<instance-name>, and without a cert on the server, I get "the target principal name is incorrect". Perfect; now we're getting somewhere!
    Change my DSN to use <fqdn>\<instance-name> and it works. This tells me that SQL Server has auto-generated a cert and named it <fqdn>. I would have expected the "cert fail" error, not a cert
    name mismatch, because I'm not using Trust Server Cert.
    So I load up my self-signed cert, and that works too.
    I am still confused as to why I'm not seeing the "cert fail" error when I have no cert loaded on the SQL Server. I am not using Force Encryption on the server at all, so wouldn't expect SQL Server to auto-create a cert when an Encrypt=yes request comes in,
    but apparently it does?
    I also ran into a problem with this:
    select c.session_id, c.encrypt_option, s.client_interface_name
    from sys.dm_exec_connections c
    join sys.sysprocesses s
      on c.session_id = s.session_id
    where s.dbid = db_id('MyDatabase')
    There is no s.client_interface_name, probably should be s.hostname. There's also no s.session_id. I thought maybe this should be s.sid, but then no rows ever come back. The c.session_id looks like 51 and 52, but the s.sid looks like a very long binary number,
    so these two fields cannot be joined. I don't know how to convert the sid's properly so that the join would work. Ah wait, I just found the s.spid column; the join works when that column is used (I assume that's correct anyhow).
    If I add a Thread.Sleep(30 seconds) to my C# program just before the connection is closed, this query shows me the session for the correct hostname has encrypt_option=TRUE.
    And I have to keep my fingers crossed that all the app I/O will still work properly after
    changing the driver. Probably a safe bet though.
    Think I'm ready to throw in the towel on getting the "cert fail/no SSL" error to appear.
    It does look like I am able to sufficiently show that the connection is encrypted when Encrypt=yes is used with the newer driver.
    Thank for all the help!
    -glenn-

  • Communication between thread in the same process using file interface.

    Hi,
    I am developing  driver and i need to communicate between two thread.
    >can anyone guide me on implementing communication between two thread in the same process using File Interface. First thread will be driver and second will be application.I need to send IOCTL like commands using File interface ie is WriteFile(),ReadFile()
    from Host process to driver through file-interface(which run's in driver context).Host process should not be blocked for the duration of the driver to process the command.
    >File-interface will run in driver context and it will be responsible to receive command from application and pass it to the driver.
    what are the complexity introduced?
    >Can anyone also give me the link/reference to get more information on this topic?
    >How to replace IOCTL command's for instance baud _rate change command with a file interface for example with IRP.

    Here  is the detailed query:
    Hardware Abstraction Layer will interact with Driver(Both will be running in complete different process) .there is a IOCTL for command and  File interface for read and write.
    My requirement is:
    Both should run in the same process so HAL will run as one thread and driver as another thread in the same process .I don't want HAL to wait for completion of request and also i don't want driver to be blocked .
    We are planning to use a File Interface for communication between Hardware abstraction layer and Driver
    HAL will send the command or read/write operation to a file interface and driver will get the command or read/write request from the File interface
    There is a flexibility to change Hardware Abstraction layer and also the Driver
    Is it possible to use IOCTL between two thread under same process? if not what other options do we have.
    Can we use File interface to  send command (like IOCTL) between two thread?

  • Using clipboard for communication between applications

    I am facing a problem related to clipboard during a remote desktop connection. I have the same application both in a client (Windows 8) and in a server (Windows Server 2012 R2) and the communication between them is made by using clipboard. Before making
    the connection to the server through "Remote Desktop Connection", there is an option related to Clipboard in Local Resource tab which must be checked. I did it and when I run both programs they don't work as expected. They should exchange messages
    between themselves, however some messages are lost during the communitation (between the client and the server). I suppose there must be some kind of configuration I have forgotten to setup during installation of Windows Server 2012 R2. Perhaps something like
    that: http://www.technipages.com/unable-to-copy-and-paste-to-remote-desktop-session. Does anybody know if clipboard option should be set in an additional menu in order to clipboard to work properly in Windows Server 2012 R2? Should the client settings also
    be checked as above? I've seen many possible solutions on the Internet for similar problems like this, but none of them solved it. I'd appreciate any help anyone could give me.

    Hi,
    Thank you for your posting in Windows Server Forum.
    You can try to disable the “Do not allow clipboard redirection” on both server and client side with administrator permission under Group Policy on below mention path.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Terminal Services\Terminal Server\Device and Resource Redirection
    Hope it helps!
    Thanks,
    Dharmesh

Maybe you are looking for

  • I want name on address bar goes to home page, not search engine

    Just today I hooked up a new modem/router that I purchased at a WIndstream store. I have been browsing the internet for years with Firefox. I have changed the keyword.url setting in my Firefox configuration (see https://support.mozilla.com/en-US/ques

  • IPhoto Library is gone, gone, gone ... but ...

    Here's a chronology of what happened... I've kept my photos on an external hard drive for the past two years because there were so many of them. Everything was fine. Three things happened sort of simultaneously, so I don't know which might have been

  • Is there any error in this jsp file...??

    aftr database connection query is not running.... <%@page import="java.sql.*"%> <%@page import="java.io.*"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <tit

  • Query to get the List of Reports on a Universe

    Hi All, I want to write a query to get all the Web I and Crystal Reports that access a particular universe. Can anyone suggest me where to start. This is in BO 3.1 against Oracle databse.

  • Cache entries expiring after doing bulk insert

    We are seeing this peculiar issue of expired entries when we started using bulk loading in coherence 3.5. com.tangosol.net.NamedCache.putAll(<hashmap>) Earlier, we were using com.tangosol.net.NamedCache.put(key,value,EXPIRY_NEVER). This code works wi