Proxy servers and port 80

I don't know if this will transmit but I am suddenly losing contact with Apple discussions and get a white screen with a reference to Remote proxy servers / port80 / Apple discussions.
Would anyone know what is going on and if the problem is my end or Apple's.
Much obliged for some info.
Regards to all,  71

Klaus1 wrote:
The glass is half full: THEY ARE WORKING ON IT!
I'd be happy just having a glass!
Actually you're right they are working on it but if we talked about the fix here we'd have to kill everyone below level 6.

Similar Messages

  • Proxy servers and the "cannot publish" error - v.1.1.2

    Using the latest iWeb (1.1.2), attempts to publish my work to my .Mac account resulted in the infamous "publish error." I then came across this KB article:
    http://docs.info.apple.com/article.html?artnum=303927
    I turned off my proxy access in the Network settings, and voila, publishing was successful. But now, I'm circumventing my much-needed proxy.
    It's been suggested in other threads here that proxies aren't a problem if one's iDisk is accessible through it. This is not the case. With the proxy, iDisk access is fine, it's only iWeb publishing that is a problem.
    Any way to keep my proxy and still publish with .Mac?

    iDisk access and iWeb publishing ARE indeed different activities. They are similar in that they both utilize the WebDAV protocol over Port 80, but they are different in their individual requirements for back and forth communications with the .Mac servers in terms of how soon or in what timeframe they expect to hear confirmation of transfer back from the server.
    It is apparent to me that the network timeout threshold for copying something to iDisk is a lot longer than that for publishing through iWeb. In fact, I would say that iWeb has become a lot more stringent with network timeouts ever since it was updated from 1.0 to 1.1.
    Anything in between your computer and the .Mac servers contributes to network latency. There are both software and hardware contributions to this latency. Proxy servers, like routers, can be software or hardware based. Software-based latency is most often greater than hardware-based latency.
    I would guess that removing any kind of latency "generating" obstacles within your control would likely improve iWeb function and decrease the incidence of publish errors. Some of these obstacles can include background processes, busy LAN activity (like VOIP use or streaming music/video or online gaming), wireless access points, proxy servers, and routers.
    On the other hand, I also think that if Apple increased iWeb's network timeout threshold, that most of the publishing errors that people experience could be eliminated.

  • HTTP Proxy: My grogram runs even I put a wrong proxy host and port

    I'm new to network programming, so I just use System.setProperty() for easy. But I don't know why this piece of code runs with whatever proxy I set:
    (I download a file and display in a in JTextArea, this is the ActionListener for 'Download' button)
         private class GetFileListener implements ActionListener
              public void actionPerformed(ActionEvent event)
                   if (completeRadioButton.isSelected())
                       try
                            viewFileTextArea.setText("");
                        System.setProperty("http.proxyHost", "http://123.123.123.123");
                        System.setProperty("http.proxyPort", "123");
                        System.setProperty("proxySet", "true");
                           URL url = new URL(completeURLTextField.getText());
                           BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                           String str;
                           while ((str = in.readLine()) != null)
                               viewFileTextArea.append(str + "\n");
                           in.close();
                       catch (MalformedURLException e)
                            viewFileTextArea.setText("URL not found!");
                       catch (IOException e)
         }Please help! Thank you very much!

    This is the new version:
         private class GetFileListener implements ActionListener
              public void actionPerformed(ActionEvent event)
                   if (completeRadioButton.isSelected())
                       try
                            viewFileTextArea.setText("");
                        SocketAddress addr = new InetSocketAddress("123.123.123.123", 123);
                        Proxy proxy = new Proxy(Proxy.Type.HTTP, addr);
                        URL url = new URL(completeURLTextField.getText());
                        URLConnection conn = url.openConnection(proxy);
                           BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                           String str;
                           while ((str = in.readLine()) != null)
                               viewFileTextArea.append(str + "\n");
                           in.close();
                       catch (MalformedURLException e)
                            viewFileTextArea.setText("URL not found!");
                       catch (IOException e)
         }but it still runs regardless of what proxy host and port I set in InetSocketAddress. Did I wrongly use Proxy class in the code above?

  • Detect proxy settings and ports

    Hello forum, I have a project to find out which servers or applications/services are going through ISA 2006 proxy. The servers comprise of WIndows 2003 and 2008 R2 boxes. I tried proxcfg.exe (pre 2008) and netsh winhttp show proxy (post 2008) but I get following
    results. I know that these boxes do use proxy servers because they show up when I query ISA logs.
    C:\proxycfg
    Microsoft (R) WinHTTP Default Proxy Configuration Tool
    Copyright (c) Microsoft Corporation. All rights reserved.
    Current WinHTTP proxy settings under:
      HKEY_LOCAL_MACHINE\
        SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\
          WinHttpSettings :
         Direct access (no proxy server).
    C:\netsh winhttp show proxy
    Current WinHTTP proxy settings:
        Direct access (no proxy server).
    I have also looked at registry keys HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
    Settings but found nothing of relevance. Checked IE settings and found no proxy configuration. How can I check which application or service is using proxy and on which port? Thanks again.

    Thanks Quan, a little background, ISA version is 2004 and the traffic logging is done on a different box with SQL 2005. Which means that all server, service/application or user generated traffic first hits ISA boxes and data is logged in SQL server. Now, I
    ran a query on SQL boxes to see if there are servers or applications still accessing old ISA servers and found that many still are using that route. The query I ran is 
    select clientusername,Max(logtime)
    from webproxylog
    where logtime > '2014-03-04'
    Group by Clientusername
    Outcome is a list of servers and users accessing old ISA servers, please see below
    clientusername
    TimeStamp
    Domain\USER1
    12/03/2014 9:42
    Domain\USER2
    10/03/2014 8:29
    Domain\SERVER1$
    12/03/2014 6:33
    Domain\SERVER2$
    7/03/2014 23:05
    Domain\SERVER3$
    7/03/2014 23:09
    Domain\SERVER4$
    7/03/2014 22:18
    Domain\SERVER10$
    12/03/2014 0:15
    Domain\SERVER12$
    6/03/2014 13:00
    Domain\SERVER21$
    9/03/2014 15:05
    Domain\USER46$
    6/03/2014 7:17
    Domain\SERVER22$
    5/03/2014 17:25
    Domain\SERVER73$
    12/03/2014 9:11
    Domain\SERVER14$
    5/03/2014 17:31
    So I logged on to few servers to check proxy settings. The server list comprise of Windows 2003 and 2008 R2 boxes. On a handful of servers I found proxy, under IE settings but on others I didn't find any proxy settings (under IE). Then I tried proxcfg.exe (pre
    2008) and netsh winhttp show proxy (post 2008) but I got following results, please see below. 
    C:\proxycfg
    Microsoft (R) WinHTTP Default Proxy Configuration Tool
    Copyright (c) Microsoft Corporation. All rights reserved.
    Current WinHTTP proxy settings under:
      HKEY_LOCAL_MACHINE\
        SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\
          WinHttpSettings :
         Direct access (no proxy server).
    C:\netsh winhttp show proxy
    Current WinHTTP proxy settings:
        Direct access (no proxy server).
    I have also looked at registry keys HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings but found nothing of relevance. Checked IE settings and found no proxy configuration. Then why are my servers using old proxy servers?

  • FF keeps defaulting to the wrong HTTP proxy server and port. I have to change it every time I attempt to open Firefox? How do I change it for good?

    The manual proxy settings keep defaulting to the wrong HTTP and port. This has caused me many hours of anguish. It works fine when I correct the settings but after you log off and then come back it has to be changed again. Is there anyway to fix it? Or can I go back to the previous version because 4 definitely has some issues (other than this one). I could live with it if I had to but I'm not the only one who uses this computer and they don't know how to make the changes. Thanks and I would definitely appreciate an answer.

    See:
    * http://kb.mozillazine.org/Preferences_not_saved
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Multiple proxy servers and session replication

              Hi,
              I'm in the middle of testing the 5.1sp10 that I set up recently.
              Say I have PROXY1 and PROXY2, connecting to the object layer.
              First, I point my browser to https://PROXY1/application. I did some stuff there
              that updated the session. Then I pointed my browser to https://PROXY2/application.
              The session was not replicated. Is this a normal behavior?
              What I thought I did was simulate DNS round-robin. I thought since the cookie
              knows which is the master and slave servers, the proxy can read the cookie, and
              I can continue with the session. Do I have to actually setup the DNS to do this?
              Thanks.
              

    No, that did not simulate a round robin. The change in server invalidates
              (in this case, makes invisible) the cookie.
              In your hosts file, add (with the correct names/addresses)
              192.168.0.17 proxy1
              192.168.0.18 proxy2
              Peace,
              Cameron Purdy
              Tangosol Inc.
              Tangosol Coherence: Clustered Coherent Cache for J2EE
              Information at http://www.tangosol.com/
              "Rudy" <[email protected]> wrote in message
              news:3c152f6d$[email protected]..
              >
              > Hi,
              >
              > I'm in the middle of testing the 5.1sp10 that I set up recently.
              >
              > Say I have PROXY1 and PROXY2, connecting to the object layer.
              > First, I point my browser to https://PROXY1/application. I did some stuff
              there
              > that updated the session. Then I pointed my browser to
              https://PROXY2/application.
              > The session was not replicated. Is this a normal behavior?
              >
              > What I thought I did was simulate DNS round-robin. I thought since the
              cookie
              > knows which is the master and slave servers, the proxy can read the
              cookie, and
              > I can continue with the session. Do I have to actually setup the DNS to
              do this?
              >
              > Thanks.
              

  • OSB proxy hostname and port

    Hi All,
    I have a VIP(load balancer) in front of the machine where the OSB is installed.(The environment is not presently clustered but we have a VIP so we can extend it in future)
    There are few proxy's which the end consumers will be invoking .When we export the wsdl of the proxy , it has the actual IP in the address tag but we want the VIP address(we dont want to change the wsdl manually and pass it to consumer).
    Is there any setting that needs to be done on the OSB/weblogic side for the VIP?
    Thank You.

    The file is available but i dont see <cluster> in the file. I have only one node and is not a cluster installation. Is that the reason?
    Yes, cluster node (<cluster>) will be there only when you have a cluster in your domain. Metalink note 973743.1 is for clustered installations. For customizing host name in WSDL, refer metalink note 1073694.1
    Regards,
    Anuj

  • Web Service Proxy with Dynamic IP and Port

    hi,
    I am currently looking at the Web Service Proxy generation in JDev 11g. I can generate proxies fine, but the proxies are generated with static host and port. I want to substitute the host and port during runtime if required, for instance read the values from a database. I need to do this to avoid compiling the application for every deployment we make dev, test and production. Is there an easy way to set the generated proxy host and port? Are there any examples?
    Thanks in advance!
    Stephen

    Hi,
    Maybe you should have a look on XML Catalogs feature, but I am not sure if JDeveloper support it and how to support it.
    -LJ

  • Running windows 7 firefox refuses to come up, proxy server is refusing connections network adminiastrater says proxy servers are correct and is issue with firefox what do I do/ do

    I start up firefox and it says the proxy server is refusing connection. It is configured to use a proxy server that is refusing connections. To check the proxy servers and ask network administrater to make sure proxy server is correct They say the proxy server is correct and it is a firefox problem. So what to I do now?

    Make sure that the Firefox connection settings are the same as in IE.
    You can find the connection settings in "Tools > Options > Advanced : Network : Connection"
    If you do not need to use a proxy to connect to internet then select No Proxy
    In Firefox 3.6.4 and later the default connection settings have been changed to "Use the system proxy settings".
    You can compare them with the IE settings in the Internet Options (Control Panel).
    Control Panel > Internet Options > Connections: LAN Settings

  • Proxy Servers, Password Resets/Expirations and Password Policies

    Our current configuration has two directory proxy servers and two directory servers, all running DSEE 6.3.1. The LDAP clients point to the proxy servers and the proxy servers point to the directory servers.
    When the LDAP clients user the proxy servers, users aren't notified on password resets or expirations. When I point one of the LDAP clients directly at on the directory servers, bypassing the proxy servers, the expected behavior of being required to change a password on reset or notification of password expiration works fine.
    We would like this to work via the proxy servers as well. Can anyone point me in a direction or two to determine why this isn't working as expected ?
    TIA!

    I opened a service call on this and in speaking with the rep, who was reading the CR mentioned in the first reply, he said it contained a note about the fix being scheduled for release in DSEE 7.x. I'm not sure if it made it into the recently released 7.0 or not.
    A patch released for the 6.3.1 proxy servers on the 21st of December didn't include mention of the CR in the notes, although there was mention of another CR that sounded like it might be related.
    Since it appears the CR was created in late November, I'd be surprised if either the DPS 6.3.1 patch or the 7.0 full release address the CR. In either case, I'm assuming you'll have to wait if you don't have a support contract with Sun that covers DSEE.

  • What is the proxy setup and the port

    What is the proxy setup and the port

    hadi123 wrote:
    What is the proxy setup and the port
    Could you give a little more detail on your question please.  
    If you looking to setup a proxy server and port so your printer can connect the printer to HP ePrint, you will often find this setting in the embedded webserver of a printer.  Open up a web browser, and type http://<address of your printer> where the address of your printer is an IP address or hostname (such as http://192.168.2.2).  From the EWS, there will be a configuration section for HP ePrint, and you should find options for setting the proxy host and port in this area.
    I work for HP.

  • Job server giving error when accessing from other servers and clients

    I am facing one issue at customer site with DS 4.0.
    -     Job Servers are installed on two machines M1 and M2. JS1 on M1 and JS2 on M2.
    -     Both the job servers are in server group
    -     Sitting on machine M1, I am able to run jobs selecting JS1 and JS2 individually
    -     On Machine M2, JS2 is working fine however while running jobs on JS1 it says Job Server is not working
    o     In Designer screen, I can see the job server icon at the bottom without cross mark, which means it is working. However, when I move the cursor on this icon, following text is displayed on the tray
    Job Server: (servername:3500) - notification server error (BODI-1241023)
    I have checked the firewall on both the servers, and port 3500 is open.
    Any idea what the problem can be?

    You may also search for Access help at http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US

  • Apple configurator & Proxy servers

    We have an iMac that is managing 16 iPads via Apple Configurator, we are also running a service on a Server 2008 called AirCatch, this allows the iPads to send files to selected folders on the server via an internal email. This all works well when the proxy server is disabled but when enabled the proxy blocks CardDAV from displaying the folders as contacts.
    I have gone in to the Global HTTP Proxy profile and entered the proxy server and port and ticked the 'Allow bypassing proxy to access captive networks' hoping this would allow local traffic to bypass the proxy.
    This also fails to work and am now stumped as to what to try next, does anyone have any suggestions please,
    Thanks

    Hi.  Didi you ever find an answer to this question?
    I am configuring a suite of iPads 2s. iOS 8.2.   I can configure in the prepare screen and assign profiles but they do not appear in the Supervise tab (so cannot refresh.  They also ignore the option to display the device name on the Lock Sreen.
    I would be grateful for any help or advice.

  • Problem with Blueyonder servers and Mac Mail

    I have experienced considerable difficulty in setting up my Blueyonder email account on my new MacBook Air running Mac Mail in Yosemite. After spending over eleven hours with very helpful second line technical support staff at Apple and Virgin Media (both companies wouldn't accept responsibility for the problem unsurprisingly!) I have been forced to the conclusion that I simply can't use Mac Mail and my Blueyonder account.
    The problem was fixed by ditching Mac Mail in favour of a new Mail Client as the prospect of changing my email account (with all the consequent notifications to people/organisations set up to use my Blueyonder address) was too depressing!
    I firstly used 'Inky' which is free and really easy to set up as it finds the servers and ports for you and (only because I didn't like Inky's layout) I bought 'Postbox' (available on a 30 day free trial) which looks almost identical to Mac Mail, finds the servers and ports for you and has a number of really useful additional features that I'm currently exploring.
    Has anybody else experienced this incompatibility problem and, if so, was there a fix I missed?

    I have the same problem, basically Mail sometimes works but then will stop and the only way to get it working again is to completely delete the mail account (off the mac) and start again.
    Almost at the point now of trying a new mail client as this is really annoying!

  • Running multiple proxy servers

     

              Hi,
              I am aware that I cannot use a product like Central Dispatch to balance load
              between multiple WLS instances. I understand that I should use WLS as a
              proxy in front of a cluster of WLS instances.
              If I deploy mulitple WLS proxies to refer to a singel cluster of WLS, could I use
              the Global Dispatch product from Resonate to 1) ensure that load is balanced
              appropriately across the different proxies and 2) forward requests to a "holding"
              pen if
              the cluster is overloaded.
              If I use Round-robin DNS in front of the 2 proxies, then some users would
              need to explicitly point to one, or the other proxy. Is this correct?
              If I use Round-robin DNS in front of the 2 proxies, then I cannot control the
              number of users which end up on each of the 2 proxies. Is this correct?
              Thanks,
              Rob
              Prasad Peddada wrote:
              > As long as the proxy servers are configured the same way it is possible.
              >
              > Regards
              > Prasad
              >
              > Matias Pelenur wrote:
              >
              > > Hi,
              > > In the weblogic documentation it says that "When using in-memory state
              > > replication, your WebLogic Cluster must live behind one -->or more<-- proxy
              > > servers." What needs to be done in weblogic.properties, etc, if we want to
              > > have two proxy servers instead of just one? The scenario I'm thinking of is
              > > two proxy servers, with DNS round-robin so that incoming requests will come
              > > to either of the proxy servers, and then both proxy servers redirecting
              > > requests to a series of weblogic servers running on a cluster. So both proxy
              > > servers would need to know where to redirect a particular request, even if
              > > the other proxy server handled the request first.... Is this possible?
              > >
              > > I hope this is clear enough.
              > >
              > > Thanks,
              > > Matias
              

Maybe you are looking for

  • Jabber For Windows deskphone control

    All, This is my last stop before getting with TAC and I just wanted to see if anyone has had and resolved this issue: Jabber for Windows (all versions up to 9.1) Desk phone control most times takes several attempts to become active and working. If th

  • How do I move selected selections from one computer to another?

    I've spent the last couple of days trying to figure out how to transfer some of my music from my MacBook Pro to my new iMac. I know the answer must be simple, but I'm just not understanding. I have sharing on, and am able to listen to the music from

  • To create a purchse request

    hiiii experts,   if iam creating a purchase request number what are the mandatory fields we have to enter the data. Advance thanks, jeelanibasha

  • Opening signed documents crashes Acrobat 9.4.4.

    This issue happens with Actobat 9.4.3 and 9.4.4: With one or more PDF files already open (could be a published document simply open for review), open a document that includes a digital signature. The file with the digital signiture opens, but then so

  • Why is the dock so ugly and can I change its appearance?

    Can I change the look of the dock in mountain lion?