Connection refused with HTTPS

Hello,
We have created a webservice deployed to WebLogic Server 9.2. It requires secure transport using the annotation
@UserDataConstraint(transport=UserDataConstraint.Transport.CONFIDENTIAL)
We're able to test this successfully using an XSmiles client browser.
However, I've written a Java client started with "clientgen" that runs successfully when connecting in nonsecure mode (annotation removed) to a local instance. But when I try to connect to our remote server in secure mode I get "connection refused" (the lengthy call stack is copied below).
The client code is also copied below (a few strings and IPs were changed). It's able to retrieve the WSDL, but then bombs when calling a port method. This is probably something simple but I've followed tutorials and have not found reference to this particular error on forums or via Google. Any ideas would be appreciated!
Thanks,
CJ
= = = = = = = =
System.setProperty ("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
java.security.Security.addProvider (new com.sun.net.ssl.internal.ssl.Provider());
// must define .trustStoreType, .trustStore, and .trustStorePassword
System.setProperty("javax.net.ssl.trustStore", "c:\\client-keytool.ts");
System.setProperty("javax.net.ssl.trustStorePassword", "password");
System.setProperty("javax.net.ssl.trustStoreType", "JCEKS");
System.setProperty("weblogic.wsee.client.ssl.stricthostchecking", "false");
System.out.println ("Connecting to the webservice...");
PatientRegistrationService service = new PatientRegistrationService_Impl ("https://domain/ws/services/PatientRegistrationPort?WSDL");
PatientRegistrationPort port = service.getPatientRegistrationPort();
SecurityQuestionRequestType request = new SecurityQuestionRequestType();
RequestHeaderType requestHeader = new RequestHeaderType();
requestHeader.setApplication("x");
requestHeader.setAppLoginId("x");
requestHeader.setAppPassword("x");
request.setRegistrationRequest (requestHeader);
System.out.println ("Calling getSecurityQuestion method...");
SecurityQuestionResponseType response = port.getSecurityQuestion (request);
System.out.println ("...just called getSecurityQuestion.");
= = = = = = = =
Connecting to the webservice...
Calling getSecurityQuestion method...
Exception in thread "Main Thread" java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Failed to send message using connection:(SoapClientConnection@41626058 <transport=(HTTPSClientTransport@41626055 <url=https://IPADDRESS:9223/domain/ws/PatientRegistrationPort>)>)Connection refused: connect] FaultActor [null] Detail [<detail><bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0"></bea_fault:stacktrace>java.net.ConnectException: Connection refused: connect
     at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
     at java.net.Socket.connect(Socket.java:507)
     at java.net.Socket.connect(Socket.java:457)
     at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
     at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
     at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
     at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:280)
     at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:337)
     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:176)
     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:744)
     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:162)
     at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:836)
     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:230)
     at weblogic.wsee.connection.transport.http.HTTPClientTransport.send(HTTPClientTransport.java:161)
     at weblogic.wsee.connection.soap.SoapConnection.send(SoapConnection.java:54)
     at weblogic.wsee.connection.soap.SoapClientConnection.send(SoapClientConnection.java:89)
     at weblogic.wsee.ws.dispatch.client.ConnectionHandler.handleRequest(ConnectionHandler.java:89)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:100)
     at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:101)
     at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
</detail>]; nested exception is:
     javax.xml.rpc.soap.SOAPFaultException: Failed to send message using connection:(SoapClientConnection@41626058 <transport=(HTTPSClientTransport@41626055 <url=https://IPADDRESS:9223/domain/ws/PatientRegistrationPort>)>)Connection refused: connect
     at test.wsclient.PatientRegistrationPort_Stub.getSecurityQuestion(PatientRegistrationPort_Stub.java:337)
     at test.client.TestClient4.main(TestClient4.java:80)
Caused by: javax.xml.rpc.soap.SOAPFaultException: Failed to send message using connection:(SoapClientConnection@41626058 <transport=(HTTPSClientTransport@41626055 <url=https://IPADDRESS:9223/domain/ws/PatientRegistrationPort>)>)Connection refused: connect
     at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:259)
     at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:105)
     at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:90)
     at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:78)
     at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:254)
     at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:224)
     at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:161)
     at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:116)
     at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
     at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:335)
     at test.wsclient.PatientRegistrationPort_Stub.getSecurityQuestion(PatientRegistrationPort_Stub.java:332)
     ... 1 more
Caused by: weblogic.wsee.handler.InvocationException: Failed to send message using connection:(SoapClientConnection@41626058 <transport=(HTTPSClientTransport@41626055 <url=https://IPADDRESS:9223/domain/ws/PatientRegistrationPort>)>)
     at weblogic.wsee.ws.dispatch.client.ConnectionHandler.handleRequest(ConnectionHandler.java:91)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:100)
     at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:101)
     ... 4 more
Caused by: java.net.ConnectException: Connection refused: connect
     at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
     at java.net.Socket.connect(Socket.java:507)
     at java.net.Socket.connect(Socket.java:457)
     at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
     at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
     at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
     at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:280)
     at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:337)
     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:176)
     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:744)
     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:162)
     at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:836)
     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:230)
     at weblogic.wsee.connection.transport.http.HTTPClientTransport.send(HTTPClientTransport.java:161)
     at weblogic.wsee.connection.soap.SoapConnection.send(SoapConnection.java:54)
     at weblogic.wsee.connection.soap.SoapClientConnection.send(SoapClientConnection.java:89)
     at weblogic.wsee.ws.dispatch.client.ConnectionHandler.handleRequest(ConnectionHandler.java:89)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
     at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:100)
     at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:101)
     at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)

Never mind, my silly mistake!
Thanks to http://jordan.fortwayne.com/oracle/oralinux.html
I realized that I had forgotten to do 'lsnrctl start'
R. Inamdar (guest) wrote:
: I downloaded Oracle 805 for Linux. I was able to successfully
: able to connect to the test database and issue queries with
: SVRMGRL. However, I get a 'Connection Refused' exception
: while connecting through the JDBC sample program.
: How do I enable diagnostics. I tried
: TRACE_LEVEL_LISTENER = SUPPORT
: but no trace file was created.
: What am I doing wrong. Thanks for the help...
: My evironment is:
: JDK1.1.7
: Linux Red Hat 5.2
: Thin JDBC driver
: Code fragment:
: DriverManager.registerDriver(new
jdbc.driver.OracleDriver());
: Connection conn =
: DriverManager.getConnection (
: "jdbc:oracle:thin:@localhost.localdomain:1521:test",
: "system",
: "manager"
: I tried with "localhost" in place of "localhost.localdomain"
: without success.
: Following is my listener.ora
: # Installation Generated Net8 Configuration
: # Version Date: Jun-17-97
: # Filename: Listener.ora
: LISTENER =
: (ADDRESS_LIST =
: (ADDRESS= (PROTOCOL= IPC)(KEY= test))
: (ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
: (ADDRESS= (PROTOCOL= TCP)(Host=
: localhost.localdomain)(Port= 1521))
: SID_LIST_LISTENER =
: (SID_LIST =
: (SID_DESC =
: (GLOBAL_DBNAME= localhost.localdomain.)
: (ORACLE_HOME= /usr/local/oracle/805)
: (SID_NAME = test)
: (SID_DESC =
: (SID_NAME = extproc)
: (ORACLE_HOME = /usr/local/oracle/805)
: (PROGRAM = extproc)
: STARTUP_WAIT_TIME_LISTENER = 0
: CONNECT_TIMEOUT_LISTENER = 10
: TRACE_LEVEL_LISTENER = OFF
: # TRACE_LEVEL_LISTENER = SUPPORT
: # TRACE_FILE_LISTENER = lsnr
: # TRACE_DIRECTORY_LISTENER=/usr/local/oracle/805/network/trace
null

Similar Messages

  • Connection refused: proxy: HTTP: attempt to connect to failed [error] ap_proxy_connect_backend disabling worker

    Hi all,
    I'm investigating cause of a wedged wiki this morning. The MacMini (10.7.5) was working well for the last year but we're not sure when it gave up the ghost.
    I've already applied the fixes detailed at Mac OS X v10.5, Mac OS X Server v10.5: Web, Mail, Wiki, Personal Web Sharing, Parental Controls services may not start after restoring a Time Machine backup but it has't helped.
    The error we see when we visit the top level of the server is:
    Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Apache/2.2.22 (Unix) PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8r DAV/2 Server at sacmini.local Port 80
    The message in the httpd error logs is:
    Connection refused: proxy: HTTP: attempt to connect to failed [error] ap_proxy_connect_backend disabling worker
    Let me know if you have any ideas.  Thank you.
    --Athonia

    Thanks for the reply.
    So, there were some Ruby related log file entries. Do these have any meaning to you?  I'm checking to see what collabcored2 does exactly.
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config/environment.rb:11
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `gem_original_require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:13
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /Library/Ruby/Gems/1.8/gems/rack-1.2.1/lib/rack/builder.rb:46:in `instance_eval'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /Library/Ruby/Gems/1.8/gems/rack-1.2.1/lib/rack/builder.rb:46:in `initialize'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:1:in `new'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:1
    May  7 14:22:33 sacmini com.apple.launchd[1] (com.apple.collabcored2[22106]): Exited with code: 1
    May  7 14:22:33 sacmini com.apple.launchd[1] (com.apple.collabcored2): Throttling respawn: Will start in 9 seconds

  • Connection refused with java, but not javaw

    I have a ServerSocket based program...listening on a port. It is really a very simple program. And I can run it with javaw. Then I can use another problem, for example, telnet to connect to that port, just to prove I can connect to that port. Everything is fine.
    Now if I run the exactly the same ServerSocket program with java, then I got the connection refused error.
    It is weird.
    Do you know why? Do you know a good socket troubleshooting tool on Windows? I am afraid of the viruses, so I haven't downloaded any free tools yet.

    You're right.
    The Norton personal firewall does not handle localhost to localhost correctly. I do all the tests on the same machine. The netstat -an shows the port is listening in either case. But now I know the firewall blocks one of them silently. No rule prompt was triggered. Worse, no logging produced for that particular access.
    Thanks. You've been very helpful.

  • Fms edge connected refused with unknown reason.

    i found some error logs in edge.*.log, like this.
    2012-11-14 18:39:04 3903 (e)2661034 Connect failed ( , 1161928336 ) : Connect failed: Connection refused (111) -
    2012-11-14 18:39:46 3903 (e)2661034 Connect failed ( , 16 ) : Connect failed: Connection refused (111) -
    2012-11-14 18:40:31 3903 (e)2661034 Connect failed ( , 3 ) : Connect failed: Connection refused (111) -
    2012-11-14 19:47:46 3903 (e)2661034 Connect failed ( , 16 ) : Connect failed: Connection refused (111) -
    2012-11-14 19:48:28 3903 (e)2661034 Connect failed ( , 16 ) : Connect failed: Connection refused (111) -
    2012-11-14 19:49:10 3903 (e)2661034 Connect failed ( , 1170349712 ) : Connect failed: Connection refused (111)
    it seems because of invalid ports resulst in TCP connection faild.But abvously, these ports are not used in the applications, even some port is out of valid port range. Does anyone konws what the reason.
    btw, there are two adaptors on our machine, one is for intranet, the other is for internet. And the lattter is configured with to IPs
    like this:
    eth0      Link encap:Ethernet  HWaddr 00:21:5E:26:62:28 
              inet addr:*******  Bcast:******* Mask:255.255.255.0
              inet6 addr: fe80::221:5eff:fe26:6228/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:116994653 errors:0 dropped:0 overruns:0 frame:0
              TX packets:151851798 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:52655302829 (49.0 GiB)  TX bytes:124235260628 (115.7 GiB)
              Interrupt:106 Memory:ce000000-ce012800
    eth0:1    Link encap:Ethernet  HWaddr 00:21:5E:26:62:28 
              inet addr:****  Bcast:****  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

    Is there any info in the node manager log files?
    You can try changing the health check timeout.
    # Health Check Interval: Specify the interval (in seconds) between Node Manager health state queries to the Managed Server. Enter a value between 1 and 2147483647 seconds (default is 180 seconds).
    # Health Check Timeout: Enter the number of seconds that Node Manager will await a response to a health state query. If the timeout is reached, Node Manager assumes the Managed Server is "failed", and kills the process. Enter a value between 1 and 2147483647 seconds (default is 60 seconds).

  • Xcode was failed while connecting SVN with https

    My Xcode is 4.3 (1175)
    While I try to add a repository in organiser with HTTPS protocol, the Xcode will crash. Detais is following texts.
    It seems that it's something wrong in this method "savePasswordToKeychainForSubversionHTTPWithProtectionSpace"
    Process:         Xcode [354]
    Path:            /Applications/Xcode.app/Contents/MacOS/Xcode
    Identifier:      com.apple.dt.Xcode
    Version:         4.3 (1175)
    Build Info:      IDEApplication-1175000000000000~14
    App Item ID:     497799835
    App External ID: 6076348
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [208]
    Date/Time:       2012-02-24 09:05:11.137 +0800
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          3569 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  2475 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      01E9BFEC-2903-48AC-883D-84F81041B38F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    ProductBuildVersion: 4E109
    ASSERTION FAILURE in /SourceCache/IDEFoundation/IDEFoundation-1189/Framework/Classes/Model/SourceCon trol/IDESourceControlTree.m:1136
    Details:  (realm) should not be nil.
    Object:   <IDESourceControlRepository: 0x4026acd00>
    Method:   -savePasswordToKeychainForSubversionHTTPWithProtectionSpace:
    Thread:   <NSThread: 0x40010a220>{name = (null), num = 1}
    Hints:   None
    Backtrace:
      0  0x000000010d1d722f -[IDEAssertionHandler handleFailureInMethod:object:fileName:lineNumber:messageFormat:arguments:] (in IDEKit)
      1  0x000000010c6838d5 _DVTAssertionFailureHandler (in DVTFoundation)
      2  0x000000010ccf1449 -[IDESourceControlRepository savePasswordToKeychainForSubversionHTTPWithProtectionSpace:] (in IDEFoundation)
      3  0x000000010d1a82cc -[IDESourceControlSSLAuthenticationWindowController connectionDidFinishLoading:] (in IDEKit)
      4  0x00007fff8ca08662 ___NSURLConnectionDidFinishLoading_block_invoke_1 (in Foundation)
      5  0x00007fff8ca085e2 _NSURLConnectionDidFinishLoading (in Foundation)
      6  0x00007fff86e21c7e URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) (in CFNetwork)
      7  0x00007fff86ed1c7e URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) (in CFNetwork)
      8  0x00007fff86ed1e6a URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) (in CFNetwork)
      9  0x00007fff86dfcb49 URLConnectionClient::processEvents() (in CFNetwork)
    10  0x00007fff86dfc9ee MultiplexerSource::perform() (in CFNetwork)
    11  0x00007fff89b7b6e1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ (in CoreFoundation)
    12  0x00007fff89b7af4d __CFRunLoopDoSources0 (in CoreFoundation)
    13  0x00007fff89ba1d39 __CFRunLoopRun (in CoreFoundation)
    14  0x00007fff89ba1676 CFRunLoopRunSpecific (in CoreFoundation)
    15  0x00007fff86a5831f RunCurrentEventLoopInMode (in HIToolbox)
    16  0x00007fff86a5f5c9 ReceiveNextEventCommon (in HIToolbox)
    17  0x00007fff86a5f456 BlockUntilNextEventMatchingListInMode (in HIToolbox)
    18  0x00007fff84b24f5d _DPSNextEvent (in AppKit)
    19  0x00007fff84b24861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in AppKit)
    20  0x00007fff84b2119d -[NSApplication run] (in AppKit)
    21  0x00007fff84d9fb88 NSApplicationMain (in AppKit)
    22  0x000000010c5fceec (in Xcode)
    objc[354]: garbage collection is ON
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8b434ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff899807d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff89971a7a abort + 143
    3   com.apple.dt.IDEKit                     0x000000010d1d6c9e +[IDEAssertionHandler _handleAssertionWithLogString:] + 506
    4   com.apple.dt.DVTFoundation              0x000000010c6838d5 _DVTAssertionFailureHandler + 128
    5   com.apple.dt.IDEFoundation              0x000000010ccf1449 -[IDESourceControlRepository savePasswordToKeychainForSubversionHTTPWithProtectionSpace:] + 801
    6   com.apple.dt.IDEKit                     0x000000010d1a82cc -[IDESourceControlSSLAuthenticationWindowController connectionDidFinishLoading:] + 308
    7   com.apple.Foundation                    0x00007fff8ca08662 ___NSURLConnectionDidFinishLoading_block_invoke_1 + 122
    8   com.apple.Foundation                    0x00007fff8ca085e2 _NSURLConnectionDidFinishLoading + 81
    9   com.apple.CFNetwork                     0x00007fff86e21c7e URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 296
    10  com.apple.CFNetwork                     0x00007fff86ed1c7e URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 862
    11  com.apple.CFNetwork                     0x00007fff86ed1e6a URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 1354
    12  com.apple.CFNetwork                     0x00007fff86dfcb49 URLConnectionClient::processEvents() + 185
    13  com.apple.CFNetwork                     0x00007fff86dfc9ee MultiplexerSource::perform() + 212
    14  com.apple.CoreFoundation                0x00007fff89b7b6e1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    15  com.apple.CoreFoundation                0x00007fff89b7af4d __CFRunLoopDoSources0 + 253
    16  com.apple.CoreFoundation                0x00007fff89ba1d39 __CFRunLoopRun + 905
    17  com.apple.CoreFoundation                0x00007fff89ba1676 CFRunLoopRunSpecific + 230
    18  com.apple.HIToolbox                     0x00007fff86a5831f RunCurrentEventLoopInMode + 277
    19  com.apple.HIToolbox                     0x00007fff86a5f5c9 ReceiveNextEventCommon + 355
    20  com.apple.HIToolbox                     0x00007fff86a5f456 BlockUntilNextEventMatchingListInMode + 62
    21  com.apple.AppKit                        0x00007fff84b24f5d _DPSNextEvent + 659
    22  com.apple.AppKit                        0x00007fff84b24861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    23  com.apple.AppKit                        0x00007fff84b2119d -[NSApplication run] + 470
    24  com.apple.AppKit                        0x00007fff84d9fb88 NSApplicationMain + 867
    25  com.apple.dt.Xcode                      0x000000010c5fceec 0x10c5fc000 + 3820
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8b4357e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8d2675be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8d26614e _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8b43367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b432d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89b996fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89ba1e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89ba1676 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8ca05ffb +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8c9fa74e -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8c9fa6c6 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8b43367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b432d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89b996fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89ba1e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89ba1676 CFRunLoopRunSpecific + 230
    5   com.apple.DTDeviceKit                   0x00000001123ac288 -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 298
    6   com.apple.Foundation                    0x00007fff8c9fa74e -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8c9fa6c6 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8b434df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff89beacdb __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 5:: DYMobileDeviceManager
    0   libsystem_kernel.dylib                  0x00007fff8b43367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b432d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89b996fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89ba1e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89ba1676 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8c9abf9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff8c9abe8b -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.Foundation                    0x00007fff8c9fa74e -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff8c9fa6c6 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8b434bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89982274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff8a2abb3c CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff8a2ab85d _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8b434bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89982274 _pthread_cond_wait + 840
    2   com.apple.Xcode.DevToolsCore            0x0000000110022bc8 -[XCInvocationQueue _processInvocationsInThreadSlotNumber:] + 348
    3   com.apple.Foundation                    0x00007fff8c9fa74e -[NSThread main] + 68
    4   com.apple.Foundation                    0x00007fff8c9fa6c6 __NSThread__main__ + 1575
    5   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 9:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8b43367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b432d71 mach_msg + 73
    2   com.apple.CoreGraphics                  0x00007fff88250ba7 _CGSReenableUpdateForConnections + 214
    3   com.apple.CoreGraphics                  0x00007fff88250a3a CGSReenableUpdateForConnections + 549
    4   com.apple.CoreGraphics                  0x00007fff8825080e CGSReenableUpdate + 25
    5   com.apple.AppKit                        0x00007fff84d5bc1c -[NSUIHeartBeat _heartBeatThread:] + 1640
    6   com.apple.Foundation                    0x00007fff8c9fa74e -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8c9fa6c6 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8b435192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89980594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89981b85 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8b43367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b432d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89b996fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89ba1e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89ba1676 CFRunLoopRunSpecific + 230
    5   com.apple.DebugSymbols                  0x00007fff8f75b2f2 _ZL20SpotlightQueryThreadPv + 434
    6   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8b434e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89934dea nanosleep + 164
    2   com.apple.CoreSymbolication             0x00007fff8bfb63bb cleaner_thread_main(void*) + 42
    3   libsystem_c.dylib                       0x00007fff8997e8bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff89981b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6c1f9c78  rdx: 0x0000000000000000
      rdi: 0x0000000000000507  rsi: 0x0000000000000006  rbp: 0x00007fff6c1f9ca0  rsp: 0x00007fff6c1f9c78
       r8: 0x00007fff73c78fb8   r9: 0x0000000000000001  r10: 0x00007fff8b434d0a  r11: 0xffffff80002d8220
      r12: 0x00000000000001bb  r13: 0x00007fff74303040  r14: 0x00007fff73c7b960  r15: 0x00007fff6c1f9da8
      rip: 0x00007fff8b434ce2  rfl: 0x0000000000000246  cr2: 0x000000010dc52ad0
    Logical CPU: 0
    Binary Images:
           0x10c5fc000 -        0x10c5fcff7  com.apple.dt.Xcode (4.3 - 1175) <FDAC3476-EBC0-3BE1-9326-1B78803D58E8> /Applications/Xcode.app/Contents/MacOS/Xcode
           0x10c604000 -        0x10c804ff7  com.apple.dt.DVTFoundation (4.3 - 1188) <6F1C8DFC-DE61-3581-840B-D5907D12E836> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versi ons/A/DVTFoundation
           0x10c8f3000 -        0x10cb1efff  com.apple.dt.DVTKit (4.3 - 1172) <2C9CB53E-7972-3949-9E74-8B69357B558D> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/D VTKit
           0x10cc66000 -        0x10ceb2fff  com.apple.dt.IDEFoundation (4.3 - 1189) <E27832C4-19FA-3575-B73A-7CD5AF594267> /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/ IDEFoundation
           0x10d03d000 -        0x10d4a2fff  com.apple.dt.IDEKit (4.3 - 1202) <87046C5A-2BCF-3027-A878-5054F09D9556> /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
           0x10d780000 -        0x10dd29fff +libclang.dylib (318.0.45 - compatibility 1.0.0) <B82A38F4-E5B2-3616-BC74-E568B5E3D807> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/lib/libclang.dylib
           0x10de6a000 -        0x10de6bff7  com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) <DC1AAB10-0F8F-3227-9ECF-4E8AC296AE3E> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framew ork/Versions/A/DVTDeveloperModeHelper
           0x10e073000 -        0x10e073ffd +cl_kernels (??? - ???) <12877718-D528-429D-9C74-1C24C3134318> cl_kernels
           0x10e093000 -        0x10e093ff5 +cl_kernels (??? - ???) <A9FD38D1-377C-46BB-B2B6-2951AB320512> cl_kernels
           0x10e147000 -        0x10e156ff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x10f273000 -        0x10f273ff7 +cl_kernels (??? - ???) <284DE798-56AA-4D0B-A683-CB2BC80487E9> cl_kernels
           0x10f29c000 -        0x10f29cff3 +cl_kernels (??? - ???) <EED2D60F-2EE7-42DF-9315-E73071677F6C> cl_kernels
           0x10f2a0000 -        0x10f2a0ff3 +cl_kernels (??? - ???) <EED2D60F-2EE7-42DF-9315-E73071677F6C> cl_kernels
           0x10f2f8000 -        0x10f344fff  com.apple.dt.IDE.IDEFindReplace (4.3 - 1170) <ED86F8C6-19ED-3710-B03B-D13D95CAFA4E> /Applications/Xcode.app/Contents/PlugIns/IDEFindReplace.ideplugin/Contents/MacO S/IDEFindReplace
           0x10f37d000 -        0x10f3c7fff  com.apple.DADocSetAccess (4.3 - 1169) <F4857B4C-7710-39E6-BF99-9F969C3F8358> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Vers ions/A/DADocSetAccess
           0x10f3f3000 -        0x10f40efff  com.apple.DADocSetManagement (4.3 - 1168) <28E2FCD0-CC52-3F34-90A5-6A34DB9763C4> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/ Versions/A/DADocSetManagement
           0x10f423000 -        0x10f46dfff  com.apple.dt.IDE.IDEDocViewer (4.3 - 1172) <644546C8-8FF8-33F8-A2E4-99FE28F3CE02> /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/ IDEDocViewer
           0x10f4aa000 -        0x10f785fff  com.apple.dt.IDE.IDEInterfaceBuilderKit (4.3 - 2177) <B6E93D9D-E2C4-3FAA-8630-F656D7EEC3CA> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Conte nts/MacOS/IDEInterfaceBuilderKit
           0x10f9bd000 -        0x10fb37fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (4.3 - 2177) <5FEB887D-86D0-37D3-A286-6255416A44DB> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.id eplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration
           0x10fc3b000 -        0x10fc85fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <B17217E4-837F-35F8-A3EF-243FF2C3557B> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
           0x10fcf7000 -        0x10fda9ff7  com.apple.dt.IDE.IDEDevkitRefactoring (4.3 - 1170) <26723DF9-54C7-3A47-A339-BE7EF265E273> /Applications/Xcode.app/Contents/PlugIns/IDEDevkitRefactoring.ideplugin/Content s/MacOS/IDEDevkitRefactoring
           0x10fe12000 -        0x10fe23fff  com.apple.dt.IDE.IDEQuickHelp (4.3 - 1171) <3B6C9239-EEAD-39B6-846B-CC29A71C7AA4> /Applications/Xcode.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/ IDEQuickHelp
           0x10fe35000 -        0x10fec0ff7  com.apple.dt.IDE.IDESourceEditor (4.3 - 1172) <038A4955-3734-396B-8F0A-AAB5D619A942> /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/Mac OS/IDESourceEditor
           0x10ff1c000 -        0x10ff31ff7  com.apple.dt.IDE.Xcode3Core (4.3 - 1192) <878F56CA-ACD3-3D6F-9BA0-AD55B6D65772> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xc ode3Core
           0x10ff41000 -        0x1101eafff  com.apple.Xcode.DevToolsCore (6.3 - 1192) <48A749DE-36E2-385A-9E56-BBF50507590D> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsCore.framework/Versions/A/DevToolsCore
           0x11034d000 -        0x110356ff7  com.apple.DevToolsFoundation (6.3 - 1192) <EBF2DEA7-6166-3FEB-8B1E-1A2702D5658F> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
           0x110360000 -        0x110396ff7  com.apple.Xcode.DevToolsSupport (6.3 - 1192) <0E7196E6-B044-38F7-BEC2-30335F384AEA> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsSupport.framework/Versions/A/DevToolsSupport
           0x110437000 -        0x11044eff7  com.apple.dt.IDE.SharedPlugInUtilities (4.3 - 1165) <7D0A8E4B-4581-3936-B0A2-0ED78355C8C5> /Applications/Xcode.app/Contents/PlugIns/SharedPlugInUtilities.ideplugin/Conten ts/MacOS/SharedPlugInUtilities
           0x11045d000 -        0x110556fff  com.apple.dt.IDE.Xcode3UI (4.3 - 1192) <2ECF77B7-7909-3F91-BFC0-57E49962FE6F> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcod e3UI
           0x110601000 -        0x110620fff  com.apple.dt.dbg.DebuggerFoundation (4.3 - 1184) <5E7B8CF7-9E52-39E1-8487-C190F77C9CC5> /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/ MacOS/DebuggerFoundation
           0x11063e000 -        0x110644ff7  com.apple.dt.IDE.HexEditor (4.3 - 1169) <939AF3B6-1088-3E6F-A630-878A5958786B> /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/Hex Editor
           0x11064c000 -        0x11064cff7  com.apple.dt.IDE.IDEAppleScriptEditor (4.3 - 1165) <828BB4EA-4613-3F76-8184-5C3861CBC759> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Content s/MacOS/IDEAppleScriptEditor
           0x110653000 -        0x110655ff7  com.apple.dt.gpu.GPUTraceDebugger (4.3 - 62) <446DFA3F-D72F-3011-B150-7B9A40E61EB5> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/Ma cOS/GPUTraceDebugger
           0x11065a000 -        0x110664fff  com.apple.dt.gpu.GPUDebuggerKit (4.3 - 62) <376D6E67-6603-31DB-9CD9-3B317C115102> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacO S/GPUDebuggerKit
           0x110673000 -        0x110676ff7  com.apple.dt.IDE.IDEPDFViewer (4.3 - 1165) <4B461D5A-6EA4-38E2-BD11-447AD665A026> /Applications/Xcode.app/Contents/PlugIns/IDEPDFViewer.ideplugin/Contents/MacOS/ IDEPDFViewer
           0x1106fd000 -        0x110759ff7  com.apple.dt.dbg.DebuggerUI (4.3 - 1184) <068B6960-4868-3535-927B-588B9577C878> /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/De buggerUI
           0x1107a2000 -        0x1107d8ff7 +com.ridiculousfish.HexFiendFramework (4.3 - 1169) <89E8C0B9-2EA8-3372-88AC-613F08922C84> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A /HexFiend
           0x1107fe000 -        0x110873ff7  com.apple.dt.gpu.GPUDebuggerFoundation (4.3 - 62) <C3FDC3FB-A077-368E-8CB4-5103E8F443EB> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Conten ts/MacOS/GPUDebuggerFoundation
           0x1108af000 -        0x110922ff7  com.apple.GPUTools (1.0 - 93.6.1) <A46EB6B5-7757-30E3-9CDA-347A633C2EBB> /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A /GPUTools
           0x11096d000 -        0x110976fff  com.apple.GPUToolsInterface (1.0 - 1.4) <A3B6C793-EEDA-324C-ADEC-EE9BD43AE243> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/V ersions/A/GPUToolsInterface
           0x11097f000 -        0x110986fff  com.apple.DVTiPhoneSimulatorRemoteClient (4.3 - 1165) <DD632C42-A949-3BAA-B7CC-BBFA071B15B8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/PrivateFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Vers ions/A/DVTiPhoneSimulatorRemoteClient
           0x11098f000 -        0x11099bff7  com.apple.dt.IDE.IDEQuickLookEditor (4.3 - 1168) <AC12BD76-6E56-301E-B323-8375BA525F29> /Applications/Xcode.app/Contents/PlugIns/IDEQuickLookEditor.ideplugin/Contents/ MacOS/IDEQuickLookEditor
           0x1109ab000 -        0x1109b1fff  com.apple.dt.ScriptingDefinitionEditor (4.3 - 1165) <AA2A69E3-A570-3F5D-8DBC-51B78DCF3C23> /Applications/Xcode.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Co ntents/MacOS/ScriptingDefinitionEditor
           0x1109b8000 -        0x1109cafff  com.apple.dt.IDE.IDERTFEditor (4.3 - 1168) <B685B6FE-924A-3F59-97C9-58702738B951> /Applications/Xcode.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/ IDERTFEditor
           0x1109da000 -        0x1109e2fff  com.apple.dt.PlistEditor (4.3 - 1168) <25B9F7A7-3D7B-31CC-8055-937855A9D2E8> /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/P listEditor
           0x1109ec000 -        0x1109edff7  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchEditingSupport (4.3 - 1173) <53A8767E-306C-3CD5-B43F-C2BDE5469471> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchEditingSuppor t.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchEditingSupport
           0x1112f0000 -        0x1112f1ff7  com.apple.dt.dbg.DebuggerGDBService (4.3 - 1184) <CB209D59-D20D-30BC-9E3C-4866872D1564> /Applications/Xcode.app/Contents/PlugIns/DebuggerGDBService.ideplugin/Contents/ MacOS/DebuggerGDBService
           0x1112f6000 -        0x1112f7ff7  com.apple.dt.dbg.DebuggerLLDBService (4.3 - 1184) <0F84C222-13D5-38BC-AA8C-7A7F5A865796> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents /MacOS/DebuggerLLDBService
           0x1112fc000 -        0x11139fff7  com.apple.dt.IDE.IDEiPhoneSupport (4.3 - 1191) <C67FACDC-0EED-3BA4-A213-C384CDA27F4A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPho neSupport
           0x1113ed000 -        0x111419ff7  com.apple.framework.ConfigurationProfiles (3.1 - 437) <925BEA8C-92D6-329E-B597-E9E8AC814900> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/Co nfigurationProfiles
           0x11142f000 -        0x111447fff  com.apple.DeviceLinkX (5.0 - 256) <886750BE-4D72-37C2-B443-B1446507F998> /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
           0x111458000 -        0x111459fff  com.apple.dt.IDE.IDEInterfaceBuilderAutomator (4.3 - 1117) <2FB3839D-8659-357A-AF4D-A09CC2861F77> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderAutomator.ideplugin /Contents/MacOS/IDEInterfaceBuilderAutomator
           0x111ba6000 -        0x111c14ff7  com.apple.GPUToolsCore (1.0 - 93.6.1) <73CDDD3C-525C-389D-870A-737B79A1A514> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versio ns/A/GPUToolsCore
           0x111c49000 -        0x111cbafff  com.apple.GPUToolsAnalysis (1.0 - 1.4) <CFA7F5BA-1548-3590-AF79-B4CD059E755E> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsAnalysis.framework/Ve rsions/A/GPUToolsAnalysis
           0x111cf4000 -        0x111d6cff7  com.apple.dt.gpu.GPUTraceDebuggerUI (4.3 - 62) <F9838D50-08C0-3FA5-9B1F-6F1AAEC5D2CB> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/ MacOS/GPUTraceDebuggerUI
           0x111d9b000 -        0x111dfcfff  com.apple.dt.gpu.GPURenderTargetEditor (4.3 - 62) <07921167-EAA1-336D-87DE-F3892D548168> /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Conten ts/MacOS/GPURenderTargetEditor
           0x111e43000 -        0x111f9ffff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (4.3 - 1173) <4F60AF64-5547-3D9D-82C4-257A2D68E483> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchIntegration.i deplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration
           0x11203c000 -        0x11210eff7  com.apple.dt.IDE.IDEModelEditor (4.3 - 1170) <F845AD74-6E6D-3BFA-BD19-06FCC19DA4F7> /Applications/Xcode.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacO S/IDEModelEditor
           0x11219b000 -        0x112201ff7  com.apple.dt.IDE.IDEModelFoundation (4.3 - 1170) <FFACA56E-CEDD-3525-BEA0-1B7F10C3E2C7> /Applications/Xcode.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/ MacOS/IDEModelFoundation
           0x11224f000 -        0x11227efff  com.apple.dt.IDE.IDELogNavigator (4.3 - 1166) <28914892-C8AF-3729-A5CB-401E0E98BB6B> /Applications/Xcode.app/Contents/PlugIns/IDELogNavigator.ideplugin/Contents/Mac OS/IDELogNavigator
           0x112360000 -        0x112388fff  com.apple.DTDeviceKitBase (??? - 1188) <A1AD9697-1154-39DD-A719-B0E4570772AB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase
           0x1123a4000 -        0x112407fff  com.apple.DTDeviceKit (4.2 - 1188) <E9CFC817-7358-3D0E-B339-E154F277E9B2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit
           0x11244f000 -        0x112469ff7  com.apple.dt.IDE.IDEArchivedApplicationsViewer (4.3 - 1186) <B1A56DFE-E92B-3692-93D7-4450BF256213> /Applications/Xcode.app/Contents/PlugIns/IDEArchivedApplicationsViewer.ideplugi n/Contents/MacOS/IDEArchivedApplicationsViewer
           0x112483000 -        0x1124aafff  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <B0925A5D-5355-3ECE-BF2F-E576FF105F5A> /usr/lib/libssl.0.9.7.dylib
           0x112bd5000 -        0x112c6afff  com.apple.mobiledevice (503.2 - 503.2) <F86997CD-A6C2-2D06-BCB7-CC17EEE76BA6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x112cb8000 -        0x112d9bfff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x112e74000 -        0x112e80ff7  com.apple.dt.IDE.IDEInterfaceBuilderCocoa (4.3 - 1117) <DAD18DDF-B81B-36BC-BFCE-56A73C1D8A4E> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoa.ideplugin/Con tents/MacOS/IDEInterfaceBuilderCocoa
           0x112e90000 -        0x112ec1fff  com.apple.DiscRecordingUI (6.0.3 - 6030.4.1) <43C662F0-62BF-3F0C-9052-DD1343CC6F89> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
           0x113019000 -        0x113164ff7  com.apple.audio.units.Components (1.7.2 - 1.7.2) <DC2BA4BE-E91A-3680-A88A-D8A709C48909> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x113206000 -        0x11320afff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x11320f000 -        0x113215fff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11321a000 -        0x113222fff  com.apple.xcode.plug-in.CoreBuildTasks (6.3 - 1192) <8E6A8B02-68DC-3099-AC83-EAAF07AA2C2D> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/Co reBuildTasks
           0x113229000 -        0x11322cfff  com.apple.platform.iphoneos.plugin (1.0 - 1.0) <4C490C95-6F4E-36DF-A948-61CCD38B312A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/iPhoneOS Build System Support.xcplugin/Contents/MacOS/iPhoneOS Build System Support
           0x113b60000 -        0x113b65ff7  libgermantok.dylib (??? - ???) <307E75E1-76E9-3CF6-A13A-AFB92FD7BC5B> /usr/lib/libgermantok.dylib
           0x113c08000 -        0x113c08ff1 +cl_kernels (??? - ???) <97E4D7CA-8EFE-4B33-96FA-FF47461A8DE5> cl_kernels
           0x113c28000 -        0x113c28ffe +cl_kernels (??? - ???) <E05F45A1-4F99-4D9F-95B2-101950DC8D35> cl_kernels
           0x113c2c000 -        0x113c2cff5 +cl_kernels (??? - ???) <7254F8AA-2814-4FBE-904C-2335FFD729E8> cl_kernels
           0x113c30000 -        0x113c30ff5 +cl_kernels (??? - ???) <4B1A9ACC-A5A4-4DE9-A87C-9139B6B7D427> cl_kernels
           0x113de5000 -        0x113e1eff7  com.apple.dt.IDE.IDERepositoryViewer (4.3 - 1169) <E9930394-F05A-3E8F-BE34-C4BFAC35CE29> /Applications/Xcode.app/Contents/PlugIns/IDERepositoryViewer.ideplugin/Contents /MacOS/IDERepositoryViewer
           0x113e57000 -        0x113e68fff  com.apple.dt.IDE.IDEGit (4.3 - 1169) <0C94376A-1F93-3C6D-9572-261B970664C8> /Applications/Xcode.app/Contents/PlugIns/IDEGit.ideplugin/Contents/MacOS/IDEGit
           0x113e77000 -        0x113e84fff  com.apple.dt.IDE.IDESubversion (4.3 - 1169) <E739E773-9C1D-34E5-815D-7DFF37FB4987> /Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS /IDESubversion
           0x113e8f000 -        0x113eabfff  com.apple.dt.IDE.IDESymbolNavigator (4.3 - 1170) <F9F21A98-4261-307D-BCBE-8175B0713661> /Applications/Xcode.app/Contents/PlugIns/IDESymbolNavigator.ideplugin/Contents/ MacOS/IDESymbolNavigator
           0x113ec1000 -        0x113ecdfff  com.apple.dt.IDE.IDEIssueNavigator (4.3 - 1165) <B3074911-E642-3BF7-B793-84F6AB04B921> /Applications/Xcode.app/Contents/PlugIns/IDEIssueNavigator.ideplugin/Contents/M acOS/IDEIssueNavigator
           0x1140ea000 -        0x1140edff7  libCoreFSCache.dylib (??? - ???) <0E2C3D54-7D05-35E8-BA10-2142B7C03946> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x114108000 -        0x114118fff  com.apple.dt.IDE.IDEStructureNavigator (4.3 - 1171) <DF1B419F-EBDA-39C6-847C-5953CA5ADEF9> /Applications/Xcode.app/Contents/PlugIns/IDEStructureNavigator.ideplugin/Conten ts/MacOS/IDEStructureNavigator
           0x114125000 -        0x11412ffff  com.apple.dt.IDE.IDEProjectsOrganizer (4.3 - 1165) <9910D540-C588-3ECA-BE9F-D2669BDA5B47> /Applications/Xcode.app/Contents/PlugIns/IDEProjectsOrganizer.ideplugin/Content s/MacOS/IDEProjectsOrganizer
           0x114144000 -        0x1141d5ff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <2683BD70-B7EE-3A60-A39C-2360B3C2A301> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x1141f6000 -        0x1141f6ff3 +cl_kernels (??? - ???) <25436C48-2D08-41B1-882A-E27C50737381> cl_kernels
           0x1141fa000 -        0x1141faff7 +cl_kernels (??? - ???) <ED255DE3-614F-40D1-ABCA-2CBD7966CB97> cl_kernels
           0x1141ff000 -        0x114200ffb +cl_kernels (??? - ???) <D44A8505-DBB2-4D62-BC63-A28A4DA7E36F> cl_kernels
           0x114204000 -        0x114204ff5 +cl_kernels (??? - ???) <D2739B77-7298-4DD3-9F64-5E2602F5225C> cl_kernels
           0x11470e000 -        0x114714fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <C0C4CC37-F2FD-301C-A830-EC54D86612D5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x11473b000 -        0x11473bff5 +cl_kernels (??? - ???) <0B788F6C-6A3C-4252-AB2E-ACDF524BD935> cl_kernels
           0x11473d000 -        0x1147d0ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1147f3000 -        0x1147f3ffd +cl_kernels (??? - ???) <FE181902-08B9-4241-AA87-40B12CE832B1> cl_kernels
           0x1147f9000 -        0x1147faffc +cl_kernels (??? - ???) <9A8FA6CE-DC3D-4869-AD18-2FF40CE2CA00> cl_kernels
           0x114925000 -        0x114926ff3 +cl_kernels (??? - ???) <41180ECD-5F71-4246-98D6-A786B20C5896> cl_kernels
           0x115a9d000 -        0x115aa1ff7  com.apple.dt.gpu.GPUDebuggeriOSSupport (4.3 - 2) <105C4EE3-7B15-3540-AC40-10AB448936CD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GP UDebuggeriOSSupport
           0x115aa7000 -        0x115ab5ff7  com.apple.GPUToolsMobileFoundation (1.0 - 2.4) <34A5A8D4-B24E-3F2C-8600-356C700784B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToo lsMobileFoundation
           0x115b78000 -        0x115b7afff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <0926799B-A5FA-3CC7-B4EA-88C644EA139C> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x115b8c000 -        0x115b8ffff  com.apple.DirectoryServicesSource (1.2 - 1083) <7EDBCB22-3D01-3E95-8173-0313E6292B8B> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x115b97000 -        0x115bf8fff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <AB709DA1-29BE-35B3-A271-6D0C5C008B1F> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x1192ec000 -        0x119315fff  libPDFRIP.A.dylib (600.0.0 - compatibility 64.0.0) <1C157125-306E-385C-B154-059198F56907> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
           0x11971e000 -        0x11971fff3 +cl_kernels (??? - ???) <48025629-F329-4437-AF31-F447EDDE7846> cl_kernels
           0x119763000 -        0x119791ff7  GLRendererFloat (??? - ???) <0C213C61-C08C-3B5D-85A4-EB4660AF55BF> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11987f000 -        0x1198bcfff +__DATA (210.0.0 - compatibility 1.0.0) <E198603B-C205-3366-82BD-7D642FF2F909> __DATA
           0x11987f000 -        0x1198bcfff  com.apple.Ubiquity (1.1 - 210) <E198603B-C205-3366-82BD-7D642FF2F909> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1198da000 -        0x1198fafff  com.apple.ChunkingLibrary (1.0 - 127) <ED9D3079-A201-30D8-9FC4-2F5860100E63> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x119b66000 -        0x119b6aff7  com.apple.dt.IDE.IDEInstrumentsService (4.3 - 1184) <3C94963D-0077-32DE-AD08-71ECBBACDFF5> /Applications/Xcode.app/Contents/PlugIns/IDEInstrumentsService.ideplugin/Conten ts/MacOS/IDEInstrumentsService
           0x119b72000 -        0x119b73ff7  com.apple.dt.IDE.IDEAppleScriptCore (4.3 - 1165) <AA233497-1D43-32B8-B298-E811102CAD57> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptCore.ideplugin/Contents/ MacOS/IDEAppleScriptCore
           0x119db0000 -        0x119f49fff  GLEngine (??? - ???) <8BA26192-A4D7-362D-8B57-5FCF4B706A25> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x119f7d000 -        0x11a076fff  libGLProgrammability.dylib (??? - ???) <B7710703-8652-36B8-83DD-4F216FAF0730> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x11a09c000 -        0x11a363fff  com.apple.ATIRadeonX3000GLDriver (7.18.11 - 7.1.8) <C358C1A0-0404-30DE-A5D9-CE6C2B9676B0> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
        0x7fff6c1fc000 -     0x7fff6c230baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff832eb000 -     0x7fff83302fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff83303000 -     0x7fff83303fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff83304000 -     0x7fff83312fff  com.apple.HelpData (2.1.2 - 72) <B99E743A-82C9-3058-8FD5-18668CA890F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff83313000 -     0x7fff8331dff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff8331e000 -     0x7fff8336aff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff83371000 -     0x7fff83402ff7  com.apple.PackageKit (2.0.2 - 169) <06B68AF6-038E-3634-82F6-84B90CCCCFE9> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff83403000 -     0x7fff83409ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8340a000 -     0x7fff834e8fff  com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff834e9000 -     0x7fff8353dff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8353e000 -     0x7fff83550ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff83551000 -     0x7fff83556ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff83557000 -     0x7fff83564fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83565000 -     0x7fff83566ff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff83567000 -     0x7fff83574ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff83575000 -     0x7fff83659e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8365a000 -     0x7fff83693fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff83694000 -     0x7fff83726ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff83750000 -     0x7fff83767fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83768000 -     0x7fff8376efff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8376f000 -     0x7fff8376ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8378c000 -     0x7fff837d4fff  com.apple.imfoundation (6.0 - 800) <A72F1D4B-FFA3-3104-8444-152B649271F5> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/Frameworks/IMFoun dation.framework/Versions/A/IMFoundation
        0x7fff837d9000 -     0x7fff837defff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff837df000 -     0x7fff83803fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83893000 -     0x7fff838c0fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff83f9d000 -     0x7fff84002ff7  com.apple.coredav (1.0.1 - 115.20) <9FC6D2B1-2F99-3B38-9F54-3694726B2082> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff840ba000 -     0x7fff840d7ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff840e4000 -     0x7fff841cffff  com.apple.backup.framework (1.3.1 - 1.3.1) <C933E52C-5BA6-386D-9B6A-8F98D8142A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff841d0000 -     0x7fff841d3fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff841d4000 -     0x7fff84203fff  com.apple.shortcut (2.1 - 2.1) <43C186C0-6B0F-39FA-976A-C307CC410495> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff84204000 -     0x7fff8426cff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8426d000 -     0x7fff8426dfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8426e000 -     0x7fff8426efff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8428f000 -     0x7fff8439cfff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8439d000 -     0x7fff843dcfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff84609000 -     0x7fff84636ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84637000 -     0x7fff84637fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff847ed000 -     0x7fff84946fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84947000 -     0x7fff84948ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff84949000 -     0x7fff8498bff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8498c000 -     0x7fff84a2eff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84a2f000 -     0x7fff84a57fff  com.apple.SystemConfiguration.EAP8021X (11.0.2 - ???) <9143B6E2-FD15-3D82-A08C-4299E94B4662> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff84ada000 -     0x7fff84ae7fff  com.apple.KerberosHelper (3.0 - 1.0) <5223379A-8854-36CF-B15C-44E0107EEE4C> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84ae8000 -     0x7fff84afaff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff84afb000 -     0x7fff84b1bfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff84b1c000 -     0x7fff85720fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff85725000 -     0x7fff85731ff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85732000 -     0x7fff85745ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff85746000 -     0x7fff8574cfff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8579c000 -     0x7fff857a1fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff857a2000 -     0x7fff857adff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff857ae000 -     0x7fff859b0fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff859b1000 -     0x7fff859b5fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff859b6000 -     0x7fff859b8ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff859b9000 -     0x7fff859cefff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff859cf000 -     0x7fff85cb1fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86005000 -     0x7fff86437fef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff86464000 -     0x7fff864aaff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
        0x7fff864c7000 -     0x7fff865e0fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff866e4000 -     0x7fff86957fff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff86958000 -     0x7fff86958fff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff86959000 -     0x7fff86976fff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
        0x7fff86977000 -     0x7fff86a55fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff86a56000 -     0x7fff86d80ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86d81000 -     0x7fff86d90fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff86d91000 -     0x7fff86d91fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff86df0000 -     0x7fff86df3fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff86df4000 -     0x7fff86f5bff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff86f5c000 -     0x7fff86f6eff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff86f6f000 -     0x7fff86f6ffff

    From the above error it seems Time-Zone on the server where Database/OBIEE are installed is not supported by Oracle Database. Please find below steps for resolution of this issue.
    Steps:
    1) Identify your Server Time-Zone. For example "Asia/Colombo".
    2) Check if it is a listed DB supported Time-Zones list, execute SQL Statement:
    SELECT unique tzname FROM V$TIMEZONE_NAMES where tzname = 'Asia/Colombo';
    3) Update your Server with another Time-Zone close/synonym to the original Time-Zone.
    In this example we would change to "Asia/Calcutta" instead "Asia/Colombo".
    SQL Statement: SELECT unique tzname FROM V$TIMEZONE_NAMES; will list you all supported Time-Zones.
    4) Continue your OBIEE 11gR1 installation.
    If this helps please mark:)
    Regards,
    Kishore

  • E3000 questions. Cisco Connect with https and turn off wireless?

    My old router died this weekend after 10 years and I have been wanting to get a faster router for a while anyways.
    I picked up a E3000 and set it up yesterday.
    The firmware is 1.0.03
    I have two main questions
    I changed the router settings so you can only browser manage the router through https and turned off http access to the router.
    Cisco Connect now doesn't work. Will Cisco Connect work with HTTPS? Do I have to do something to get it to work?
    I also didn't see a version number on Cisco Connect am I just not noticing it?
    I'd really like to shut off wireless on most days when I'm not home. I want the router to still be working since my desktop computers are directly connected to the router and I remote into them. Is there an easy way to shutoff the wireless and then easily turn it back on when I get home?
    thanks
    mike

    Mine works the same. It's probably designed that way for the manual way of logging into the setup page of the router.
    No, it seems no updates yet or see the need to have one.
    No, it doesn't have that option unfortunately.
    "The war between heaven and hell depends on the choices we make, and those choices require sacrifice. That's the test"

  • TCP DNS Connection Refused

    I am testing an application which uses tcp for dns.
    My ActionTec router is set to "Medium" so it should allow all outbound connections.
    When I use a dns server on my network all is well.   When I try to use the ActionTec for dns I get connection refused with tcp requests but udp requests go through. I suspect the dns server on the ActionTec does not support tcp but I would like confirmation in case there is a setting I can change to make it work.
    $ host yahoo.com
    yahoo.com has address 98.138.253.109
    yahoo.com has address 98.139.183.24
    yahoo.com has address 72.30.38.140
    yahoo.com mail is handled by 1 mta5.am0.yahoodns.net.
    yahoo.com mail is handled by 1 mta7.am0.yahoodns.net.
    yahoo.com mail is handled by 1 mta6.am0.yahoodns.net.
    $ host -T yahoo.com
    ;; Connection to 192.168.1.1#53(192.168.1.1) for yahoo.com failed: connection refused.
    Thanks,
    AustinPowered

    Keep in mind the ActionTecs are based around the dnsmasq lightweight DNS resolver if I remember correctly. If Verizon/ActionTec is using a version of dnsmasq older than v2.10, then it is a known limitation of dnsmasq to not support TCP queries. If someone can confirm what version the FiOS routers have, that would be great. This tool may be able to identify it:
    http://netalyzr.icsi.berkeley.edu/
    If you'd like me to analyze it, please send me a private message with the URL to your result, unless you don't mind your IP address being given out to the forums.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Urgent--custom servlet not working with https/gateway of the portal server

    We have created the custom servlet to add some more authentication to the login screen. I have explained detaildely below.
    We have set if password reset change password screen should come by using identity server.
    First screen comes which asks �user id� and �password�.
    after this next screen comes with �old password�, �New Password� and �Confirm Password� (as we have forcefully asked user to change password after reset by using identity server ).
    On this page we have added two new filed �Date of Birth� and �Date of Joining�.
    And we are forcefully transferring request to our Custom Servlet which will validate the �Date of Birth� and �Date of Joining� from the database and submit the same a form as required by Login Servlet to validate the default parameters �old Password�, �New Password� and �Confirm Password� (which is the default validation without adding custom Servlet).
    This whole process is working with �http� protocol and giving �unable to connect� host with �https� protocol.
    Without custom Servlet process is like this, which is working
    Login (usrid, password) � Login (Old Password, New Password, Confirm Password) � Portal home Page
    With custom Servlet , Which is not working with �https� Protocol. we are getting the message "Authentication Failed" screen.
    Login (usrid, password) --> Login (Old Password, New Password, Confirm Password , Date of Birth, Date of Joinig) --> Custom Servlet validate Date of Birth, Date of Joining --> Login (Old password, new Password, Confirm Password) --> Protal Home Page
    This one works with http, whereas this one gives the "Authentication Failed" screen with the https.
    Please let me know if anybody have implemented this and help me to resolve the issue.
    Best Regards
    Ramkumar

    Hi,
    I am also getting this error message in the sun ONE webserver error log file....
    [20/Nov/2004:13:42:39] failure ( 6162): for host 172.16.5.21 trying to GET /amserver/UI/Login, service-j2ee reports:
    StandardWrapperValve[LoginServlet]: WEB2792: Servlet.service() for servlet LoginServlet threw exception
    com.iplanet.jato.CompleteRequestException
    at com.sun.identity.authentication.UI.AuthenticationServletBase.onUncaughtException(AuthenticationServletBase
    .java:141)
    at com.iplanet.jato.ApplicationServletBase.fireUncaughtException(ApplicationServletBase.java:1023)
    at com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:469)
    at com.iplanet.jato.ApplicationServletBase.doPost(ApplicationServletBase.java:324)
    at com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:294)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:771)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:322)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:586)
    Regards
    Ramkumar R

  • Connection refused when trying to getOutputStream from https connection

    Hi all !
    I want to make an https connection with a server to send/get the request/response
    What can be the cause of the following error in the following code testHttps.java?
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unknown Source)
    at Test.testHttps.main(testHttps.java:46)
    Exception in thread "main" java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
    at Test.testHttps.main(testHttps.java:51)
    testHttps.java
    package Test;
    import java.io.;
    import java.net.;
    import javax.net.ssl.*;
    public class testHttps {
    public static void main(String args[]) throws Exception {
    //System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    // Create a trust manager that does not validate certificate chains
    TrustManager[] trustAllCerts = new TrustManager[]{
    new X509TrustManager() {
    public java.security.cert.X509Certificate[] getAcceptedIssuers() {
    return null;
    public void checkClientTrusted(
    java.security.cert.X509Certificate[] certs, String authType) {
    public void checkServerTrusted(
    java.security.cert.X509Certificate[] certs, String authType) {
    // Install the all-trusting trust manager
    try {
    SSLContext sc = SSLContext.getInstance("SSL");
    sc.init(null, trustAllCerts, new java.security.SecureRandom());
    HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
    } catch (Exception e) {
    System.out.println("Error" e);
    // Now you can access an https URL without having the certificate in the truststore
    try {
    URL url = new URL("https://..............");-->//address of the server given here
    URLConnection conn = url.openConnection();
    HttpsURLConnection urlConn = (HttpsURLConnection) conn;
    urlConn.setDoOutput(true);
    OutputStreamWriter wr = null;
    try{
    wr = new OutputStreamWriter(conn.getOutputStream());
    catch(Exception e){
    e.printStackTrace();
    BufferedReader in = new BufferedReader(new InputStreamReader(urlConn.getInputStream()));
    String str;
    while( (str=in.readLine()) != null) {
    System.out.println(str);
    } catch (MalformedURLException e) {
    System.out.println("Error in SLL Connetion" +e);
    HostnameVerifier hv = new HostnameVerifier()
    public boolean verify(String urlHostName, SSLSession session)
    System.out.println("Warning: URL Host: " urlHostName " vs. "
    session.getPeerHost());
    return true;
    want to ignore certificate validation.
    plese help me..
    hi brucechapman, as you suggested me, i posted in Core API- networking forum, now please gimme a solution
    Thanks in advance.

    hi brucechapman,
    ran the NetTest program, got the following exception:
    trigger seeding of SecureRandom
    done seeding SecureRandom
    Exception in thread "main" java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
         at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at Test.NetTest.main(NetTest.java:40)
    NetTest.java:40 -- InputStream is = url.openStream(); at this ling throwing exception.
    For the following program, i have added the argument -Djavax.net.ssl.trustStore=cacerts
    i have exported the certificate from IE and added to the keystore.
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.security.Security;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    public class Communicator {
    public static void main(String[] args) {
    try {
    int port = 34443;
         String strReq = "xml content ";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault();
    SSLSocket socket = (SSLSocket) factory.createSocket("jyoti-win2k8-32", port);
    //Writer out = new OutputStreamWriter(socket.getOutputStream());
    //out.write("GET http://" + "hostname" + "/ HTTP 1.1\r\n");
    // out.write("\r\n");
    //out.write(strReq);
    //out.flush();
    OutputStreamWriter wr = null;
    try{
         wr = new OutputStreamWriter(socket.getOutputStream());
         catch(Exception e){
              e.printStackTrace();
         System.out.println("got output stream");
         try{
         wr.write(strReq);
         //System.out.println("response code : "+conn.getResponseCode());
         System.out.println("written");
         wr.flush();
         catch(IOException e){
              e.printStackTrace();
    InputStreamReader is = new InputStreamReader(socket.getInputStream(),"UTF8") ;
         BufferedReader rd = new BufferedReader(is);
         String line;int count=0;
         System.out.println("rd "+rd);
         while ((line = rd.readLine()) != null) {
              System.out.println("line "+line );
              System.out.println(count++);
              // Process line...
         System.out.println(count);
    rd.close();
    BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    int c;
    while ((c = in.read()) != -1) {
    System.out.write(c);
    //out.close();
    in.close();
    socket.close();
    } catch(IOException ex) {
    ex.printStackTrace();
    Exception :
    javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.AppOutputStream.write(Unknown Source)
         at sun.nio.cs.StreamEncoder.writeBytes(Unknown Source)
         at sun.nio.cs.StreamEncoder.implFlushBuffer(Unknown Source)
         at sun.nio.cs.StreamEncoder.implFlush(Unknown Source)
         at sun.nio.cs.StreamEncoder.flush(Unknown Source)
         at java.io.OutputStreamWriter.flush(Unknown Source)
         at Test.Communicator.main(Communicator.java:55)
    Caused by: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at sun.security.validator.PKIXValidator.<init>(Unknown Source)
         at sun.security.validator.Validator.getInstance(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.getValidator(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(Unknown Source)
         ... 7 more
    Caused by: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
         at java.security.cert.PKIXParameters.setTrustAnchors(Unknown Source)
         at java.security.cert.PKIXParameters.<init>(Unknown Source)
         at java.security.cert.PKIXBuilderParameters.<init>(Unknown Source)
         ... 19 more
    java.net.SocketException: Socket is closed
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.getInputStream(Unknown Source)
         at Test.Communicator.main(Communicator.java:66)
    please help me and provide me suggestion/solution. how to get rid off this trustanchor paramater exception
    what is it actualy?
    Thanks in advance.

  • Problems with SSH: Connection Refused

    Greetings fellow Arch users,
    I have hit a bit of a snag that I could really use some extra help getting around. I've tried everything I can think of (and everything that Google thought might work) and I have my back rather against a wall, so I thought I'd come here to see if anyone can offer some advice.
    To make a long story short, I am a college student and am attempting to set up an ssh server on a desktop at my house so I can access it remotely from the college. I have the computer set up and the server running, however I am having difficulty making connections to it from my laptop. I know that the server is running, because I can log into it both from the server itself (sshing into local host) and from my laptop when I use the internal IP address.
    The server is on a static IP address within the network(192.168.0.75), and my router is configured to forward TCP port 1500 to it (I'm using 1500 as the port for my ssh server). However, when I attempt to log into the ssh server using my network's external IP address, the connection is refused. I used nmap to scan my network and found that, even though the proper ports are forwarded to the proper place as far as my Router's configuration interface is concerned, port 1500 is not listed as one of the open TCP ports. I also, to test it, temporarily disabled the firewalls on both the server and the client. That didn't help. The command that I am running is:
    ssh -p 1500 douglas@[external ip address
    As I am really not sure what is causing this problem, I don't know what information to provide. So here is everything that my inexperienced mind sees as likely being important. If you need anything more, let me know and I will do my best to provide it.
    Here is the sshd_config file from my server.
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options override the
    # default value.
    Port 1500
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # The default requires explicit activation of protocol 1
    #Protocol 2
    # HostKey for protocol version 1
    #HostKey /etc/ssh/ssh_host_key
    # HostKeys for protocol version 2
    #HostKey /etc/ssh/ssh_host_rsa_key
    #HostKey /etc/ssh/ssh_host_dsa_key
    #HostKey /etc/ssh/ssh_host_ecdsa_key
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 1024
    # Ciphers and keying
    #RekeyLimit default none
    # Logging
    # obsoletes QuietMode and FascistLogging
    #SyslogFacility AUTH
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    PermitRootLogin no
    #StrictModes yes
    #MaxAuthTries 6
    #MaxSessions 10
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
    # but this is overridden so installations will only check .ssh/authorized_keys
    AuthorizedKeysFile .ssh/authorized_keys
    #AuthorizedPrincipalsFile none
    #AuthorizedKeysCommand none
    #AuthorizedKeysCommandUser nobody
    # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you don't trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    # Change to no to disable s/key passwords
    ChallengeResponseAuthentication no
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIAuthentication no
    #GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication and
    # PasswordAuthentication. Depending on your PAM configuration,
    # PAM authentication via ChallengeResponseAuthentication may bypass
    # the setting of "PermitRootLogin without-password".
    # If you just want the PAM account and session checks to run without
    # PAM authentication, then enable this but set PasswordAuthentication
    # and ChallengeResponseAuthentication to 'no'.
    UsePAM yes
    #AllowAgentForwarding yes
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    PrintMotd no # pam does that
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    UsePrivilegeSeparation sandbox # Default for new installations.
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #UseDNS yes
    #PidFile /run/sshd.pid
    #MaxStartups 10:30:100
    #PermitTunnel no
    #ChrootDirectory none
    #VersionAddendum none
    # no default banner path
    #Banner none
    # override default of no subsystems
    Subsystem sftp /usr/lib/ssh/sftp-server
    # Example of overriding settings on a per-user basis
    #Match User anoncvs
    # X11Forwarding no
    # AllowTcpForwarding no
    # ForceCommand cvs server
    The ouptut of ip addr when run on the server:
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
    valid_lft forever preferred_lft forever
    2: enp8s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:21:9b:3a:be:94 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.75/24 brd 192.168.255.0 scope global enp8s0
    valid_lft forever preferred_lft forever
    inet6 fe80::221:9bff:fe3a:be94/64 scope link
    valid_lft forever preferred_lft forever
    Here is the output from running nmap on the network:
    Starting Nmap 6.40 ( http://nmap.org ) at 2013-09-28 21:05 EDT
    Initiating Ping Scan at 21:05
    Scanning address [2 ports]
    Completed Ping Scan at 21:05, 0.01s elapsed (1 total hosts)
    Initiating Parallel DNS resolution of 1 host. at 21:05
    Completed Parallel DNS resolution of 1 host. at 21:05, 0.05s elapsed
    Initiating Connect Scan at 21:05
    Scanning pa-addresss.dhcp.embarqhsd.net (address) [1000 ports]
    Discovered open port 80/tcp on address
    Discovered open port 443/tcp on address
    Discovered open port 23/tcp on address
    Discovered open port 21/tcp on address
    Completed Connect Scan at 21:05, 4.08s elapsed (1000 total ports)
    Nmap scan report for pa-address.dhcp.embarqhsd.net (address)
    Host is up (0.036s latency).
    Not shown: 995 closed ports
    PORT STATE SERVICE
    21/tcp open ftp
    23/tcp open telnet
    80/tcp open http
    443/tcp open https
    8080/tcp filtered http-proxy
    Read data files from: /usr/bin/../share/nmap
    Nmap done: 1 IP address (1 host up) scanned in 4.19 seconds
    Here is the ssh_config client-side:
    # $OpenBSD: ssh_config,v 1.27 2013/05/16 02:00:34 dtucker Exp $
    # This is the ssh client system-wide configuration file. See
    # ssh_config(5) for more information. This file provides defaults for
    # users, and the values can be changed in per-user configuration files
    # or on the command line.
    # Configuration data is parsed as follows:
    # 1. command line options
    # 2. user-specific file
    # 3. system-wide file
    # Any configuration value is only changed the first time it is set.
    # Thus, host-specific definitions should be at the beginning of the
    # configuration file, and defaults at the end.
    # Site-wide defaults for some commonly used options. For a comprehensive
    # list of available options, their meanings and defaults, please see the
    # ssh_config(5) man page.
    # Host *
    # ForwardAgent no
    # ForwardX11 no
    # RhostsRSAAuthentication no
    # RSAAuthentication yes
    # PasswordAuthentication yes
    # HostbasedAuthentication no
    # GSSAPIAuthentication no
    # GSSAPIDelegateCredentials no
    # BatchMode no
    # CheckHostIP yes
    # AddressFamily any
    # ConnectTimeout 0
    # StrictHostKeyChecking ask
    # IdentityFile ~/.ssh/identity
    # IdentityFile ~/.ssh/id_rsa
    # IdentityFile ~/.ssh/id_dsa
    # Port 22
    Protocol 2
    # Cipher 3des
    # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
    # MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160
    # EscapeChar ~
    # Tunnel no
    # TunnelDevice any:any
    # PermitLocalCommand no
    # VisualHostKey no
    # ProxyCommand ssh -q -W %h:%p gateway.example.com
    # RekeyLimit 1G 1h
    Output of ssh -v during connection attempt:
    OpenSSH_6.3, OpenSSL 1.0.1e 11 Feb 2013
    debug1: Reading configuration data /home/douglas/.ssh/config
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug2: ssh_connect: needpriv 0
    debug1: Connecting to address [address] port 1500.
    debug1: connect to address address port 1500: Connection refused
    ssh: connect to host address port 1500: Connection refused
    Thank you guys ahead of time. Getting this server operational is hardly critical, it is just a side project of mine, but I would really like to see it working.
    Douglas Bahr Rumbaugh
    Last edited by douglasr (2013-09-29 02:58:56)

    Okay, so I finally have the opportunity to try and log in from a remote network. And. . .  it doesn't work. Which is just my luck because I now need to wait an entire week, at least, before I can touch the server again. Anyway, running ssh with the maximum verbosity I get this output:
    douglas ~ $ ssh -vvv -p 2000 address
    OpenSSH_6.3, OpenSSL 1.0.1e 11 Feb 2013
    debug1: Reading configuration data /home/douglas/.ssh/config
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug2: ssh_connect: needpriv 0
    debug1: Connecting to address [address] port 2000.
    debug1: connect to address address port 2000: Connection timed out
    ssh: connect to host address port 2000: Connection timed out
    It takes a minute or two for the command to finish with the connection timeout, as one would expect. And yes, I am reasonably sure that the address that I am using is my home network's external IP. It is dynamic, but I checked it before I left which was just over an hour ago. I guess that it may have changed. I'll know that for sure in the morning, when my server sends me an automatic email with the network's current address. In the meantime I am operating under the assumption that the address I am using is correct. What else could be the problem?

  • Error connecting Jdev with ESB and BPEL - caused by remote HTTP Server

    Hi everyone, hopefully someone can help me with my problem.
    I have 3 servers in my cluster, one straight web server, one SOA server and one J2EE server. I am trying to configure Jdev for developing SOA applications.
    I was able to create the application server connection without a problem, but when I try to create the Integration server connection, I get:
    Application Server: OK
    BPEL Process Manager Server: FAILED
    ESB Server: FAILED
    With the details for the failed connections:
    BPEL: java.net.ConnectException:Connection refused: connect
    ESB: ESB Server connection could not be established.
    Connection refused: connect
    So, I know why this is happening. The ESB server doesn't have an HTTP server on it; The web server is the server for the BPELControl and the ESBControl.
    So, I add the Web Server machine as an AS (it has no oc4j instance) and if I use that AS as the Integration Server, I get OK for BPEL and ESB but a failure for the Application server.
    Now I know this topology must be more common than it seems, so hopefully one of you knows how I can work these problems out.
    Thanks,
    Jamie McLaughlin

    Hello Jamie,
    We are in a similar situation, as we have web-server and app-server separate. and soa suite is running on the app-server.
    I got the exact same errors as you described in your note.
    i am able to deploy services from jdeveloper (per your second posting) even though as & is connection entries raised those errors.
    Could you let us know what approach your team is now using with respect to defining connections in jdeveloepr & deploying services? Did you get any suggestions from oracle support, or others, which helped you resolve this situation ? (even though we are able to deploy the services, the connection entry test errors are kind of annoying)
    Thanks
    Raju

  • Decision Service calls failing with connection refused

    Hi All,
    Breifing of the bpel process - Async bpel process XX_BPEL_ASYNC_002 calls decision services and a sync bpel process XX_BPEL_SYNC_001.
    We have moved to cluster 10.1.3.5.0 from 10.1.3.3.0 and the deployement of the bpel process and the decision service done on two nodes i.e., node51 and node55.
    But the bpel process is able to call the decision service only when the node 51 is UP and running, but if node 51 is down and node 55 is up and running it is failing with connection refused error. It is also working when 55 is DOWN and 051 is UP.
    the exact error is:
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: Connection refused.
    We are using file based repository.
    It is failing when it tries to call particular url:
    http://loadbalancerurl:7777/orabpel/domain001/XX_BPEL_ASYNC_002/1.0/decisionservices.decs
    Can anyone please help me or advice me for finding some solution.
    Thanks
    Sreejit

    Hi Fatsah,
    It has been a while since we resolved this problem. But these were  the basic steps that we had taken.
    The receiver was configured a File adatpter with FTP:
    Port: 10021
    Connection security : FTPS (FTP using SSL/TLS) for Control and Data Connection
    Command Order: AUTH TLS,USER,PASS,PBSZ,PROT
    Problem: The message was blocked in our firewall.
    FTPS in this case used 10021 as the control port and the firewall allowed to pass the control request.
    Once the connection was accepted at the control level, it generated a random port number  to pass data on the channel.
    This random port number was blocked in the firewall.
    We monitored the data port numbers generated at firewall. Then we configured the firewall to open any port number  between the specific IP addresses of the sender and the receiver. That resolved the problem.
    Hope this helps!
    Please give points if this is helpful.
    Thank you.
    Dharmasiri Amith

  • HTTP/1.1 502 Proxy Error ( Connection refused )\nVia: 1.1 TMG01 -SP\nConnection

    Hi,
    I have an application that
    executes calls to a jetty
    server locally. When I try to
    run the application I get the error below.
    HTTP/1.1 502 Proxy Error ( Connection refused )\nVia: 1.1 TMG01-SP\nConnection: Keep-Alive\nProxy-Connection: Keep-Alive\nPragma: no-cache\nCache-Control: no-cache\nContent-Type: text/html\nContent-Length: 3904  \n
    But, this error only occurson a particular machine, when I run
    the the same application on other machines have no problems.
    Someone
    knows what could be? I disabled
    the firewall, proxy, includes
    rules on the firewall but nothing does this
    application working.

    Hi Namrata,
    thank to answer my question,  I haven't access to TMG Server.  But, I get a error page from ForeFront with the message:
    Technical Information (for support personnel)
    Error Code 10061: Connection refused
    Background:The server you are attempting to access has refused the connection with the gateway. This usually results from trying to connect to a service that is inactive on the server.
    Date: 9/25/2014 5:42:52 PM [GMT]
    Server: TMG02-SP.proxy
    Source: Remote server

  • HT1549 Trying to set up Apple TV to connect wifi with my PC but it refuses to recognise my PC content. Not showing in Computers on apple screen.

    Trying to set up Apple TV to connect wifi with my PC but it refuses to recognise my PC content. Not showing in Computers on apple screen. Using win 7 and Apple TV 3rd gen

    Hi there Bawn245,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    -Griff W.

  • Error while deploying module with iasdeploy : Exception while createXmlDocument() : connection refused

    Hi to you all,
    I work with iAS 6.0 sp2 on Solaris.
    For 1 day, I get that exception when trying to deploy or remove my modules (servlets + JSP) with the iasdeploy tool :
    Exception while createXmlDocument()
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native method)
    at com.netscape.server.deployment.WebbAppReg.run(compiled code)
    at com.netscape.server.deployment.WebbAppReg.main(Unknown source)
    The war archive is put in the JAR directory, unpacked in the APPS/modules directory, but the servlets of the module have the null GUID in the registry ({000000 000000 000000}. And so, I have the GX error when trying to invoke them.
    What appends ? Is it a iAS process which is unable ?
    Please help !
    Paul-Emile

    I think you have not put the xml files in the war file.
    You need to put them under WEB-INF/ directory. Manually generate the guids using kguidgen script and try to deploy the war module. It should work fine. If it doesnot work please send me the file. So that I can further investigate and find out where exactly the problem is.Other wise you can use the deploytool.
    Please let me know if this works fine.
    Thanks for visiting our web forum.

Maybe you are looking for