Wrong proxy

Hi, I generated a proxy with an error at runtime in order to see if this proxy is used at the Configuration.
In the monitoring in XI everything is ok, thus it took another proxy. Does anyone know what is happening or better, where can I see which proxy is taken for this interface?
thanks,
Job

Hi ,
I have your same problem with an ABAP Proxy that is not correctly regenerated when I change it: XI always calls an old version.
Please tell me the way to delete the generated proxy and the proxy structures from the package used. As every time i am trying(regenerate the proxy or deletes it and again recreates it), the tables structures and table types, also the message data-type used are created as many times as i am doing.
So i need to start with the right process of proxy generation, hence i need to delete the earlier generated proxy stuffs. But i am unable to do so.
Any suggestion will be really appreciated!
Your suggestion was to execute SXI_CACHE transaction, but can you please tell me the exact process,as i am not able to deal with it comfortably.
Thank you
Swapnil

Similar Messages

  • 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?

  • Wrong proxy in updatemanager causes out of memory

    Hello,
    I have infrastructure server (Solaris 10 10/09 s10s_u8wos_08a SPARC on Sun-Fire-V250) in subnet.
    The machine is behind the proxy. A few days ago proxy server was down and updatemanager couldn't connect to "Update server". The machine started swaping and then totally stop response (no ssh, no ping...)
    The swap has 8Gb...
    Run 'test-all' and I got: "Out of memory"
    Now I turned off daily checking for updates so I hope, it won't happen again.
    Is it known issue?
    Regards,
    Jan Hlodan

    My point being "It also assumes that you're going to have a local My Documents folder to work with and THAT folder is where it also stores the new Cp6 Themes in a Layouts folder" is a gross assumption. I've seen other posts from people having the same issue.
    I should be allowed to choose the folder locations during the install. Most other software I use is like that. Why not offer the user some control and flexibility?
    I don't have a virtual desktop or roaming profile. When I was running successfully, my cache was local and the prefs folder was on the network drive. This may not be ideal but it was working. Indeed something has changed and it all started with a project file that ran out of memory when published with question slides. It's possible that problem will remain after all is said and done with the crashing problem.
    I'm installintg Cap 6 and if it fails we can hopefully get to the bottom quickly.

  • OSX gives chrome the wrong proxy settigns

    i have a blinder of a problem.
    this 10.8.5 laptop has a ghost proxy issue - in that i can't get rid of the proxy settings.
    i've tried deleting the proxy settings in system preferences. i've tried removing all profiles. i've booted into safe mode and removed the network plists in /Library/Preferences/SystemConfiguration. i've deleted the network devices and re-installed them. i've created entire new locations. i've been as through as i know how to be. whatever i do, it still tells safari and chrome to use proxies that are not defined and refuses to use different ones.
    check out this picture:
    scutil is pretty clear about the proxy settings. chrome disagrees. i've uninstalled chrome as well, zapped all its caches and preference files and re-installed. safari has the SAME problem.
    has anyone else come across this, and more importantly, does anyone know how to fix it?

    If no one here knows then please check on Google's website, even better why not Google it?

  • Visual Studio generates wrong proxy and client config for WCF Service Host with customBinding

    Hi,
    I have  a simple WCF test service.
    The serviceModel configuration for the looks like this:
    <system.serviceModel>
    <bindings>
    <customBinding>
    <binding name="NewBinding0">
    <byteStreamMessageEncoding>
    <readerQuotas maxDepth="10" maxStringContentLength="10000" maxArrayLength="10000"
    maxBytesPerRead="1000" maxNameTableCharCount="200" />
    </byteStreamMessageEncoding>
    <tcpTransport />
    </binding>
    </customBinding>
    </bindings>
    <diagnostics>
    <messageLogging logMalformedMessages="true" logMessagesAtTransportLevel="true" />
    </diagnostics>
    <services>
    <service name="WcfServiceLibrary2.Service1">
    <endpoint address="mex" binding="mexHttpBinding" name="mexName"
    contract="IMetadataExchange" />
    <endpoint address="net.tcp://localhost:8734/WcfServiceLibrary2/Service1.svc"
    binding="customBinding" bindingConfiguration="NewBinding0" name="tcpName"
    bindingName="" contract="WcfServiceLibrary2.IService1" />
    <host>
    <baseAddresses>
    <add baseAddress="http://localhost:8733/Design_Time_Addresses/WcfServiceLibrary2/Service1/" />
    </baseAddresses>
    </host>
    </service>
    </services>
    <behaviors>
    <serviceBehaviors>
    <behavior name="">
    <serviceMetadata httpGetEnabled="true" />
    <serviceDebug includeExceptionDetailInFaults="false" />
    </behavior>
    </serviceBehaviors>
    </behaviors>
    </system.serviceModel>
    However the auto generated client side serviceModel looks like this:
    <system.serviceModel>
    <bindings>
    <customBinding>
    <binding name="tcpName">
    <textMessageEncoding messageVersion="Soap12" />
    <tcpTransport />
    </binding>
    </customBinding>
    </bindings>
    <client>
    <endpoint address="net.tcp://localhost:8734/WcfServiceLibrary2/Service1.svc"
    binding="customBinding" bindingConfiguration="tcpName" contract="ServiceReference2.IService1"
    name="tcpName" />
    </client>
    </system.serviceModel>
    Note the Encoding has changed to from byteStreamMessageEncoding to textMessageEncoding.
    When I test the service with WCF Test Client, I get the error "Addressing Version 'AddressingNone (http://schemas.microsoft.com/ws/2005/05/addressing/none)' does not support adding
    WS-Addressing headers."
    The error message makes sense in considering the client is mis-configured. I could manually modify the client side configuration, but I don't know how to give that to the WCF Test Client.
    When I run my own test client code, I get a NullReferenceException creating the Channel
    at System.Text.UTF8Encoding.GetByteCount(String chars)
    at System.ServiceModel.Channels.EncodedFramingRecord..ctor(FramingRecordType recordType, String value)
    at System.ServiceModel.Channels.EncodedContentType.Create(String contentType)
    at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.CreatePreamble()
    at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel..ctor(ChannelManagerBase factory, IConnectionOrientedTransportChannelFactorySettings settings, EndpointAddress remoteAddresss, Uri via, IConnectionInitiator connectionInitiator, ConnectionPool connectionPool, Boolean exposeConnectionProperty, Boolean flowIdentity)
    at System.ServiceModel.Channels.ConnectionOrientedTransportChannelFactory`1.OnCreateChannel(EndpointAddress address, Uri via)
    at System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
    at System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverDuplexSession.CreateInnerChannelBinder(EndpointAddress to, Uri via)
    at System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
    at System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
    at System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
    at System.ServiceModel.ClientBase`1.CreateChannel()
    at System.ServiceModel.ClientBase`1.CreateChannelInternal()
    at System.ServiceModel.ClientBase`1.get_Channel()
    at ConsolWCFTestApp.ServiceReference2.Service1Client.GetXSDFiles(String path) in c:\Users\malley\Documents\Visual Studio 2013\Projects\WcfService1\ConsolWCFTestApp\Service References\ServiceReference2\Reference.cs:line 127
    at ConsolWCFTestApp.Program.Main(String[] args) in c:\Users\malley\Documents\Visual Studio 2013\Projects\WcfService1\ConsolWCFTestApp\Program.cs:line 14
    at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
    at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
    at System.Threading.ThreadHelper.ThreadStart()
    Any suggestions much appreciated.
    Martin

    Hi Martin00,
    I have tested your code in my side and I can meet the same exception as you.
    >>"Addressing Version 'AddressingNone (http://schemas.microsoft.com/ws/2005/05/addressing/none)' does not support adding WS-Addressing headers."
    Based the above exception, I try to use the following config:
    <textMessageEncoding messageVersion="Soap12" />
    Instead of this config code:
    <byteStreamMessageEncoding>
    <readerQuotas maxDepth="10" maxStringContentLength="10000" maxArrayLength="10000"
    maxBytesPerRead="1000" maxNameTableCharCount="200" />
    </byteStreamMessageEncoding>-->
    After that it works fine as following:
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to configure Network proxy to use PAC file on Multiple machines ?

    Hello all,
    If I've posted in the wrong Forum let me know and I'll move ...
    I have been asked by my Network team to change the proxy setting to use a .pac file on all our Macs.
    I use ARD a lot and know I can change a lot settings using the networksetup command line tool inside the ARD package and that's great! But I can't see a command listing for changing to use a PAC file.
    Any suggestions here people ?
    Regards
    Mitch

    I think you have the right Forum personaly!
    With no experiemce or knowledge of .pac files, do either one of these help you?
    http://www.byteclub.net/blog/cwoodward/category/macos-x/
    Scroll to... Wrong proxy settings? Write your own .pac!
    http://www.macosxhints.com/article.php?story=20040101095553265
    Says Panther, but perhaps Tiger is the same.

  • ASA DMZ zone and Unix proxy server

    Hi.
    i have router which all nat translation done at here. i have a asa and core sw.
    192.168.1930.0/24 subnet my user and some server are located at this subnet. this subnet created at core sw.
    int vlan 393
    ip address 192.168.193.1 255.255.255.0
    core sw connected to asa inside interface.asa inside interface ip 172.30.30.1 and at core sw site this port access vlan 8 which is
    int vlan 8
    ip address 172.30.30.2
    at core sw at i have a default route to asa.
    ip route 0.0.0.0 0.0.0.0 172.30.30.1
    and asa site
    route inside 192.168.193.0 255.255.255.0 172.30.30.2
    all of them are ok.
    i think that is ok.
    at asa i have dmz zone which ip address:
    interface Ethernet0/1
    description connect to CoreSW
    nameif inside
    security-level 100
    ip address 172.30.30.1 255.255.255.0 standby 172.30.30.3
    interface Ethernet0/2
    description DMZ zone connect mail server
    nameif DMZ
    security-level 50
    ip address 172.16.10.1 255.255.255.0 standby 172.16.10.2
    my proxy server inside interface connected to asa dmz zone and ip address 172.16.10.254 and outside interface is connected asa outside site which mean that is same subnet of asa outside interface which is 10.0.0.254 and then 10.0.0.254 i do static nat at router. i have no problem at nat translation.
    i want my 192.168.193.0 subnet pass througth from proxy when this subnet want to connet internet.
    i wrote
    static (inside,DMZ) 192.168.193.0 192.168.193.0 netmask 255.255.255.0
    and access-list
    access-list from_dmz_to_in extended permit ip host 172.16.10.254 any
    access-group from_dmz_to_in in interface DMZ
    at this time what is up?
    the user can not access internet and what i do? i wrote proxy server inside ip and default port 3128 at user internet explorer properties.
    internet explorerr--tools-properties-connection-lan settting and show there 172.16.10.254 and port 3128.
    at this time my user connect internet when i wrote this. when i remove this they can not connect internet
    but i  do not  want write anything at my user. how i solved this?
    after that one problem occur.
    when my server to  do nslookup it can not work.
    i thnik that it is true because we have only one port 3128 is open and my server need udp 53.so it can not work
    how i solve this issue?
    as you see my access-list all of is open and i do
    static (inside,DMZ) 192.168.193.0 192.168.193.0 netmask 255.255.255.0
    it is this wrong proxy connection???
    musti change proxy server inside interface to other device or asa other interface?
    thanks.

    There is 2 way the proxy server can work, ie: either transparent or explicit proxy.
    From your explaination, explicit proxy works just fine when you configure the proxy settings on your browser.
    The reason why transparent proxy does not work is because:
    1) When user browser connects to the Internet, the ASA default gateway is via the outside interface, that is why the Internet traffic is not being routed transparently towards your proxy server which is connected to the DMZ interface.
    The static NAT statement configured on the ASA does not perform redirection. If you would like to transparently route the internet traffic towards the proxy server on DMZ, you would need to route the traffic towards the proxy server. With the current topology that you have, it is not achievable on the ASA. ASA does not support Policy Based Routing, nor it supports WCCP when the user and the proxy server is on different interfaces.
    2) Also need to find out if the proxy server itself supports transparent proxy.
    Otherwise, since explicit proxy works, why don't you just push the proxy settings to the browser via Active Directory Group Policy?

  • CreativeCloudSet-Up.exe refuses to install

    Trying to fix an issue with one of my CC apps, I ran the CC cleaner tool and cleared my entire install.
    I downloaded Creative Cloud Desktop manager, the app that manages all installs. I click on CreativeCloudSet-Up.exe to be greeted with "There was a problem with Creative Cloud desktop. Please download and reinstall". The installer is telling me to reinstall. My firewall is off as is my anti virus for this process.
    Through the course of troubleshooting, I've gone in the chat, moved the OOBE folder around, deleted it, checked permissions and so on. I've now deleted every adobe app related folder (program files/adobe, program files/common, the appdata folders for adobe, and so on). I've also deleted a number of Adobe related registry entries.
    I am running Windows 8.0, 64-bit with all current patches.
    At this point I've wasted 3 hours in chat. I just want to finish my work so I can enjoy Christmas Eve
    In appdata/local/temp/ the LBS log states the following, notice the fatal line "Cannot launch AAMHelper"
    12/24/13 16:39:00:598 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | 1496 | ****************Starting LBS workflow*******************
    12/24/13 16:39:00:645 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | initializing screen
    12/24/13 16:39:00:676 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | ACCC System requirements check passed
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | ProductInfo |  |  | 3896 | Product Sap Code not specified in the product information file
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | ProductInfo |  |  | 3896 | Product locale not specified in the product information file
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | ProductInfo |  |  | 3896 | Product name not specified in the product information file
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | ProductInfo |  |  | 3896 | Applet Version not specified in the product information file
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | ProductInfo |  |  | 3896 | Applet ID not specified in the product information file
    12/24/13 16:39:00:801 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | Bootstraping Passed
    12/24/13 16:39:00:832 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | LBS lock acquired
    12/24/13 16:39:01:364 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | deployment lock check passed
    12/24/13 16:39:01:396 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | ACCC not present so downloading is initiated.
    12/24/13 16:39:01:427 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | ****Downloading AAM version info file****
    12/24/13 16:39:01:974 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | ACCC needs to be updated on the machine
    12/24/13 16:39:03:931 | [WARN] |  | AAMCommon |  | LBSWorkflowManager |  |  | 3896 | Validation of AUTH_RESP pkt failed with error 503
    12/24/13 16:39:03:931 | [WARN] |  | AAMCommon |  | LBSWorkflowManager |  |  | 3896 | Handshake with AAMHelper failed
    12/24/13 16:39:03:931 | [WARN] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | Failed to launch AAMHelper process!
    12/24/13 16:39:03:931 | [INFO] |  | Download | LBS | ETS |  |  | 3896 | Event Guid generated is: '23f9cef1-fa24-44a6-9fef-cc2e45ceceee'
    12/24/13 16:39:03:931 | [INFO] |  | Download | LBS | ETS |  |  | 3896 | Event Guid generated is: '0adcd4ec-73de-49eb-8af6-5ab56c2c70b4'
    12/24/13 16:39:03:931 | [FATAL] |  | Download | LBS | LBSWorkflowManager |  |  | 3896 | WorkflowManager: Failed to launch AAMHelper
    12/24/13 16:39:03:947 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | Event with guid '23f9cef1-fa24-44a6-9fef-cc2e45ceceee' is being sent
    12/24/13 16:39:03:947 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - No default proxy present on the user machine
    12/24/13 16:39:03:947 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    12/24/13 16:39:03:947 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - proxy Url is
    12/24/13 16:39:04:291 | [INFO] |  | Download | LBS | ETS |  |  | 2132 | HTTP Request Status code 200.
    12/24/13 16:39:04:291 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    12/24/13 16:39:04:291 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | Event with guid '0adcd4ec-73de-49eb-8af6-5ab56c2c70b4' is being sent
    12/24/13 16:39:04:306 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - No default proxy present on the user machine
    12/24/13 16:39:04:306 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    12/24/13 16:39:04:306 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | GetIEProxyInfo - proxy Url is
    12/24/13 16:39:04:634 | [INFO] |  | Download | LBS | ETS |  |  | 2132 | HTTP Request Status code 200.
    12/24/13 16:39:04:634 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    12/24/13 16:39:06:244 | [INFO] |  | Download | LBS | ETS |  |  | 1496 | Waiting for the async thread to get the task completed
    12/24/13 16:39:06:260 | [INFO] |  | Download | LBS | ETS |  |  | 4772 | Async thread is completed. Now exiting from function.
    12/24/13 16:39:06:260 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | 1496 | ****************Closing LBS workflow*******************
    DLM Log contents:
    12/24/13 16:39:01:427 | [INFO] |  |  |  |  |  |  | 3896 | *******************start of Download****************
    12/24/13 16:39:01:427 | [INFO] |  |  |  |  |  |  | 3896 | GDE Version is 2.0.0.8 (BuildVersion: 2.0; BuildDate: Tue Sep 10 2013 17:02:22 )
    12/24/13 16:39:01:427 | [ERROR] |  |  |  |  |  |  | 3896 | The windows error code is - 12180
    12/24/13 16:39:01:427 | [ERROR] |  |  |  |  |  |  | 3896 | Failed to get the user proxy settings. Error is 12180. Ignoring the proxy setting in this case.
    12/24/13 16:39:01:427 | [ERROR] |  |  |  |  |  |  | 3896 | failed to resolve the proxy setting on the machine
    12/24/13 16:39:01:427 | [INFO] |  |  |  |  |  |  | 3896 | The file to be downloaded is https://ccmdls.adobe.com/AdobeProducts/KCCC/1/win32/AAMVersion.xml
    12/24/13 16:39:01:427 | [INFO] |  |  |  |  |  |  | 3896 | Going to download the file at C:\Users\Angelo\AppData\Local\Temp\{68F28A8F-F017-4912-9263-1A0E49427837}/AAMVersion.xml
    12/24/13 16:39:01:536 | [INFO] |  |  |  |  |  |  | 3896 | Header Field for the HEAD request is :
    HTTP/1.1 200 OK
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:39:02 GMT
    Content-Length: 5232
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:39:01:568 | [INFO] |  |  |  |  |  |  | 3896 | Logging the HTTP Header for Byte-Range query :
    12/24/13 16:39:01:568 | [INFO] |  |  |  |  |  |  | 3896 | Header contents:
    HTTP/1.1 206 Partial Content
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:39:02 GMT
    Content-Length: 2
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Content-Range: bytes 5230-5231/5232
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:39:01:896 | [INFO] |  |  |  |  |  |  | 1964 | **File download complete.**
    12/24/13 16:39:06:260 | [INFO] |  |  |  |  |  |  | 1496 | *******************End****************
    12/24/13 16:40:21:896 | [INFO] |  |  |  |  |  |  | 2344 | *******************start of Download****************
    12/24/13 16:40:21:896 | [INFO] |  |  |  |  |  |  | 2344 | GDE Version is 2.0.0.8 (BuildVersion: 2.0; BuildDate: Tue Sep 10 2013 17:02:22 )
    12/24/13 16:40:21:896 | [ERROR] |  |  |  |  |  |  | 2344 | The windows error code is - 12180
    12/24/13 16:40:21:896 | [ERROR] |  |  |  |  |  |  | 2344 | Failed to get the user proxy settings. Error is 12180. Ignoring the proxy setting in this case.
    12/24/13 16:40:21:896 | [ERROR] |  |  |  |  |  |  | 2344 | failed to resolve the proxy setting on the machine
    12/24/13 16:40:21:896 | [INFO] |  |  |  |  |  |  | 2344 | The file to be downloaded is https://ccmdls.adobe.com/AdobeProducts/KCCC/1/win32/AAMVersion.xml
    12/24/13 16:40:21:896 | [INFO] |  |  |  |  |  |  | 2344 | Going to download the file at C:\Users\Angelo\AppData\Local\Temp\{261B24F4-869A-44F5-A552-4DEE06FA89BA}/AAMVersion.xml
    12/24/13 16:40:22:053 | [INFO] |  |  |  |  |  |  | 2344 | Header Field for the HEAD request is :
    HTTP/1.1 200 OK
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:40:22 GMT
    Content-Length: 5232
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:40:22:068 | [INFO] |  |  |  |  |  |  | 2344 | Logging the HTTP Header for Byte-Range query :
    12/24/13 16:40:22:068 | [INFO] |  |  |  |  |  |  | 2344 | Header contents:
    HTTP/1.1 206 Partial Content
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:40:23 GMT
    Content-Length: 2
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Content-Range: bytes 5230-5231/5232
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:40:22:400 | [INFO] |  |  |  |  |  |  | 732 | **File download complete.**
    12/24/13 16:40:38:980 | [INFO] |  |  |  |  |  |  | 2324 | *******************End****************
    12/24/13 16:40:43:282 | [INFO] |  |  |  |  |  |  | 4036 | *******************start of Download****************
    12/24/13 16:40:43:282 | [INFO] |  |  |  |  |  |  | 4036 | GDE Version is 2.0.0.8 (BuildVersion: 2.0; BuildDate: Tue Sep 10 2013 17:02:22 )
    12/24/13 16:40:43:282 | [ERROR] |  |  |  |  |  |  | 4036 | The windows error code is - 12180
    12/24/13 16:40:43:282 | [ERROR] |  |  |  |  |  |  | 4036 | Failed to get the user proxy settings. Error is 12180. Ignoring the proxy setting in this case.
    12/24/13 16:40:43:282 | [ERROR] |  |  |  |  |  |  | 4036 | failed to resolve the proxy setting on the machine
    12/24/13 16:40:43:282 | [INFO] |  |  |  |  |  |  | 4036 | The file to be downloaded is https://ccmdls.adobe.com/AdobeProducts/KCCC/1/win32/AAMVersion.xml
    12/24/13 16:40:43:282 | [INFO] |  |  |  |  |  |  | 4036 | Going to download the file at C:\Users\Angelo\AppData\Local\Temp\{77AA32A1-103A-4BC6-B77F-AE148F4DDC51}/AAMVersion.xml
    12/24/13 16:40:43:407 | [INFO] |  |  |  |  |  |  | 4036 | Header Field for the HEAD request is :
    HTTP/1.1 200 OK
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:40:44 GMT
    Content-Length: 5232
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:40:43:438 | [INFO] |  |  |  |  |  |  | 4036 | Logging the HTTP Header for Byte-Range query :
    12/24/13 16:40:43:438 | [INFO] |  |  |  |  |  |  | 4036 | Header contents:
    HTTP/1.1 206 Partial Content
    Connection: keep-alive
    Date: Wed, 25 Dec 2013 00:40:44 GMT
    Content-Length: 2
    Content-Type: application/xml
    Content-MD5: 7VPEGj9kvdmnM1m4t0FTaA==
    Content-Range: bytes 5230-5231/5232
    Last-Modified: Thu, 19 Dec 2013 07:31:41 GMT
    Accept-Ranges: bytes
    ETag: "ed53c41a3f64bdd9a73359b8b7415368:1387472948"
    Server: Apache
    12/24/13 16:40:43:782 | [INFO] |  |  |  |  |  |  | 1124 | **File download complete.**
    12/24/13 16:40:46:915 | [INFO] |  |  |  |  |  |  | 4280 | *******************End****************
    PDApp contents
    12/24/13 16:39:00:707 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | Build Version - 7.0.0.394
    12/24/13 16:39:00:707 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | Logging Level verbosity Set  to 4
    12/24/13 16:39:00:707 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | Schema version and schema compatibility version are same or greater than current
    12/24/13 16:39:00:801 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | Successfully opened opm session, db location:C:\Users\Angelo\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    12/24/13 16:39:00:801 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | No Record found for the input fields in opm_getValueForKey
    12/24/13 16:39:00:801 | [INFO] |  | ASU | OPM | OPM |  |  | 3896 | Released OPM refrence successfully in opm_freeLibRef
    12/24/13 16:40:21:219 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | Build Version - 7.0.0.394
    12/24/13 16:40:21:219 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | Logging Level verbosity Set  to 4
    12/24/13 16:40:21:219 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | Schema version and schema compatibility version are same or greater than current
    12/24/13 16:40:21:251 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | Successfully opened opm session, db location:C:\Users\Angelo\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    12/24/13 16:40:21:251 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | No Record found for the input fields in opm_getValueForKey
    12/24/13 16:40:21:251 | [INFO] |  | ASU | OPM | OPM |  |  | 2344 | Released OPM refrence successfully in opm_freeLibRef
    12/24/13 16:40:42:606 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | Build Version - 7.0.0.394
    12/24/13 16:40:42:606 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | Logging Level verbosity Set  to 4
    12/24/13 16:40:42:606 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | Schema version and schema compatibility version are same or greater than current
    12/24/13 16:40:42:653 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | Successfully opened opm session, db location:C:\Users\Angelo\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    12/24/13 16:40:42:653 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | No Record found for the input fields in opm_getValueForKey
    12/24/13 16:40:42:653 | [INFO] |  | ASU | OPM | OPM |  |  | 4036 | Released OPM refrence successfully in opm_freeLibRef

    There's something wrong with your Internet connection. Based on teh logs, all your connections bounce because of a wrong proxy configuration. The simplest way to fix it would probably be to delet your current network and let Windows auto-configure a new one, which you should do with your security tools on, so Windows can figure out things.
    Mylenium

  • Java Plug-in 1.5.0_06 Error JRE notinited

    Uninstalled all JRE versions. and downloaded the previous offline install packets from:
    http://java.sun.com/products/archive/
    JRE 1.5.0
    JRE 1.5.0_1
    JRE 1.5.0_2
    JRE 1.5.0_3
    JRE 1.5.0_4
    JRE 1.5.0_5
    JRE 1.5.0_6
    ,Installed them one after the other due to I read somewhere they recommend you keep all your JRE versions. Keep getting that error JRE notinited error on the brower status bar when I run the verify installation proccess at
    http://java.com/en
    JRE 1.4.1_02 an older version works if I uninstall all the newer versions and leave this version.
    None of the browser installed seem tow ork with the JRE 1.5 ect.
    I have IE 6, Netscape 7.2,. Firefox 1.5 all will not load applets and get that verify install red x for failing to load.
    Below is what I get in the Java Log.
    I
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Darrel Decal
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class jreCheck.class not found.
    java.lang.ClassNotFoundException: jreCheck.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-4" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Some People claim that Norton programs might interfere, I disabled them even went as far to uninstall them which takes a long time.. to uninstall and install them back.
    I even went as far as a clean systems install of windows XP sp2 Home Edition and th en tried to update to Sun Java and still got the red X basically saying something wrong with install. But nothing every says its wrong when you run the offline installation. Just when you go back to the website to veriffy jjava is installed.
    To be able to use my subsciption I pay for on Pogo.com to play games that require applets I had to enable the MSJava in Internet Explorer and disable the box of the Sun Java applet version whatever you have installed to have Runtime Environment.
    If you don't have the MS Java on your Internet Explorer Advanced Options you can get it at this address:
    http://www.microsoft.com/mscorp/java/
    Go figure. I thought Sun Java would be more better which I had working before have no clue why it stopped working and those errors come up when trying to play games that require the use of the java applet.
    Was hoping other java users who have figured out why it stopped can tell me what to look for to alter so I can change back to sun Java.
    The Sun Java works great with other applications just not the applets.

    The same problem happened to me. When upgrading from JRE 1.5.0_5 to JRE 1.5.0_6, suddenly no applets would load, and all I could see was the little red X.
    I tried to change proxysettings (I dont use a proxy, but it is told at http://www.java.com/en/download/help/redximage.xml that it is due to wrong proxy-settings). It didn't help.
    I tried to turn off zonealarm. It didn't help.
    I tried to clear the browsers cache. It didn't help.
    I have been using both Firefox 1.5, and IE6. None would load the java-applets.
    So I uninstalled all older JRE versions and installed JRE 1.4.1_02. It worked!
    I then tried to upgrade to JRE 1.5.0. It didn't work.
    Now I am back at JRE 1.4.1_02 without knowing why I had to downgrade through 6 versions that through the last year or so has been working fine on my machine.
    I have no idea why it suddenly wouldnt work with the newer versions.
    Any ideas?
    Thank you.

  • JWS buggy when trying to communicate with servlets within the intranet

    Hi out there,
    I've a quite odd problem. I've written a distributed Java application, communication is stablished via Java serialized objects using http get and post.
    This works fine almost from any place. There are 3 possiblities to start my application:
    1. start the client bean directly from hard disc. Communication to server is perfect, everything works fine.
    2. I call a special html-page from the server which starts my application in a browser as an applet. This is tricky on some platforms, but at least on windows boxes this works fine, too. So the applet is hosted on the same machine as my Java objects are sent to by http. Those objects are received by a servlet installed on the server. We use IBM Websphere, and perhaps that's the bad guy...
    3. I start the application using Java Web Start. Again the .jnlp-File is hosted on the same server machine. And this is where the applicaiton hangs: If I'm outside our company's network, again everything works fine, through firewalls etc. But if I launch the application from within our intranet, the application only works "a little bit". It shows odd behaviour. The aplication may run fine if I send about two objects to the server. But it hangs if I try more objects. I can't reproduce the exact amount of objects transferable as that number differs from try to try!
    Has anybody any idea what could be wrong there? The server application's logfiles don't show any errors. The error message is that the client (only if started by JWS, and only from the intranet, and only from time to time) can't locate the servlet.
    What is the difference if I call the servlet starting the bean locally from my hard disc or if I start it as downloaded bean via Java Web Start?
    Some words to our architecture: We use Windows NT 4.0 SP 5. The server is behind one firewall to the outer world and one firewall to the intranet (demilitarized zone). The problems only occur if trying from intranet to DMZ, but only in combination with JWS. As an application or applet the connection works fine!
    Perhaps some network specialist has any idea about that? I know it's a little bit complicated, but perhaps somebody sees somthing I missed yet.
    Thanks a lot,
    Stefan

    Ok sorry. Forget about it. This is some very odd behaviour. Normally the application shouldn't run at all.
    I had the wrong proxy settings in the Java Web Start engine.
    I'm sorry I already posted that message.
    Presentation of my software is in about an hour, so please my panic...

  • Add VMware vCenter host error ID 2947: Authorize Exception

    I'm evaluating Hyper-V/SCVMM for our shop. I've got a Hyper-V cluster running and added to SCVMM. I'm now trying to add a VMware vSphere vCenter host in order to convert some VMs,  and receive the following error with the Add VMware VirtualCenter server applet:
    Virtual Machine Manager cannot complete the VirtualCenter action on the server MyVirtualCenter because of the following error: A general system error occurred: Authorize Exception.
    Resolve the issue and then try the operation again.
    ID: 2947
    Details: Unknown error (0x194)
    I haven't seen this error listed or discussed anywhere except the TechNet listing of errors.

    Issue
    Unable to add or remove vCenter server from SCVMM management.
    [Microsoft] Analysis
    SCVMM is trying to connect to remote vCenter https : //
    servername/sdk
    13226,05:54:37.846 07-10-2014,0x07C8,0x1280,4,VmwVMService.cs,421,0x00000000,VmwVMService: Connect: trying to connect to [https : // servername/sdk],{00000000-0000-0000-0000-000000000000},4,
    However, the HTTPS connection is failed with error below
    13234,05:54:37.864 07-10-2014,0x07C8,0x1280,4,VmwVMService.cs,466,0x00000000,WebException [ex#f6649] caught by Connect (catch Exception) [[(WebException#336dfff) System.Net.WebException: The remote server returned
    an error: (407) Proxy Authentication Required.
       at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName; Object[] parameters)
       at Microsoft.VirtualManager.VMWareService.VimService.RetrieveServiceContent(ManagedObjectReference _this)
       at Microsoft.Carmine.VMWareImplementation.VimServiceConnection.Connect()]],{00000000-0000-0000-0000-000000000000},2,
    [Microsoft Statement]
    The error 407 is actually returned from your HTTP proxy server, we suspect it is related with proxy configuration settings.
    [Our assertion]
    No proxy server is configured at all – exceptions are in place just in case the SCVMM Servers take the
    not selected MS Internet Explorer settings
    Solution
    To bypass the wrong proxy settings, we applied below solution.
    In the folder where vmmservice.exe is, create a new file
    vmmservice.exe.config (or add to the existing file) the following content:
    <configuration>
      <system.net>
        <defaultProxy enabled="false">
        </defaultProxy>
      </system.net>
    </configuration>

  • Messaging Server 4: WebMail login returns "unable to locate the server"

    When I log into WebMail, the following error occurs:<BR>
    <P>
    Netscape is unable to locate the server <I>hostname</I>.
    Please check the server name and try again.
    <P>
    <B>End User</B>
    <P>
    First verify that you cannot reach the hostname
    server by using the ping
    utility (Windows NT or Unix). If
    you cannot reach the host, report this problem to the appropriate system
    administrator or help desk.
    <P>
    However, if you can reach the host with ping
    , then the problem may be a minor
    networking issue that you can resolve. There is also the possibility that
    the network has been configured to allow users to ping
    unreachable systems. You can use the
    following actions to rule out possible sources of the problem:<BR>
    <P>
    <OL>
    <LI>Attempt to log in to WebMail again. If you can log in successfully, then
    the problem with the WebMail server may have been temporary or is an
    intermittent problem.
    <P>
    <LI>End the current browser session and then restart the browser and try to
    connect to the WebMail server again. If you can log in successfully, then,
    most likely, the browser had cached some old network information that was
    reset when you exited the browser.
    <P>
    <LI>Verify the DNS configuration of your system and then restart the entire
    system.
    </OL>
    <P>
    If the above actions do not work, then you will need to contact the
    system administrator or the help desk.
    <P>
    <B>Mail Server Administrators</B>
    <P>
    As the problem with connecting to the WebMail server is caused by configuration
    or availability problems, make sure that users who report this problem have
    HTTP network connectivity to the hostname. The following scenarios are
    possible causes of connectivity problems:<BR>
    <P>
    <UL>
    <LI>Users have the wrong proxy.
    <LI>Users are being blocked by firewalls.
    <LI>Users are connecting from the wrong network.
    <LI>Users specify the incorrect DNS servers.
    </UL>
    <P>
    In addition, users may also report that the server is down. As the login page
    for WebMail does not contain URL links that are FQDNs or absolute path names,
    it is possible that users may still be able to see the login window if it was
    cached or loaded before the server stopped working.
    <P>
    In some cases, it may be necessary to access the hostname that is used in the
    WebMail links. This hostname setting is stored in the configdb
    parameter
    service.smtp.messagehostname.
    This configuration setting is not mentioned in the Messaging Server
    documentation.
    <P>
    The messagehostname is a
    configuration value that affects many server functions. For this reason, do
    not make changes to this value without first considering the effects of such a
    change on other WebMail settings, such as the postmaster group and user
    mailhost values. Also, please note that changing messagehostname
    is not supported from Console.
    <P>
    For more information on messagehostname
    , please see "What is messagehostname?"
    at<BR>
    article 4250
    <P>
    You can also find documentation for configutil
    in the Messaging Server Administrator's
    Guide at the following URL:<BR>
    <P>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/cmdline.htm#1003887
    <P>
    <B>Note:</B> You must stop and restart the HTTP service in order for changes to
    the messagehostname to
    take effect.

    When I log into WebMail, the following error occurs:<BR>
    <P>
    Netscape is unable to locate the server <I>hostname</I>.
    Please check the server name and try again.
    <P>
    <B>End User</B>
    <P>
    First verify that you cannot reach the hostname
    server by using the ping
    utility (Windows NT or Unix). If
    you cannot reach the host, report this problem to the appropriate system
    administrator or help desk.
    <P>
    However, if you can reach the host with ping
    , then the problem may be a minor
    networking issue that you can resolve. There is also the possibility that
    the network has been configured to allow users to ping
    unreachable systems. You can use the
    following actions to rule out possible sources of the problem:<BR>
    <P>
    <OL>
    <LI>Attempt to log in to WebMail again. If you can log in successfully, then
    the problem with the WebMail server may have been temporary or is an
    intermittent problem.
    <P>
    <LI>End the current browser session and then restart the browser and try to
    connect to the WebMail server again. If you can log in successfully, then,
    most likely, the browser had cached some old network information that was
    reset when you exited the browser.
    <P>
    <LI>Verify the DNS configuration of your system and then restart the entire
    system.
    </OL>
    <P>
    If the above actions do not work, then you will need to contact the
    system administrator or the help desk.
    <P>
    <B>Mail Server Administrators</B>
    <P>
    As the problem with connecting to the WebMail server is caused by configuration
    or availability problems, make sure that users who report this problem have
    HTTP network connectivity to the hostname. The following scenarios are
    possible causes of connectivity problems:<BR>
    <P>
    <UL>
    <LI>Users have the wrong proxy.
    <LI>Users are being blocked by firewalls.
    <LI>Users are connecting from the wrong network.
    <LI>Users specify the incorrect DNS servers.
    </UL>
    <P>
    In addition, users may also report that the server is down. As the login page
    for WebMail does not contain URL links that are FQDNs or absolute path names,
    it is possible that users may still be able to see the login window if it was
    cached or loaded before the server stopped working.
    <P>
    In some cases, it may be necessary to access the hostname that is used in the
    WebMail links. This hostname setting is stored in the configdb
    parameter
    service.smtp.messagehostname.
    This configuration setting is not mentioned in the Messaging Server
    documentation.
    <P>
    The messagehostname is a
    configuration value that affects many server functions. For this reason, do
    not make changes to this value without first considering the effects of such a
    change on other WebMail settings, such as the postmaster group and user
    mailhost values. Also, please note that changing messagehostname
    is not supported from Console.
    <P>
    For more information on messagehostname
    , please see "What is messagehostname?"
    at<BR>
    article 4250
    <P>
    You can also find documentation for configutil
    in the Messaging Server Administrator's
    Guide at the following URL:<BR>
    <P>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/cmdline.htm#1003887
    <P>
    <B>Note:</B> You must stop and restart the HTTP service in order for changes to
    the messagehostname to
    take effect.

  • Adobe AIR mysteriously disappeared off of Alienware Windows 7 PC, now refuses to install whatsoever

    Regardless of what version I try to install on my machine, Adobe AIR doesn't install. The installation process finishes, sometimes saying that the program may not have installed correctly (which I then reinstall with recommended settings) yet the application is nowhere to be found in any of my program file folders, nor my common file folders. I've tried the Microsoft Fix It tool, as well as many others, I've tried creating different accounts, I've tried uninstalling, reinstalling, restarting, shutting down, editing my registry, I've tried altering permissions, I've tried .msi fixes, everything. I just want to use the new Bamboo Drawing Tablet that I bought, and I can't use my Bamboo Dock applications without Adobe AIR. I've looked at my logs of installation, and I'll post them here. I'm really frustrated at this point, so if I can get a solution, I'd  be very grateful.
    [2013-07-06:15:19:08] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:19:08] Commandline is:
    [2013-07-06:15:19:08] No installed runtime detected
    [2013-07-06:15:19:20] Relaunching with elevation
    [2013-07-06:15:19:20] Launching subprocess with commandline c:\users\colbyr~1\appdata\local\temp\air261e.tmp\adobe air installer.exe -ei
    [2013-07-06:15:19:20] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:19:20] Commandline is: -stdio \\.\pipe\AIR_12156_0 -ei
    [2013-07-06:15:19:20] No installed runtime detected
    [2013-07-06:15:19:20] Starting silent runtime install. Installing runtime version 3.7.0.1860
    [2013-07-06:15:19:20] Reinstalling c:\users\colbyr~1\appdata\local\temp\air261e.tmp\setup.msi
    [2013-07-06:15:19:20] Runtime Installer end with exit code 0
    [2013-07-06:15:19:21] Elevated install completed
    [2013-07-06:15:19:22] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2013-07-06:15:19:22] Runtime Installer end with exit code 5
    [2013-07-06:15:47:03] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:47:03] Commandline is:
    [2013-07-06:15:47:03] No installed runtime detected
    [2013-07-06:15:47:07] Relaunching with elevation
    [2013-07-06:15:47:07] Launching subprocess with commandline c:\users\colbyr~1\appdata\local\temp\air6a46.tmp\adobe air installer.exe -ei
    [2013-07-06:15:47:07] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:47:07] Commandline is: -stdio \\.\pipe\AIR_2020_0 -ei
    [2013-07-06:15:47:07] No installed runtime detected
    [2013-07-06:15:47:07] Starting silent runtime install. Installing runtime version 3.7.0.1860
    [2013-07-06:15:47:07] Reinstalling c:\users\colbyr~1\appdata\local\temp\air6a46.tmp\setup.msi
    [2013-07-06:15:47:08] Runtime Installer end with exit code 0
    [2013-07-06:15:47:08] Elevated install completed
    [2013-07-06:15:47:10] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2013-07-06:15:47:10] Runtime Installer end with exit code 5
    [2013-07-06:15:47:50] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:47:50] Commandline is:
    [2013-07-06:15:47:50] No installed runtime detected
    [2013-07-06:15:47:53] Relaunching with elevation
    [2013-07-06:15:47:53] Launching subprocess with commandline c:\users\colbyr~1\appdata\local\temp\air230a.tmp\adobe air installer.exe -ei
    [2013-07-06:15:47:53] Runtime Installer begin with version 3.7.0.1860 on Windows 7 x86
    [2013-07-06:15:47:53] Commandline is: -stdio \\.\pipe\AIR_4620_0 -ei
    [2013-07-06:15:47:53] No installed runtime detected
    [2013-07-06:15:47:53] Starting silent runtime install. Installing runtime version 3.7.0.1860
    [2013-07-06:15:47:54] Reinstalling c:\users\colbyr~1\appdata\local\temp\air230a.tmp\setup.msi
    [2013-07-06:15:47:54] Runtime Installer end with exit code 0
    [2013-07-06:15:47:54] Elevated install completed
    [2013-07-06:15:47:55] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2013-07-06:15:47:55] Runtime Installer end with exit code 5
    [2013-07-06:15:56:33] Runtime Installer begin with version 3.7.0.1860 on Windows XP x86
    [2013-07-06:15:56:33] Commandline is:
    [2013-07-06:15:56:33] No installed runtime detected
    [2013-07-06:15:57:00] Starting runtime install. Installing runtime version 3.7.0.1860
    [2013-07-06:15:57:00] Reinstalling c:\users\colbyr~1\appdata\local\temp\air1e39.tmp\setup.msi
    [2013-07-06:15:57:02] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2013-07-06:15:57:02] Runtime Installer end with exit code 5

    There's something wrong with your Internet connection. Based on teh logs, all your connections bounce because of a wrong proxy configuration. The simplest way to fix it would probably be to delet your current network and let Windows auto-configure a new one, which you should do with your security tools on, so Windows can figure out things.
    Mylenium

  • Product: Java X Update X.. removal failed or error status 1602

    Hi
    Managing several different environments I repeatedly run into the same error on "to many" computers.
    We use SCCM as our primary distribution tool and install Java using the embedded MSI and a custom made MST.
    End user platform is: Windows XP and/or Windows 7
    The installs works flawlessly in 95% of all cases but the remaining 5% are still a big hurdle to have to handle manually.
    Problem:
    Installing the newest version returns error code: 1602.
    For a long time I have been ignoring it since it generally means that the end user has cancled the installation. But upon furter investigation I have found out that this is not the case.
    On the individual computer the eventlog actually reports: Product: Java X Update X.. removal failed or error status 1602.
    It is the uninstall of the previous version that fails.
    Does anyone know what causes this and possible a solution?
    Best Regards,
    Christian

    The same problem happened to me. When upgrading from JRE 1.5.0_5 to JRE 1.5.0_6, suddenly no applets would load, and all I could see was the little red X.
    I tried to change proxysettings (I dont use a proxy, but it is told at http://www.java.com/en/download/help/redximage.xml that it is due to wrong proxy-settings). It didn't help.
    I tried to turn off zonealarm. It didn't help.
    I tried to clear the browsers cache. It didn't help.
    I have been using both Firefox 1.5, and IE6. None would load the java-applets.
    So I uninstalled all older JRE versions and installed JRE 1.4.1_02. It worked!
    I then tried to upgrade to JRE 1.5.0. It didn't work.
    Now I am back at JRE 1.4.1_02 without knowing why I had to downgrade through 6 versions that through the last year or so has been working fine on my machine.
    I have no idea why it suddenly wouldnt work with the newer versions.
    Any ideas?
    Thank you.

  • 10.4.6 - SLOW INTERNET

    I'm going nuts trying to figure this out...but ever since I installed 10.4.6 my internet has been running slower than ever. It's happening in ALL BROWSERS as well as iTunes and anything else that is powered by the internet.
    I hear this is happening to a number of people, but being a designer who does freelance at home, I need a fast connection!
    How can I fix this, and fast? Can I downgrade to 10.4.5? Will Apple be fixing this soon?

    Internet access speed can be affected by a variety of issues:
    1. On dialup - using the wrong modem script for your modem, or the wrong CRC correciton to match your internet service provider. I cover that in more detail on my FAQ:
    http://www.macmaps.com/Smart.net_MacOSX.html
    If you have noise on your phonelines, that can degrade dialup speed. To check for noise, disconnect the modem from the phoneline, and ask the phone company to run a line test on your line. Call them back to see if they have run the line test, and reconnect the modem. Sometimes this clears up access.
    2. On high speed - using a router that needs up to date firmware. Using the wrong proxy settings for your internet access. USB high speed modems frequently have issues with other USB devices sharing the same bus.
    3. An internet service provider which has not implemeneted IPv6 when your Mac has in its Apple menu -> System Preferences -> Network
    4. An internet service provider which does or does not address DNS numbers from your internet settings. Some require it to run faster, others require you don't have those numbers there.
    5. Insufficient disk space on your hard disk.
    6. Bad wires, routers.
    7. If using airport make sure your airport card and software are up to date: http://www.apple.com/swupdates/
    The answer to a question like
    Will Apple be fixing this soon?
    Will never come here. Please read the terms of use on the right.

Maybe you are looking for

  • Getting error selected operation process could not be invoked while testing?

    Hi All, Can some one help me on the below issue Scenario: I need to call a procedure from a package Getting below error The selected operation process could not be invoked. An exception occured while invoking the webservice operation. Please see logs

  • How can i get my forgoten security answers?

    Hello, I'm trying to buy apps from the app store but it keeps asking mw the security questions which i forgot the answers for. How can i get the answers or change them!! I tried the solution the web provided and didn't work. It's weird why do i have

  • Resetting Default Namespace Using JDOM

    Is it possible to reset the default namespace on a JDOM Document? I've tried setting a namespace declaration on the root element with the following code: Element myRootElement = myDocument.getRootElement(); Namespace namespace = Namespace.getNamespac

  • Can't find Adobe Application Manager

    I've just updated Adobe Apllication Manager from the Adobe web site, but I can't find it as an application on  my Mac. Where does it reside? And if it's no longer used for CC, as a subscriber to Creative Cloud for the past 8 months, how do I update t

  • Why is copy/paste not working directly?

    Hi, I have some problems when I try to copy/paste from Illustrator to PhotoShop. There is an error from Illustrator when I try to do so: " The operation cannot complete because of an unknown error. [Parm]". What I did so far:      - Do the updates