Random workstation proxy issue

Haven't been able to figure this one out. Sometimes our workstation will stop accessing the internet. You can ping, and do all of that just fine, but when the proxy address and port are enable in IE8/Firefox, it just sits there loading the page, but never does. If you disable the proxy, then it will begin loading pages so it's proxy settings specific.
This is only for the problem machines. There's 1100+ other stations that use the proxy fine.

Originally Posted by phxazcraig
In article <[email protected]>, Seth turner
04 wrote:
> Well I gave the workstation a different IP and it started working fine.
> Sounds like you were right on the duplicate IP thing.
So that w/s was the only one with an issue?
>
> I checked the nwconfig and it says it has Border Manager 3.8.4.
>
Check tip #1 at the URL below.
Craig Johnson
Novell Support Connection SysOp
*** For a current patch list, tips, handy files and books on
BorderManager, go to Craig Johnson Consulting - BorderManager, NetWare, and More ***
Just to update....our Border Manager server went down last Monday and ever since then we've had this issue start happening again, but a lot worse. Earlier today, one of the computers labs had ten systems start doing this all at the same time.
We just applied the proxy.cfg settings, and unloaded and loaded the proxy but that had no effect. We are going to run the tuneup.ncf file later on and see if that has any effect.

Similar Messages

  • Web Service authentication and PROXY Issue

    HI All,
    Recently I developed an application in Flex 2 which uses
    webservices to access remote data.One more point to be noted, that
    these webservices are secured( i.e they need username and password
    to access)
    I got a production server ( say
    myProduction server) and all my webservices are deployed on
    it. We have a SAP portal running on this server. I have created a
    PAR file of my applications .SWF file and hosted it on the portal.
    When I run my application from myProduction, it runs fine, no
    issues with it.
    Now, I have a proxy server ( say
    myProxy server), which is used to make my application
    available on the internet.
    This proxy redirects all the requests to myProduction server.
    When I try to run my application from myProxy Server, I am
    getting the following error:
    [RPC Fault faultString="Security error accessing url"
    faultCode=
    Channel.Security.Error"
    faultDetail="Unable to load WSDL". If currently online,
    please verify the URI and/or format of the WSDL (
    http://myProduction:50000/WS_Resource/Config1?wsdl&style=rpc_enc)"
    at mx.rpc.soap::WSDLParser/::dispatchFault()
    at mx.rpc.soap::WSDLParser/
    http://www.adobe.com/2006/flex/mx/internal::httpFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/securityErrorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
    Do I need any configuration files to be maintained? How do I
    resolve this proxy issue??
    myProxy server is not able to load the WSDL from
    myProduction.I am not usinfgFlex Data Services. I am directly
    accessing the services.
    If anyone knows about this issue please help me. Any help
    would be greatly appreciated.
    This issues has been unresolved since 15 days now.
    Thanks in advance

    Hi,
    I am not sure if what I am suggesting may be the source for
    the problem, but it could be that you will need a
    crossdomain.xml file deployed on your production server, so
    that it can accept the requests from the Portal. Also, I guess you
    will be using a
    flex-config.xml or
    services-config.xml. Just make sure that all server paths
    have been properly mapped to the values entered in the destination
    attributes of the WebService tags.
    I hope that helps.

  • IWork '09 startup hang...proxy issue?

    iWork hangs at startup anytime that I launch the applications when I'm behind a firewall. I can reproduce this problem very easily by successfully starting up the application on home home network and encountering problems anytime I launch the applications under a VPN connection or at the office.
    Is iWork trying to check in with iwork.com at launch? If so, is there any way to disable this behavior or transparently handle the proxy issue without my having to edit preferences every time I switch network settings?
    Thanks for reading this!
    -Jamie

    I was able to eliminate the iWork '09 startup hang by properly configuring my global HTTP proxy. I ran "netstat -an" from the console during the hang and found that iWork was attempting to connect to one of the iWork.com servers at startup.
    Here's what I saw:
    hostname:~ username$ netstat -an
    Active Internet connections (including servers)
    Proto Recv-Q Send-Q Local Address Foreign Address (state)
    tcp4 0 0 192.168.0.194.52595 17.250.248.128.80 SYN_SENT
    tcp4 0 0 192.168.0.194.52594 17.250.248.105.443 SYN_SENT

  • Openbox and proxy issues[Solved]

    I am using openbox as my wm. I am facing a proxy issue.
    I have added two functions in my .bashrc (based on https://wiki.archlinux.org/index.php/Proxy_settings):
    function proxyon(){
    echo -n "username:"
    read -e username
    echo -n "password:"
    read -es password
    export http_proxy="http://$username:$password@proxyserver:8080/"
    export ftp_proxy="http://$username:$password@proxyserver:8080/"
    echo -e "\nProxy environment variable set."
    function proxyoff(){
    unset HTTP_PROXY
    unset http_proxy
    unset FTP_PROXY
    unset ftp_proxy
    echo -e "\nProxy environment variable removed."
    but after login when i run the command 'proxyon' and then launch firefox from openbox menu, firefox doesn't pick up the env variables but if I launch firefox from the same shell where i run 'proxyon' command firefox picks up the variables perfectly.
    I have tried adding:
    export http_proxy="http://$username:$password@proxyserver:8080/"
    export ftp_proxy="http://$username:$password@proxyserver:8080/"
    to .bashrc directly still launching firefox from openbox menu doesn't pickup proxy settings.
    Also I want to know how do I add proxy exception for a perticular url.
    Last edited by jaideep_jdof (2011-01-31 11:00:05)

    Try adding them to .bash_profile. I think .bashrc is only read when launching a shell.
    Edit .bash_profile, then log out and log back in to test it.
    If nothing else works, you can write your own wrapper script for Firefox and launch it via the script in Openbox, e.g.
    #!/bin/bash
    export http_proxy="http://$username:$password@proxyserver:8080/"
    export ftp_proxy="http://$username:$password@proxyserver:8080/"
    firefox "$@"
    It might not be the most elegant solution, but it's the first thing that came to mind.

  • Random shut down issue

    So I have a Macbook 13" 1.83 Ghz Core Duo, running 10.6.2 with 2gb of (user installed) RAM. Minus a defective battery issue last year (the battery swelled to the point where my trackpad wouldn't work) which apple replaced for free out of warrantee, I have had no issues.
    Out of the blue, I've been experiencing random shut down issues of sorts. If I have the computer plugged in it works fine. Sometimes though, the computer will randomly shut down after being unplugged. I tried reseting the SMU but it didn't seem to do anything.
    Another odd thing - I calibrated the battery with the computer on an incline on my desk to keep it cool in case it was an issue of over heating. The computer charged fully, and then drained it's charge to 0% and went to sleep as it should.
    But once I charged it up about halfway again, unplugged it, and put it on my lap, it shut off within 2 minutes. I'm well out of my warrantee so any user suggested diagnostic tips would be appreciated! I've included the battery info for good measure (btw the battery is not even a year old).
    Battery/power info:
    Model Information:
    Manufacturer: DP
    Device name: ASMB016
    Pack Lot Code: 0002
    PCB Lot Code: 0000
    Firmware Version: 0110
    Hardware Revision: 0500
    Cell Revision: 0200
    Charge Information:
    Charge remaining (mAh): 3610
    Fully charged: No
    Charging: Yes
    Full charge capacity (mAh): 4310
    Health Information:
    Cycle count: 247
    Condition: Normal
    Battery Installed: Yes
    Amperage (mA): 783
    Voltage (mV): 12406
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 4
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 4
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: No
    Current Power Source: Yes
    Display Sleep Uses Dim: No
    Battery Power:
    System Sleep Timer (Minutes): 6
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 5
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Display Sleep Uses Dim: No
    Reduce Brightness: Yes
    Hardware Configuration:
    UPS Installed: No
    AC Charger Information:
    Connected: Yes
    ID: 0x0100
    Wattage (W): 60
    Revision: 0x0000
    Family: 0x00ba
    Serial Number: 0x002afaac
    Charging: Yes

    Hmm, your battery is fairly healthy.
    Is your fan running?
    You can get the iStat Pro widget here:
    http://www.apple.com/downloads/dashboard/status/istatpro.html
    The iStat widget measures various parts of your computer, including the fan speed.
    ~Lyssa

  • Cisco ASA 5505 Ipsec VPN and random connection dropping issues.

    Hello,
    We are currently having issues with a ASA 5505 Ipsec VPN. It was configured about 7-8 months ago and has been running very well..up until the last few weeks.  For some reason, the VPN tends to randomly disconnect any user clients connected a lot.  Furthermore, sometimes it actually connects; however does not put us on the local network for some reason and unable to browse file server.  We have tried rebooting the ASA a few times and our ISP Time Warner informed us there are no signs of packet loss but still unable to pinpoint the problem.  Sometimes users close out of VPN client completely, reopen several times and then it works.  However it's never really consistent enough and hasn't been the last few weeks.  No configuration changes have been made to ASA at all.  Furthermore, the Cisco Ipsec VPN client version is: 5.0.70
    Directly below is our current running config (modded for public).  Any help or ideas would be greatly appreciated.  Otherwise, if everything looks good...then I will defer back to our ISP Time Warner:
    : Saved
    ASA Version 8.4(2)
    hostname domainasa
    domain-name adomain.local
    enable password cTfsR84pqF5Xohw. encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.2.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address 205.101.1.240 255.255.255.248
    ftp mode passive
    clock timezone EST -5
    clock summer-time EDT recurring
    dns domain-lookup inside
    dns domain-lookup outside
    dns server-group DefaultDNS
    name-server 192.168.2.60
    domain-name adomain.local
    same-security-traffic permit intra-interface
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object network SBS_2011
    host 192.168.2.60
    object network NETWORK_OBJ_192.168.2.0_24
    subnet 192.168.2.0 255.255.255.0
    object network NETWORK_OBJ_192.168.5.192_
    27
    subnet 192.168.5.192 255.255.255.224
    object network Https_Access
    host 192.168.2.90
    description Spam Hero
    object-group network DM_INLINE_NETWORK_1
    network-object object SPAM1
    network-object object SPAM2
    network-object object SPAM3
    network-object object SPAM4
    network-object object SPAM5
    network-object object SPAM6
    network-object object SPAM7
    network-object object SPAM8
    object-group service RDP tcp
    description Microsoft RDP
    port-object eq 3389
    access-list outside_access_in extended permit tcp object-group DM_INLINE_NETWORK_1 object SBS_2011 eq smtp
    access-list outside_access_in extended permit tcp any object SBS_2011 eq https
    access-list outside_access_in extended permit icmp any interface outside
    access-list outside_access_in remark External RDP Access
    access-list outside_access_in extended permit tcp any object SBS_2011 object-group RDP
    access-list domain_splitTunnelAcl standard permit 192.168.2.0 255.255.255.0
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool test 192.168.10.1-192.168.10.5 mask 255.255.255.0
    ip local pool VPN_Users 192.168.5.194-192.168.5.22
    0 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    nat (inside,outside) source static NETWORK_OBJ_192.168.2.0_24
    NETWORK_OBJ_192.168.2.0_24
    destination static NETWORK_OBJ_192.168.5.192_
    27 NETWORK_OBJ_192.168.5.192_
    27 no-proxy-arp route-lookup
    object network obj_any
    nat (inside,outside) dynamic interface
    object network SBS_2011
    nat (inside,outside) static interface service tcp smtp smtp
    object network Https_Access
    nat (inside,outside) static interface service tcp https https
    nat (inside,outside) after-auto source dynamic any interface
    access-group outside_access_in in interface outside
    route outside 0.0.0.0 0.0.0.0 205.101.1.239 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-reco
    rd DfltAccessPolicy
    user-identity default-domain LOCAL
    http server enable
    http 192.168.2.0 255.255.255.0 inside
    http 192.168.1.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    crypto ipsec ikev1 transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev1 transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto ikev1 enable outside
    crypto ikev1 policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet 192.168.2.0 255.255.255.0 inside
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd address 192.168.2.160-192.168.2.19
    9 inside
    dhcpd dns 192.168.2.60 24.29.99.36 interface inside
    dhcpd wins 192.168.2.60 24.29.99.36 interface inside
    dhcpd domain adomain interface inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy domain internal
    group-policy domain attributes
    wins-server value 192.168.2.60
    dns-server value 192.168.2.60
    vpn-tunnel-protocol ikev1
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value domain_splitTunnelAcl
    default-domain value adomain.local
    username ben password zWCAaitV3CB.GA87 encrypted privilege 0
    username ben attributes
    vpn-group-policy domain
    username sdomain password FATqd4I1ZoqyQ/MN encrypted
    username sdomain attributes
    vpn-group-policy domain
    username adomain password V5.hvhZU4S8NwGg/ encrypted
    username adomain attributes
    vpn-group-policy domain
    service-type admin
    username jdomain password uODal3Mlensb8d.t encrypted privilege 0
    username jdomain attributes
    vpn-group-policy domain
    service-type admin
    tunnel-group domain type remote-access
    tunnel-group domain general-attributes
    address-pool VPN_Users
    default-group-policy domain
    tunnel-group domain ipsec-attributes
    ikev1 pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny 
      inspect sunrpc
      inspect xdmcp
      inspect sip 
      inspect netbios
      inspect tftp
      inspect ip-options
      inspect icmp
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:e2466a5b754
    eebcdb0cef
    f051bef91d
    9
    : end
    no asdm history enable
    Thanks again

    Hello Belnet,
    What do the logs show from the ASA.
    Can you post them ??
    Any other question..Sure..Just remember to rate all of the community answers.
    Julio

  • 2012 SP3 Client - randomly expands proxy user folder list

    Since Client 2012SP3, when going to a proxy user we noticed that the proxy mailbox randomly expands the folder list.
    This is sometimes annoying, cause you have to close several folders every time.
    Going back to the home mailbox we also noticed the expanding of the folder list. Going back to the same or another mailbox, the folder structure is wide open again.
    Sometimes only one folder expands, sometimes several, sometimes all.
    This happens to all clients and all proxy mailboxes. (users, resources).
    Workaround: Rolling back to 2012SP2 the expanding problem has gone. The folder structure is just so as we left it behind last time. I can switch to several proxies, back to my mailbox, back to another proxy - no problem at all.
    Anyone noticed this? Is any FTF SP3 client out there?
    Client OS is Win7 - 64bit.

    lis,
    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://support.novell.com 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 Product Support Forums Team
    http://forums.novell.com/

  • Random Mozilla Proxy Authentication (Mozilla Firefox 30.0)

    Hi All,
    We are experiencing an issue with random intermittent Mozilla Proxy Authentication prompts. We are running Mozilla firefox in a Windows domain and using a clearswift proxy server. I've tried a large number of configuration changes with Firefox but still get these annoying prompts. This obviously looks bad to our user base. We do not suffer the same issues with IE11 or Google Chrome.
    Please can anyone help before we look to remove this software and go for an alternative browser?
    Many Thanks,
    Kirk

    I've called in the big guys in to help you.
    What is your current Firefox and computer system?
    Have you had any other issues?
    While you are waiting, please check these out;
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Some problems occurs when your Internet security program was set
    to trust the previous version of Firefox, but no longer recognizes your
    updated version as trusted. Now how to fix the problem: To allow
    Firefox to connect to the Internet again;
    * Make sure your Internet security software is up-to-date (i.e. you are running the latest version).
    * Remove Firefox from your program's list of trusted or recognized programs. For detailed instructions, see
    '''[https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet.]''' {web link}
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • MSI X79A GD-45 - Random Locking / Rebooting Issues

    Hi,
    I recently upgraded my old P45 chipset Q6600 16GB Hyper-V home lab server, with a nice X79A GD-45 Board, with an i3820 & 64GB of Ram.
    I've installed the system with Windows 2012, however I can't seem to get it stable.
    I have a basic AMD 4550 graphics card in the server, and Dual Port HP360T nic, 2 x LSI Raid Controllers, I have tried removing all of this, but still get the same issues.
    I have the latest BIOS updates from the MSI website.
    I found that switching the ACPI power settings to C6 in the BIOS improved the stability but it hasn't resolved the problem completely.
    I have my memory running @ 1333Mhz, as I've seen some people mention that trying to run 8x8GB @ 1600Mhz can cause problems, but that makes no difference.
    I've tried running with 32GB of Ram rather than 64GB but same issues.
    The strange thing is the PC doesn't blue screen, it sort of hangs, i.e. Windows 2012 goes un responsive, however I can still move the mouse cursor around, just nothing works, other times it just reboot's itself, and I get unexpected shutdown messages in the event logs.
    Do I have a dogdy m/board, or is there some other secret to getting the X79 boards stable, my old Q6600 on intel P45 chipset was like a rock, longest uptime was over 250 days without a reboot..
    Thanks,
    Andy.

    Hi,
    Just to let you all know that i think I had two issues in the end, the MSI commander software causing random reboots of Windows 2012, and also an old casecom 500w PSU that was causing the strange partial hangs.
    Removing MSI commander software and setting FAN control directly in BIOS stopped the random reboots, however I was still getting problems with partial crashes for example Hyper-V VM's still running but windows desktop would go unresponsive etc.. and also issues with occasional HD corruption.
    Since replacing the PSU the partial lockups / crashing have gone away, and I've had no more instances of corruption, server stable now for 80hrs+ without a reboot or weird partial hang :-)
    In addition moving to a new 80+ platinum PSU has seen the power draw to run the system drop from 38-40% of the capacity of my UPS down to 17-18% so I've halved the amount of electricity that my server uses when on 24/7, from about 200-250w down to less than 100w, just the saving of approx 2.4Kwh a day (equates to about £0.30 a day) so across the year the PSU will have paid for itself !

  • Java won't work - possible proxy issues?

    I was informed that one of our computers suddenly (from what I was told about 2 months ago) developed problems with Java. Said computer is on our dirty internet connection, so it's not readily checked or even updated. My colleagues looked at it, and evertually escalated the issue to me, since they couldn't figure it out. One specific website needs Java for some examinations, and it turned out Java just would present an error to the site.
    After spending an afternoon at the location, testing with the Java verification applet on the Java website, and finding myself unable to correct the problem, I build myself a small test machine to see if I could recreate the problem on something local. Turns out, I can, which makes testing a lot easier. Do note: We want another site (which requires a heap of logins) to work, so I'm using the Java verification applet to get me a quicker and easier way to verify if Java works.
    So, Got a clean install of Windows XP SP3, and updated to IE8. The machine is connected to the Internet through a proxy server based on FreeProxy which listens to port 2244 (note: this proxy has had NO changes in the aforementioned 2 months that I know of, or can trace within the proxy configuration). I can browse without any problems. Installed Java (7r51) on the system, and tried to verify the Java version.
    Unable to verify if Java is installed and activated on your browser.
    Ran all the Windows Updates (for XP, IE, .NET whatever version, and whatever more was available) Microsoft offers, just to make sure it's not in any of those. Still no go. Installed Google Chrome and Firefox to exclude the browser as a source of problems. None of the three browsers works with the Java verification applet, all resulting in the same message as stated above. Verified that Java is available in the browsers, and it is shown as available and active.
    Deinstalled Java, reinstalled. Used JavaRA to remove and then reinstall. Pulled the security down to medium. Wiped the local cache files. There is no virusscanner installed, so that can't be it. Disabled the Windows Firewall to exclude that as a cause. Used a second machine with Windows 7 just to exclude the OS as a culprit. Verified the 'Enable Java in web browser' setting in the Java control applet. Played with the proxy settings and the security settings in IE and under the Java control panel. Wiped Java out, manually ran through the registry to kill references, and wiped all the Sun folders from all profiles, aswell as the Java install folder before reinstalling. Installed Java 6r43 just to make sure. Nothing helped.. The error keeps coming back, and the Java verification keeps failing.
    The Java console which can help troubleshoot, seems to open while the Java icon shows up in the systemtray, but it quite rapidly (30 or 45 seconds) closes again, taking the Java console along with it, thus not giving me any logging to further see what's wrong here. So it seems Java is working, but runs into some problems along the way. About the only quick problems I spotted when I did manage to grab a copy of the log:
    network: Cache entry not found [url:http://www.java.com/en/download/JavaDetection_applet.jnlp, version: null]
    and
    java.io.IOException: Server returned HTTP response code: 403 for URL: https://java.com/en/download/JavaDetection_applet.jnlp
    My colleague noted that it did work on the other proxied network through the same proxy (just that that proxy is on a different NIC and listens to port 8080). We tried changing the proxy port for the network to 8080 on the actual PC on location, and found the problem remained. Just to make sure it worked on the other network, I reattached the PC to the other network, altered the proxy settings both under the IE options and Java control panel applet, only to see it exhibit the exact same behavior. So I'm dismissing my colleague, and assuming it has never really worked.
    Most of the internet solutions I can find refer to changing the code of the applet, but since I'm using a sanctioned Oracle applet, and Oracle software, I suppose I can assume it's been programmed well, and tested properly. Besides that, as a user of Java I have no direct influence on the actual code being used, so all those solutions aren't really helping me any.
    So I turn to this forum to see if anyone wants to have a guess at what is wrong here, and what I can do to either
    1) Solve the issue
    2) Provide some means to keep the Java console open or log to a file
    3) Think of anything I haven't tried yet, that may have a positive impact on the issue.
    Thanks in advance for your time, effort and help. Know that every response is already highly appreciated.

    Thanks for the response...
    I had a look about more logging on the proxy, and although http://www.handcraftedsoftware.org/index.php?page=faq&op=read&id=25 hints at a different program I might need to use (which has been removed of what I can see), the link http://www.handcraftedsoftware.org/index.php?page=faq&op=read&id=54 hints at there being some native logging I can use to verify what happens.
    As such I located the log settings, and fired up the test system to see if I could determine some more from the logs (and exactly what those logs would entail). The log does provide some insight in what it pulls from the Java website, but doesn't show much in regards to what is going wrong:
    Website:'www.java.com' URL:'/' From Client: 538 bytes To Client: 254 bytes
    Website:'www.java.com' URL:'/nl/' From Client: 586 bytes To Client: 2514 bytes
    Website:'www.java.com' URL:'/css/screen.css' From Client: 508 bytes To Client: 208 bytes
    Website:'www.java.com' URL:'/css/print.css' From Client: 506 bytes To Client: 205 bytes
    Website:'www.java.com' URL:'/css/ie.css' From Client: 502 bytes To Client: 207 bytes
    Website:'www.java.com' URL:'/js/popUp.js' From Client: 503 bytes To Client: 152 bytes
    Website:'www.java.com' URL:'/js/s_code_remote.js' From Client: 511 bytes To Client: 152 bytes
    Website:'www.java.com' URL:'/images/jv0_search_btn.gif' From Client: 516 bytes To Client: 182 bytes
    Website:'www.java.com' URL:'/js/global.js' From Client: 504 bytes To Client: 152 bytes
    Website:'www.java.com' URL:'/js/subtlePager.js' From Client: 510 bytes To Client: 152 bytes
    Website:'www.java.com' URL:'/images/jv0h.jpg' From Client: 509 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/images/jv0h_greenfoot.jpg' From Client: 518 bytes To Client: 184 bytes
    Website:'www.java.com' URL:'/images/jv0h_academy.jpg' From Client: 516 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/images/jv0h_java.jpg' From Client: 513 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/im/a.gif' From Client: 499 bytes To Client: 182 bytes
    Website:'www.java.com' URL:'/images/jv0h_alice.jpg' From Client: 514 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/images/jv0h_javamag.jpg' From Client: 516 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/images/jv0h_bluej.jpg' From Client: 514 bytes To Client: 185 bytes
    Website:'www.java.com' URL:'/images/jv0dl_a.png' From Client: 511 bytes To Client: 184 bytes
    Website:'www.java.com' URL:'/images/jv0_oracle.gif' From Client: 513 bytes To Client: 183 bytes
    Website:'www.java.com' URL:'/js/metrics_group1.js' From Client: 514 bytes To Client: 153 bytes
    Website:'oracle.112.2o7.net' URL:'/b/ss/sunjava/1/H.19.4/s98129805908124' From Client: 872 bytes To Client: 663 bytes
    Website:'www.java.com' URL:'/nl/download/installed.jsp' From Client: 881 bytes To Client: 2961 bytes
    Website:'www.java.com' URL:'/im/ic_tipblue20x20.png' From Client: 776 bytes To Client: 183 bytes
    Website:'www.java.com' URL:'/images/jv0_sidebar_bg.gif' From Client: 779 bytes To Client: 183 bytes
    Website:'www.java.com' URL:'/images/jv0_sidebar_subhead.gif' From Client: 784 bytes To Client: 183 bytes
    Website:'oracle.112.2o7.net' URL:'/b/ss/sunjava/1/H.19.4/s97891718594365' From Client: 1156 bytes To Client: 663 bytes
    Website:'www.java.com' URL:'/nl/download/installed.jsp' From Client: 989 bytes To Client: 3657 bytes
    Website:'oracle.112.2o7.net' URL:'/b/ss/sunjava/1/H.19.4/s98995092053347' From Client: 1247 bytes To Client: 662 bytes
    Website:'www.java.com' URL:'/nl/download/installed.jsp' From Client: 947 bytes To Client: 2866 bytes
    Website:'oracle.112.2o7.net' URL:'/b/ss/sunjava/1/H.19.4/s96218056013586' From Client: 1088 bytes To Client: 663 bytes
    At around that same time I got the following notice in the connection log, which does seem to hint at a problem somewhere:
    #11004: WSANO_DATA: Valid name, no data record of requested type.  H:02424 F:'HCSNTSocket_ResolveHostName' A:'gethostbyname' T:'Return=11004.'
    Other then that I have not received any other logs (despite me enabling all of them, or any other notice that may indicate the cause of the problem. I will be leaving the settings in the proxy in regards of logging, just to see if any other logs are going to crop up.
    I did post this to the Proxy-forum too to see if someone could help in determining what exactly the log is saying.

  • Bizarre & Random Dashboards Display Issues/Errors

    Hello,
    I am on BI 4.1 SP04 and these dashboards were developed using an equivalent level on the client tool. (4.1 SP04)
    Sometimes we get very strange and often random display issues with our dashboards. I have attached screen shots for examples. Sometime we are missing data points from rendering on the charts, other times a line chart will extend into a bar chart.  Has anyone experienced this or have any idea what could cause this? It is very frustrating...
    Thanks for looking,
    Gary
    Missing data points on yellow line, yet line rendering with proper data (other wise would have 0's in places, etc)
    Green line missing dot on last end point
    In this example there are no dots on the yellow line or green line
    In this example the blue line has turned into massive columns extending across the charts

    This patch should resolve the issue in the last screenshot. I still face the other issues after upgrading to SP3 Patch 4. The dots in line chart take some time to appear. Also, if we use dynamic visibility, the components taking considerable time to appear sometimes. I hope this will also be fixed in later patches. Please share your experience too after applying the patch.

  • Send a request using Http(s)URLConnection through proxy issue

    Hi all,
    Here are system environment,
    OS: Ubuntu 12.04
    Java version: 1.6.0_27
    OpenJDK Runtime Environment (IcedTea6 1.12.4) (6b27-1.12.4-1ubuntu1)
    OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode)
    There are 3 roles introduction as below:
    1. A https client: It can not direct connect to https server. Because it is restricted in a enclosed network environment just like intranet(ip is 10.100.11.8).The only way out is proxy server.
    2. A proxy server: Locate between https client and https server. It have two network interfaces(ip are 10.100.11.10 and 192.168.11.10)
    3. A https server: It is on extranet(ip is 192.168.11.123) and it also cannot connect to https client directly.
    The other network environment setup is: There is no DNS server on https client network environment.
    The following is part of https client code section:
            public static void main(String args[]){
               String proxyIp ="10.100.11.10";// proxy server IP
               testConn(proxyIp);
            private static void testConn(String proxyIp){
                    String httpsURL="https://192.168.11.123:8443/httpsServices";
                    setSSLContext();// I thought this is not root cause so I do not post on
                    try{
                      InetAddress intIPAdd= InetAddress.getByAddress(convStrToByte(proxyIp));
                      InetSocketAddress proxyInetAddr = new InetSocketAddress(intIPAdd,80);
                      Proxy proxy = new Proxy(Proxy.Type.HTTP, proxyInetAddr);
                      URL httpsUrl = new URL(httpsURL);
                      HttpsURLConnection httpsCon = (HttpsURLConnection) httpsUrl.openConnection(proxy);
                      httpsCon.setDoOutput(true);
                      httpsCon.setDoInput(true);
                      httpsCon.setRequestMethod("POST");
                      httpsCon.setDefaultUseCaches(true);   
                      httpsCon.setUseCaches(true);
                      System.out.println("Get OutPutStream start!");
                      OutputStream out = httpsCon.getOutputStream(); // or httpsCon.connect();
                      System.out.println("Get OutPutStream done!");
                      OutputStreamWriter owriter = new OutputStreamWriter(out);
                      owriter.write("<request>test</request>");
                      owriter.flush();
                      owriter.close();
            private static byte[]  convStrToByte(String ip){
            String str[] = ip.split("\\.");
            byte[] ipAry = new byte[str.length];
              for(int i=0;i<str.length;i++){
                ipAry[i] = (byte) Integer.parseInt(str, 10);
    return ipAry;
    All right, my problem is, while print out "Get OutPutStream start" untill "Get OutPutStream done", it always takes about 5 secs.
    No Error or exception. It was just hanging there approx 5 secs.
    I observed the packets flow with wireshark.
    Found out that hang time is to send a multicast to ask MDNS the proxy IP. No one reply this message. It would ask 3 times and then send request to proxy.
    About https trust and authentication issue. I use *All Trust* solution. because https server use self-signed CA by myself.
    If need, I would update this post with code section of setSSLContext() part.
    I wondering to know that I create proxy object using *InetSocketAddress(InetAddress addr, int port)*, or I create proxy ip instance using *public static InetAddress getByAddress(byte[] addr)* why it would ask to MDNS for proxy ip?
    On normal concept, I give an ip address and it do not need to resolve this ip for domain name.
    Check InetAddress getByAddress(byte[] addr) of JAVA SE6 API:
    It says: 'This method doesn't block, i.e. no reverse name service lookup is performed.'
    What can I do to let https client don't need to ask MDNS?
    Thank you guys so much.
    Edited by: 1002346 on 2013/4/29 上午 12:05                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Java does reverse DNS lookups for security reasons. Not sure you can disable it but if you can it will be described on the Networking Properties page.

  • List of issues: random reboots, sound issue, battery reading

    Hey all,
    I am having the following issues with my Macbook (late 2007, running on Snow Leopard).
    1) The battery power indicator isn't giving a correct read. It remains stuck at 95% or 99% most of the time while the led on the battery cord is burning bright green for hours...
    When I asked my local reseller if this could be related to my new bought battery, he checked the battery (which is under warranty) and informed that the battery was ok so he feared it would a more expensive issue inside my Macbook.
    2)When I turn on my Macbook, the sound isn't working althought the soundbar is more then halfway open. When I increase or decrease the sound with one tap, it suddenly kicks in and works fine untill I turn the device off and o. Then it's the same old story all over again.
    3) My Macbook randomly reboots. Without any warning (atleast not visible to me) you suddenly the distinct hardware sound of a reboot, the grey load screen with the Apple logo appears and only a few seconds latter (it's much faster then a normal reboot/restart) I am at the inlog screen and have to log in again.
    I am not sure but, it's possible that issue 2 & 3 showed up after I installed Snow Leopard. Don't know if it's relevant or not.
    I am praying for this to be a software related issue, but I have a nasty gutt feeling that is going to be a nasty hardware issues
    Any thoughts, idea's or wonder solutions?

    I'll reply using the numbers aswell:
    1) But is it also normal for the Macbook to keep saying that the (3months old battery) is at 99% even when it has been fully loaded in advance and has been connected for 12 hours to the powergrid?
    2) I'll try to clearify:
    You turn on the Macbook, according to the settings the sound is on yet programs like Adium and Mail don't produce sounds when it should be making a sound warning.
    When you use the sound keys (either to increase or decrease the sound), the sound kicks in again.
    Each time the device is turned back on this issue presents itself.
    The device also doesn't seem to save the sound setting on which it is turned off, it simply resets to a setting at about 75 % of the volumebar.
    3)I have been thinking that myself and have been expermenting with using the visitors account from time to time. However the reboots have been rare up till know (only 3 , max 4 times as far as I am aware) and only once (last night) when I was actually activly using the device.
    This makes it rather annoying to downgrade or to switch main accounts permenantly for diagnostic purposes only. (I am not that familar with mac os to start doing this like downgrades at all to be honest)
    Of the reboots I am 99.9% sure that they started after my upgrade to Snow Leopard.

  • Random hard freezing issues, Windows 8 64-bit on Macbook Pro (Late 2008)

    Hi,
    I recently upgraded to OS X 10.8.3 and got a hold on copy of Windows 8 64-bit. As I'm running on my old trustworthy 15 inch Macbook Pro (Late 2008), my hardware is officially unsupported. Over the years I've had XP, Vista, Win7 32-bit and 64-bit running running on the same machine, and thought I'd give Win8 a chance.
    To be able to install Win8 on my unsupported hardware, I tricked the Bootcamp assistant that I was going to install Win7, and after the reboot and start of the Win7 installation, I exited the installer, rebooted, switched DVD to Win8 and did the installation from there. So far so good. For installing the Bootcamp drivers, I followed the instructions in https://discussions.apple.com/thread/4894920?tstart=90.
    Now, the machine runs just fine with Windows 8, and I've installed some basic third party applications (Firefox, Spotify, Steam). However, I get completely random hard freezes on the machine (sound looping, no other activity whatsoever) during normal use. These can occur 20 minutes after start, or 3-4 hours in. The freezing behavior is very much similar to how my model can behave under overheating conditions (which mostly have occured in past Windows versions while gaming), however overheating doesn't seem to be the issue here (based on simple palpation ).
    Have anyone experienced a similar problem, or know something about it? My current idea is that some weird things are going on with the Bootcamp drivers, so unless anyone comes up with a suggestion I might try doing a rollback to the point before I installed the drivers to see what I can make of it.
    Thanks!

    Had a few similar short system freezes, after installing Windows 8 x64 on 13” MacBook Pro Mid-2010 with BootCamp 5.0.5033.
    There is a suggestion that DisableDynamicTick may fix the problem: https://discussions.apple.com/message/21565295#21565295. There were similar topics at Microsoft forums: 1, 2, 3. It was said “that this will likely reduce system battery life, so it should be undone when you update your Windows build or if it doesn't resolve your issue”, and that “this problem is resolved in the release versions of Windows 8”.
    Another possibility is that there is indeed a buggy driver, within BootCamp 5.0.5033, or a 3rd party, like a wireless network driver in the following case http://answers.microsoft.com/en-us/windows/forum/windows_8-performance/system-fr eeze-randomly-after-installing-windows-8/49488183-26cf-4389-af21-a85dc366c99a?pa ge=2#LastReply.
    The problem has been noticeable on my MacBook, but not annoying enough yet to spend time troubleshooting. If you find a robust solution, using the links above or other method, it would be interesting to know.
    HTH

  • ABAP Inbound Proxy issue

    Hi All,
    I have a file to ABAP Inbound proxy scenario for creating vendor in SAP.
    When I execute from SPROXY test tab, vendor is created in SAP.
    But when i test end to end i.e by feeding the file adapter with the vendor file i don't see the vendor creating in SAP.
    The message is successful in PI moni and in ABAP moni. Cant see any errors
    Appreciate your inputs in this solving this please
    Keerthi

    >
    Keerthika R wrote:
    > The message is successful in PI moni and in ABAP moni. Cant see any errors
    Hello Keerthi,
    I was facing the same issue. I found that we can use SXMB_MONI and SMQ2 in the SAP side as well (Backend ABAP System where the Server Proxy is created). If you are able to see the messages in SXMB_MONI of the ERP system then your proxy is working fine however, have problems in ERP System. Follow through the error message it will be easy for you to perform error analysis.
    You can ignore if you have already done it!
    Thanks & Regards,
    Anand Patil

Maybe you are looking for