Behind Proxy

Does Adobe Media Player work, or plan to work behind proxy situations? Or does it use a specific port that wouldn't be able to tunnel through the HTTP port?

adproxy.exe. Has anyone had a problem with this process which I believe is part of the Media Player. After downlosding the new version of Adobe Reader and along with it the Adobe Media Player I began experiencing long ( 8 minute ) bootup periods. On one occasion I finally got Windows Task Manager to display during the boot. There it was, adproxy,exe hogging 93 oercent of my processor time and I could not even find out what it was doing. OK, so I am a novice.
Has anyone experienced this? Any ideas? The only way I can get rid of this process until the next boot is to let WTM end the process. If I don't, it will randomly, so it seems, start up again, hogging all cpu time. Help.

Similar Messages

  • Connection Problem while client is behind proxy and server out side proxy

    hello
    i implemented ChatApplication in JAVA, for that i used socket connection when client and server both are in same network then it's working fine.
    but when my server is on internate and client is behind proxy and try to connect with server
    it not able to connect i get exception.
    i serch most of forum i got same answer and i try it but i was not success.
    any kind of help is appriciated.
    i attached my code(which i implement for testing ) pls reply me
    thanks in advance.
    Server.java
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    class Server {
       public static void main(String args[]) {
          String data = "you are successfully connected with server.";
          try {
             ServerSocket srvs = new ServerSocket(1234);
             Socket skt = srvs.accept();
             System.out.print("Server has connected!\n");
             PrintWriter out = new PrintWriter(skt.getOutputStream(), true);
             System.out.print("Sending string: '" + data + "\n");
             out.print(data);
             out.close();
             skt.close();
             srvs.close();
          catch(Exception e) {
             System.out.print("Whoops! It didn't work!\n");
    ProxyClient.java
    import java.io.*;
    import java.net.*;
    import java.util.*;
    class ProxyClient{
       public static void main(String args[]) {
         String host="61.17.212.29";
         int port=1234;
               String line;
         Properties properties = System.getProperties();
         /*properties.put("firewallSet", "true");
         properties.put("firewallHost", "192.168.0.1");
         properties.put("firewallPort", "808");*/
         properties.put("socksProxySet","true");
         properties.put("socksProxyHost", "192.168.0.1");
         properties.put("socksProxyPort", "1080");
         System.setProperties (properties);
         try {
         /*SocketAddress addr = new InetSocketAddress("192.168.0.1", 1080);
         Proxy proxy = new Proxy(Proxy.Type.SOCKS, addr);
         Socket skt = new Socket(proxy);
         InetSocketAddress dest = new InetSocketAddress("61.17.212.29",1234);
         skt.connect(dest);*/
             System.out.println("before socket taken");
             Socket skt = new Socket(host,port);
             System.out.println("after socket taken");
             BufferedReader networkBin = new BufferedReader(new InputStreamReader(skt.getInputStream()));
             System.out.println("Received string: '");
             line = networkBin.readLine();     // Read one line
          while(true)
                 System.out.println(line);     // Output the line
                 line = networkBin.readLine(); // Read the next line, if any
          catch(Exception e) {
             System.out.print("Whoops! It didn't work!\n");
         e.printStackTrace();
    }

    Now look here. I could not care less about this
    code. I don't know anything about it, I don't
    want to know, I have already recommended you don't
    use it, and I have also given you a simpler and
    better solution. If you don't want to take my advice
    that is your privilege and your problem.ya i has understand system propertis i have setted and u can see it in the code i have tried by both system properties and also J2SE 5.0 proxy class but i got a same problem malformed Exception server refuse to connection.
    is there any problem at sever side?
    can u tell me in which way u r teling to set the propery i m looking forward for ur reply.
    ya i m sure u will give me.................reply "ejp".
    Thnx in advance.

  • Project professional 2013 can not connect to Project Online behind proxy

    Hi,
    I had problem when running application ms project professional 2013 connect to project online behind proxy,
    but we can access url PWA site in browser.
    but when we connect to pass through internet  we can connect project professional 2013 to project online.
    i get article http://technet.microsoft.com/library/hh373144.aspx to open port 443, but we already
    open port 443. 
    anybody  know how to troubleshoot this problem? or other port to open beside port 443.
    thansk for advice.
    regards
    rully

    Hi Ruly,
    Are you still having an issue? Could you share the error details, when you try to connect the MS Project to project online behind proxy?
    Cheers, Badal

  • Safari behind proxy

    Hi,
    I have developed a web application which has an applet inside it.
    When I am running it in safari without a proxy it works fine but when i use proxy it says class not found.
    IE, Firefox and chrome work behind proxy. Opera does not work but it shows different error.
    Whats going wrong. Is there any extra settings for jre in safari ??

    HI,
    Safari and proxies do not get along. Might be some help here...
    http://www.lib.ucdavis.edu/ul/services/connect/proxy/step1/safari.php
    Carolyn

  • _*I am behind proxy  and  i tried to  decode *JSON* encoded  script behind

    I am behind proxy  and  i tried to  decode JSON* encoded script behind proxy, Using curl i read the url and then feed that to JSON_DECODE but this is giving*
    invalid argument or error at JSON_DECODE can u expalin any solution?
    <?php
    session_start();
    require_once('JSON.phps');
    $url = 'http://ajax.googleapis.com/ajax/services/search/web?rsz=large&v=1.0&q=' . urlencode('site:' . $_SERVER['localhost'] . ' ' . $_POST['searchquery']);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
    curl_setopt($ch, CURLOPT_PROXY, "172.31.1.1");
    curl_setopt($ch, CURLOPT_PROXYPORT, 8080);
    curl_setopt($ch, CURLOPT_PROXYUSERPWD, "myid:myPASS");
    curl_setopt($ch, CURLOPT_URL, $url);
    $body = curl_exec($ch) or die(curl_error($ch));
    curl_close($ch);
    $json = new Services_JSON();
    $json = $json->decode($body);   //Giving error at this point as INVALID ARGUMENT
    foreach($json->responseData->results as $searchresult)
    if($searchresult->GsearchResultClass == 'GwebSearch')
    $formattedresults .= '
    <div class="searchresult">
    <h3><a href="' . $searchresult->unescapedUrl . '">' . $searchresult->titleNoFormatting . '</a></h3>
    <p class="resultdesc">' . $searchresult->content . '</p>
    <p class="resulturl">' . $searchresult->visibleUrl . '</p>
    </div>';
    $_SESSION['googleresults'] = $formattedresults;
    header('Location: ' . $_SERVER['HTTP_REFERER']);
    exit;
    ?>

    This is a Java forum. Your script appears to be written in PHP.
    Please note that Javascript and Java are unrelated.

  • Empathy longstanding issue behind proxy

    There is a longstanding issue of empathy (or telepathy-gabble) behind proxy.
    I have tried to get solutions for years. Here is the description:
    Settings:
    * I am behind a proxy.
    * I have set the system proxy settings and http_proxy/socks_proxy in the environment.
    * The latest version of empathy (3.12.1)
    Issue:
    I use empathy to login GTalk account. The authentication worked fine. However, there is
    an error "Network error" showing in the dialog. This happened before displaying
    my contacts. I googled this issue and found that something wrong with telepathy-gabble.
    So, I abandoned empathy for a long time.
    But, recently, I use a newly registered google account to login GTalk with empathy.
    Everything is well. I can chat with others. Still, I cannot login with my old account.
    This seems wired. I asked others to try their accounts, some of them can login without problem
    and some still have problem.
    For years, I can only use GMail in the browser to access my gtalk. I know this is about
    empathy rather than Arch Linux. But, I like this community and believe someone could help me.

    Hello Enrique,
    I fully agree - but unfortunately there is not much choice regarding the network layout. Or at least I cannot influence it ;-P
    The problem seems to be a bit mor subtle than I thought at first. I already have configured both Web Start and the browser to use the proxy. However, the error message clearly indicates that the integration builder (IB) doesn't use the configured port of the proxy to connect to the web application server, but another port.
    Our server listens on port 50000. The error message tells me that the IB tries to connect using port 50004. Obviousely it tries to open a direct socket to the server - probably an extra connection to exchange commands etc (RMI? CORBA? WebServices?). This is not possible in our network configuration.
    The question ist whether I can somehow influence this port to make a connection using this proxy possible...
    Regards, Joerg

  • Onenote behind proxy doesn't connect to skydrive

    Running OneNote 2.1.2 on Ipad IOS7.0.2 , same issue on iphone (same versions)
    Connection WiFI, with authenticated (through AD) proxy (at work).
    Proxy defined in wifi settings of the ipad
    ID/PWD also defined in proxy setting
    Every other applications run fine behind proxy including skydrive for ipad.
    OneNote cannot connect to skydrive.
    Note: was the same on IOS 6 and all version 2 of onenote. Was working fine with version OneNote 1.3.
    Thanks

    I don't understand German, but I see you are using a proxy server.
    That sometimes causes connection problems. Try turning it off.
    Internet Options>>Connections>>LAN settings

  • Connection configuration properties behind proxy

    I'm trying to reach a web service registry from behind proxy. In order to connect to it I'm setting it's address and port using
    props.setProperty("javax.xml.registry.http.proxyHost", httpProxyHost);
    props.setProperty("javax.xml.registry.http.proxyPort", httpProxyPort);
    but getting HTTP 407 error - Proxy Authentication Required. I believe I need to set my proxy ID and password somehow. Dos anyone know how to do that? Any advice is greatly appreciated.
    Michael D.

    First, what API has the "javax.xml.registry" in it. I cant find any reference to it. I could have missed it I suppose. Let me know and I will take a look.
    Other ideas after looking at your code that you can try in the meantime.
    Since the Properties class is a hashtable it is based on key word value. The ConnectionFactory class needs to know the exact key.
    Try changing the following:
    props.setProperty("javax.xml.registry.http.proxySet", "true");
    to:
    props.setProperty("proxySet", "true");
    Do that for each line. Just use the last word (i.e. proxyHost, proxyPort). It could simply be that ConnectionFactory is not finding the correct key.
    I could be wrong here, but I am waiting to find out what API you are using.
    The SoapHTTPConnection class has a number of methods for working with a proxy, such as setPassword and setHost. Perhaps ConnectionFactory has the same settings or the connection returned has methods for this.
    Im not sure what class the createConnection method returns, but check there for appropriate methods.

  • Connect to socket server behind proxy?

    My socket server is behind proxy.
    Can client connect to server?
    Thanks

    Hi Sojan !
    Server work,
    but when run behind proxy=Exception.
    Hier is part of code.
    public static final int PORT=780;//port number
    static Socket soc;
    PrintWriter out;
    BufferedReader in;
    static boolean flag;//check connection
    try{
    ServerSocket ss=new ServerSocket(PORT);
    flag=true;
    while(flag){
    soc=ss.accept();
    v.in=new BufferedReader(new InputStreamReader(soc.getInputStream()));
    Thread d=new Thread(v);
    d.start();
    }catch(Exception z){z.toString();
    public void run() {
    try{
    while(flag){
    String g="";
    g=in.readLine();
    if(g==null){break;}
    //System.out.println(g);
    jTextArea1.append(g+"\n");
    catch(Exception c){
    System.out.println("soc2 closed");
    try{
    soc.close();
    }catch(IOException f){System.out.println("soc2 not closed");}
    ...

  • Problem accessing https Web service from behind proxy

    Hi all,
    I have this constant timeout issue which occurs whenever I try to access the Web service from behind a proxy.
    Find below the error logs -
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.net.ConnectException: Connection timed out: connect
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace:java.net.ConnectException: Connection timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    at java.net.Socket.connect(Socket.java:452)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:136)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:100)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:129)
    at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:389)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:87)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:144)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2688)
    at org.apache.axis.client.Call.invoke(Call.java:2671)
    at org.apache.axis.client.Call.invoke(Call.java:2357)
    at org.apache.axis.client.Call.invoke(Call.java:2280)
    at org.apache.axis.client.Call.invoke(Call.java:1741)
    I am using Tomcat 5.0.19 . Could anyone suggest a possible solution to the same?
    The system works fine when I use a http endpoint.

    Hi,
    By default, your application tries to connect to the Net directly : if you have to specify a proxy, use either these lines in your code :
    System.setProperty("http.proxySet", "true");
    System.setProperty("http.proxyHost", "proxy");
    System.setProperty("http.proxyPort", "8080");
    Or specify them in the command line with the "-D"option.
    Ex : java .... -Dhttp.proxySet=true .... MyApp
    Hope it helps.
    See ya

  • How can I connect to a ServerSocket behind proxy ???

    Hi,
    I have been searching for this answer for a very long time. My question is simple:
    Let's say I have an Instant Messenger application written in Java. I will call it JICQ.
    If my JICQ is installed in a machine with invalid IP address (192.168.1.100) behind a proxy server (Wingate), how in the heck another JICQ outside my intranet can send me a point-to-point message ????
    How can an application from outside my Intranet get to my ServerSocket running on my machine with a invalid IP address and behind a proxy server ???
    I think ICQ does just that, and I am very curious in knowing how it does that.
    I will explain better the ICQ cenario:
    I am behind a proxy server (Wingate) and my machine has an invalid IP address (192.168.1.100).
    I have ICQ running on that machine.
    How can other people connect to my ICQ to send me instant messages and files ???
    Is it a point-to-point connection ??? (I think so)
    [ICQ] -------> [PROXY] --------> [My ICQ]
    I would be very thankful if someone can explain me that.
    []'s
    Sergio Oliveira Jr.

    Tony, could you please explain me better the procedure that you wrote?
    What are the boxes? My situation is similar:
    | ServerSocket (1) |
    | (192.168.1.100, 5555) |
    |
    |
    |
    |
    | Proxy |
    | Someone wants to connect to the ServerSocket (1) |
    That is not true. You CAN do it but you need a box
    outside the firewall with proper IP address to help
    you. I am not sure if Sergio still wants the answer
    today after more than a year from the original post (I
    did not see the post until today when I try to search
    for something else). Anyway, if such a box is
    available (I call it 2nd box), you could first
    establish a socket between the two boxes by HTTP
    tunneling (I assume it is a http proxy). You have to
    initiate the socket from the 1st box. Then start
    another server socket on the 2nd box, forwarding the
    traffic it gets from outside back to the 1st box using
    the established channel. That is it.
    Tony

  • Problem connecting to IM's behind proxy

    Hello,
    This is my first thread here, and I'm not really sure if I should pose this question to you guys, but you're my only hope of getting this fixed.
    The thing is I'm in a Mac running Leopard, and I'm behind a proxy here at my company. I can't connect to MSN, Gtalk, Facebook (through Adium or aMSN), as it just won't get by the "handshaking" process. I can't connect through the Microsoft Windows Messenger for Mac either.
    However, every Windows user can access MSN. All the ports the IM's use are available and open.
    For your knowledge, I'm connecting Skype, Tweetdeck, Entourage, Firefox, and everything is running well.
    Any clues? I'm completely lost here.

    I use Adium behind the corporate firewall. Adium has the ability to specify a proxy server for each account
    Adium -> Preferences -> Accounts -> yourIMservice -> Edit -> Proxy.
    I use the [X] Connection using proxy -> Type -> Systemwide HTTP Settings for AOL IM (AIM) and GTalk.

  • ITunes 8.02 cannot update iPod behind proxy

    I tried to update my iPod Touch today. I was able to start the download at home, but was unable to finish it. Came to the office, where we are behind a proxy server and iTunes gives the error: iTunes could not contact the iPod software update server because you are not connected to the internet. However, my proxy settings work fine for iTunes Store (download of songs, apps, and podcasts), Safari, Firefox, FTP applications, etc. The only other program that has problem is NetUpdate from Intego that also claims it cannot connect to the Internet.

    I've been having problems with iTunes using an authenticating proxy for more than a year. I've given up on it more-or-less (I keep reporting it as a bug whenever a new version of iTunes comes out), but decided to check to see if anybody's come up with clever ideas since. Someone linked to this: http://support.apple.com/kb/HT1748?viewlocale=en_US
    "iTunes under Mac OS X currently does not work with authenticated proxy servers."
    I've noticed a couple other posts link to a program called "authoxy" that will add the proxy authentication information for you, but the reason authorization is required to use a proxy is so that it can't be done without your knowledge. So check your local security policy to see if that's acceptable. It's not for me.

  • Creating java sockets behind proxy servers.

    Hi,
    I am trying to create a socket to an external server(i.e. a public server) from behind a proxy firewall, but the socket creation statement throws an IO exception. Can someone please let me know how to create sockets using proxy servers.
    TIA
    Shishir

    I tried using java.net.Proxy for the connection. But the socket to the proxy itself is not getting created. It throws the IllegalArgumentException.
    import java.io.*;
    import java.net.*;
    import java.net.Proxy.Type;
    public class Client {
    static Socket proxSocket = null;
    static PrintWriter out = null;
    static BufferedReader in = null;
    public static void main(String[] args) throws IOException {    
    try {
    System.out.println("Trying to create socket");
    InetSocketAddress proxyadd = new InetSocketAddress(InetAddress.getByName("148.87.19.20"),80);
    Proxy ps = new Proxy(Proxy.Type.HTTP,proxyadd);
    Socket proxSocket = new Socket(ps);
    out = new PrintWriter(proxSocket.getOutputStream(), true);
    in = new BufferedReader(new InputStreamReader(
    proxSocket.getInputStream()));
    } catch (UnknownHostException e) {
    System.err.println("Don't know about host: ...");
    System.exit(1);
    } catch (IOException e) {
    System.err.println("Couldn't get I/O for "
    + "the connection to: ...");
    System.exit(1);
    catch(IllegalArgumentException e)
    System.err.println("Unable to describe the proxy.");
    System.exit(1);
    }

  • Safari Beta 3 Application Error when Behind Proxy (tech. details)

    Whenever attempting to authenticate behind a proxy, the following message is displayed:
    Safari.exe - Application Error
    The instruction at "0x6180af81" referenced memory at "0x00000004". The memory could not be "read".
    And the following error is logged in the Event Viewer:
    Faulting application Safari.exe, version 3.522.11.3, faulting module CFNetwork.dll, version 1.185.6.0, fault address 0x0000af81.
    Event Type: Error
    Event Source: Application Error
    Event Category: (100)
    Event ID: 1000
    I hope a fix or workaround can be found for this error.
      Windows XP Pro   and Windows 2003 Pro

    Update 2: this can be fixed by logging on as another user (User2) and deleting the profile of the user (User1) for whom Safari won't launch.
    When User1 logs on again, a new profile is created; Safari launches and runs properly under the new profile.
    At the time I noticed the problem, only User1 had logged on. As a guess, I logged on remotely as User2 - Safari launched and ran properly. That suggested that something about User1's original profile was the cause.

Maybe you are looking for

  • SAP NetWeaver 7.02 ABAP Trial Version - Any plan?

    As [SAP Enhancement Package 2 for SAP NetWeaver 7.0|SAP Enhancement Package 2 for SAP NetWeaver 7.0] is available, I wonder if there will be a 7.02 version of NSP? Is there any plan? Thanks, Peter

  • Block replication of service order to ECC

    Hi, When a service order is created it is replicated in R/3. How can we block this replication? Regards, Shikha

  • Process of MSIE

    if i have already get the process by open a browser with a specified url, is it possible to read the corresponding webpage source code by process.getInputStream()? or say, does it return the html stream? thanks posted on p2p.wrox.com howto sections

  • Change of table entry

    Hi I have a table called "TKUPA". I don't have authorization to change the value in it. Is there any way of doing that? Regards Karan

  • SAVE Vs SAVE UPDATE

    Hi, Whats the exact difference between SAVE and SAVE Update in MDM Import Manager? and when we should be using which? Thanks Simran