Plugin login appears after initial weblogic everytime applet makes http request

When I visit a page I get the initial login to the page via the realm followed
by a java plugin loging (shown in attached pictures) every time the applet makes
an http request. This stops the applet working, any idea how I can solve this?
[pictures.doc]

Any idea how to do thisn not really sure what you mean. I already inclued the session
Id in the URL. Code we use to open connection is
URL url = new URL(serverProtocol + "://" + serverName + ":" + serverPort + "/"
+ servlet + ((sessionId==null)?"":"?sessionid=" + sessionId));
URLConnection uc = url.openConnection();
uc.setDoOutput(true);
uc.setDoInput(true);
uc.setUseCaches(false);
uc.setRequestProperty("Content-type", "java-internal/" + object.getClass().getName());
Robert Patrick <[email protected]> wrote:
If you are making HTTP requests from within an applet, you will need
to provide the
right HTTP headers to correctly identify that each subsequent request
is from the
previously logged-in user (e.g., the cookie that contains the WLS session
ID
attached to the response from logging in).
andrea bates wrote:
When I visit a page I get the initial login to the page via the realmfollowed
by a java plugin loging (shown in attached pictures) every time theapplet makes
an http request. This stops the applet working, any idea how I cansolve this?
Name: pictures.doc
pictures.doc Type: WINWORD File (application/msword)
Encoding: base64

Similar Messages

  • Rogue DNS Settings appearing after initial DHCP lease

    I am having issues with DNS settings changing on clients soon after allocation via DHCP. This is a workgroup only, no windows domain. DHCP is running from a Fortigate 60b which acts as the primary DNS server and Google DNS configured as secondary. The DHCP lease time is 8 days, these DNS changes can happen 3 times or more in a working day. The network consists of a single subnet, there is also an internal wireless network using Ubiquiti AP's.
    1. Malware has been ruled out, having scanned machines with AV and Malware detection finding nothing.2. Have setup port mirroring on switch ports and scanned traffic for other sources of DHCP offer packets.. none found.3. When the DNS settings change they are different on each machine, but each time it is a valid IP for the network that can be found in the DHCP leases on the 60b.I was expecting to...
    This topic first appeared in the Spiceworks Community

    I am having issues with DNS settings changing on clients soon after allocation via DHCP. This is a workgroup only, no windows domain. DHCP is running from a Fortigate 60b which acts as the primary DNS server and Google DNS configured as secondary. The DHCP lease time is 8 days, these DNS changes can happen 3 times or more in a working day. The network consists of a single subnet, there is also an internal wireless network using Ubiquiti AP's.
    1. Malware has been ruled out, having scanned machines with AV and Malware detection finding nothing.2. Have setup port mirroring on switch ports and scanned traffic for other sources of DHCP offer packets.. none found.3. When the DNS settings change they are different on each machine, but each time it is a valid IP for the network that can be found in the DHCP leases on the 60b.I was expecting to...
    This topic first appeared in the Spiceworks Community

  • 2 plugin-containers appear after Recent History Cleared and with Flash disabled.

    Running Firefox 4, Windows XP and Shockwave Flash 10.2.153.1
    With Shockwave Flash disabled, 2 plugin-container.exe processes appear in Windows Task Manager when I clear Recent History from Firefox. Why? These processes do not go away.

    Clicking "Clear Recent History" in Firefox 4.0 triggers several instances of "plugin-container.exe" which can be seen in Task Manager. The memory usage is about 100MB. It sometimes takes 20-30 seconds for the CRH box to disappear as the computer whirs away in obvious distress.
    System info:
    WinXP Home Edition, SP3, 32-bit
    Firefox 4.0
    Firefox add-ons: NoScript, AdBlock Plus, CookieCuller

  • What is needed on non-weblogic client to make soap request

    Hi, I am trying to make a soap request from a client that is not weblogic to a
    weblogic6.1 server. I was under the impression that all I needed was the client.jar
    created by wsgen. But when I try to access the service through the client I get
    the below exception. It appears to be trying to access a weblogic class that is
    not contained in the client.jar. Does this mean I also need to include the weblogic.jar
    on the client(I'm hoping not to). Thanks
    java.lang.NoClassDefFoundError: weblogic/net/http/HttpsURLConnection
         at weblogic.soap.http.SoapContext.lookup(SoapContext.java:87)
         at javax.naming.InitialContext.lookup(InitialContext.java:350)
         at index_1._jspService(index_1.java:68)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
         at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
         at org.apache.tomcat.core.Handler.service(Handler.java:235)
         at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:484)

    Hi Jane,
    Looks like you have run smack dab into one of the first "myths" about web services
    - "SOAP client software is not vendor- dependent" :-) This is in fact, exactly
    the opposite! And it's not just WebLogic's SOAP client API that has this "vendor-dependent"
    code. Apache SOAP, Apache AXIS, Systinet WASP, GLUE, etc. exhibit the same behavior.
    The difference is that WebLogic's client.jar, is not really a "standalone, SOAP
    client package". It's a "web service-specific" client package.
    JAX-RPC (and the other APIs in the Java Web Services Developer's Pack) is attempting
    to reduce a fair amount of this "vendor-dependency", but there will always be
    some :-) WLS 6.1 doesn't use JAX-RPC, so...
    Anyway, how many "vendor classes" you need, depends on what you are attempting
    to do in the client. If you are just consuming a web service that uses "SOAP encoding",
    then you'll need less. If you are consuming a web service that uses "literal encoding",
    you'll need more. An easy (albeit time consuming) way to figure out which classes
    you need from the weblogic.jar file, to use WebLogic's Web Service client package
    inside Tomcat, is to use the "-verbose:class" option, on the Java command used
    to start Tomcat. This will produce a lot of output, so I suggest you capture it
    to a log, instead of sending it to stdout :-) But, as I said, this is a very,
    very, very time consuming way to determine all the classes you need from the weblogic.jar
    file. Trust me, I've done this before and it took me about 3 hours to find every
    class that's needed! It's simpler just to include the weblogic.jar file in the
    CLASSPATH you start Tomcat with :-)
    Another option is to just use the Apache SOAP package to create the web service
    client. This works wonderfully, if you don't want to use WSDL (Apache SOAP doesn't
    support WSDL). If you want to use WSDL, go with the Apache AXIS package. It has
    an implementation of JAX-RPC, and is pretty close to the Web Services implementation
    in WLS 7.0 (which I'm assuming you'll eventually upgrade to anyway, right?).
    Regards,
    Mike Wooten
    "Jane" <[email protected]> wrote:
    >
    Hi, I am trying to make a soap request from a client that is not weblogic
    to a
    weblogic6.1 server. I was under the impression that all I needed was
    the client.jar
    created by wsgen. But when I try to access the service through the client
    I get
    the below exception. It appears to be trying to access a weblogic class
    that is
    not contained in the client.jar. Does this mean I also need to include
    the weblogic.jar
    on the client(I'm hoping not to). Thanks
    java.lang.NoClassDefFoundError: weblogic/net/http/HttpsURLConnection
         at weblogic.soap.http.SoapContext.lookup(SoapContext.java:87)
         at javax.naming.InitialContext.lookup(InitialContext.java:350)
         at index_1._jspService(index_1.java:68)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
         at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
         at org.apache.tomcat.core.Handler.service(Handler.java:235)
         at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:484)

  • Why MLB.TV is not appearing after the last update?

    why MLB.TV is not appearing after the last update?

    Make sure the store is set to the US.. Also restart the ATV.

  • Applet with HTTPS?

    Exists some library to make HTTPS requests from an Applet? (or SSL)
    Thanks

    Yes. You have very poor English skills, I suggest you start to learn English when talking to mostly English individuals.
    Some JRE's can use HTTPS. Use the HttpUrlConnection class.

  • After new weblogic domain configuration with oim 11g, not able to login

    After new weblogic domain configuration with oim 11g, not able to login for the frist time as xelsysadm.
    it says invalid sign in. and in logs it says password is invalid.
    Please help me in asap...

    Thanks Pallavi for the effort. I tried commenting out, its still the same. It do not throw exception this time. However, It tells me that the recon event is completed and linked to user. When I go to user's profile, I dont see the resource provisioned.
    Also,
    The Account ID in recon manager of Web Console and the Account ID that is stored in the tables, doesn't match.
    I wrote a custom code to fetch account and user details and here is the output,
    User Key : 13 -- has Login Id : USER_CS
    Account with account key : 49 is with user key : [USER_CS]
    Getting Account Data......
    {UD_TEST_1P_EMPLOYEENUMBER=1567, UD_TEST_1P_NAME=Kim1}
    However the Account Id in recon manager is : 91
    This seems fine.
    Doesn't this mean, the account is reconciled successfully?
    The problem is that, I am not able to see this resource in User's resource profile.
    Edited by: Shashi kiran on Apr 18, 2013 3:56 PM

  • Brand new computer - Windows 7 - Browser Mozilla Firefox - Trying to install Adobe Flashplayer - after initial box appears, I click 'save' and nothing happens - McAffee Anti virus already installed

    Brand new computer - Windows 7 - Browser Mozilla Firefox - Trying to install Adobe Flashplayer - after initial box appears, I click 'save' and nothing happens - McAffee Anti virus already installed - how do  proceed?

    Try using these installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)

  • User locks out, due to 5 invalid login attempts after the server running

    Hi ,
    I HAC on WLS 10.3.2 (Oracle Solaris on x86-64 (64-bit)).
    user locks out, due to 5 invalid login attempts just after the server comes into running state.
    But the strange thing is Customer is not trying to login into it.
    we unlocked the user, after logging into the console with a different user.
    Customer knows the username and password
    Still the issue appears after few minutes.
    Below are the logs:
    ####&lt;Oct 5, 2010 2:41:36 PM SGT&gt; &lt;Notice&gt; &lt;WebLogicServer&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000005&gt; &lt;1286260896734&gt; &lt;BEA-000329&gt; &lt;Started WebLogic Admin Server "AdminServer" for domain "IDMDomain" running in Production Mode&gt;
    ####&lt;Oct 5, 2010 2:41:36 PM SGT&gt; &lt;Notice&gt; &lt;WebLogicServer&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;main&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000003&gt; &lt;1286260896843&gt; &lt;BEA-000365&gt; &lt;Server state changed to RUNNING&gt;
    ####&lt;Oct 5, 2010 2:41:36 PM SGT&gt; &lt;Notice&gt; &lt;WebLogicServer&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;main&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000003&gt; &lt;1286260896846&gt; &lt;BEA-000360&gt; &lt;Server started in RUNNING mode&gt;
    ####&lt;Oct 5, 2010 2:41:36 PM SGT&gt; &lt;Info&gt; &lt;J2EE&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000006&gt; &lt;1286260896848&gt; &lt;BEA-160151&gt; &lt;Registered library Extension-Name: bea_wls_async_response (JAR).&gt;
    ####&lt;Oct 5, 2010 2:41:37 PM SGT&gt; &lt;Info&gt; &lt;EJB&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000006&gt; &lt;1286260897879&gt; &lt;BEA-010008&gt; &lt;EJB Deploying file: mejb.jar&gt;
    ####&lt;Oct 5, 2010 2:41:39 PM SGT&gt; &lt;Info&gt; &lt;EJB&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-0000000000000006&gt; &lt;1286260899932&gt; &lt;BEA-010009&gt; &lt;EJB Deployed EJB with JNDI name ejb.mgmt.MEJB.&gt;
    ####&lt;Oct 5, 2010 2:42:35 PM SGT&gt; &lt;Info&gt; &lt;Health&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;weblogic.GCMonitor&gt; &lt;&lt;anonymous&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-000000000000000c&gt; &lt;1286260955961&gt; &lt;BEA-310002&gt; &lt;50% of the total memory in the server is free&gt;
    ####&lt;Oct 5, 2010 2:43:35 PM SGT&gt; &lt;Info&gt; &lt;Health&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;weblogic.GCMonitor&gt; &lt;&lt;anonymous&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-000000000000000c&gt; &lt;1286261015987&gt; &lt;BEA-310002&gt; &lt;71% of the total memory in the server is free&gt;
    ####&lt;Oct 5, 2010 2:46:09 PM SGT&gt; &lt;Notice&gt; &lt;Security&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-000000000000001b&gt; &lt;1286261169575&gt; &lt;BEA-090078&gt; &lt;User weblogic in security realm myrealm has had 5 invalid login attempts, locking account for 30 minutes.&gt;
    ####&lt;Oct 5, 2010 2:46:24 PM SGT&gt; &lt;Info&gt; &lt;Server&gt; &lt;STG-DS11&gt; &lt;AdminServer&gt; &lt;[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;21524a931a3e4d99:45f2a2df:12b7b1fb09c:-8000-000000000000001d&gt; &lt;1286261184189&gt; &lt;BEA-002635&gt; &lt;The server "wls_ods1" connected to this server.&gt;
    Thanks,
    Daniel

    User weblogic in security realm myrealm has had 5 invalid login attempts, locking account for 30 minutes.The customer knows the weblogic password?

  • Stuck on "Initializing Media Player Applet, Please Wait." under Recordings - Calabrio One Quality Management

    We're having an issue with a couple of users who cannot access the Recordings section of the Calabrio Quality Management web interface. Other users can login and view Recordings just fine and they seemingly are configured the same. Here is what the failed user experiences:
    1) User logs in to Calabrio Quality Management (Separate Logins) via the Cisco Unified Workforce Optimization page.
    2) User clicks Recordings button on the top part of the page
    3) After accepting a couple of Java Security prompts and enabling pop-ups, it just hangs on the following prompt:
    Initializing Media Player Applet, Please Wait...(This may take several minutes)
    What's odd is that on the same PC, I will log in with another user that is known to work, and they can access the page with no problems.
    Here are things I have tried to rectify the problem but have not succeeded:
    - Tried on IE 8, 10 and 11, Firefox, and Chrome
    - Cleared Java Temporary Internet Files
    - Checked users permissions Under Quality Manager Administrator
    - Validated PC settings (where the login is), all checks have passed
    We are running Calabrio One Quality Management 9.0.1.57. 
    Any ideas?
    Thanks,
    John

    Hey all,
    I spoke to Calabrio Support and this is a known issue with all versions of QM to date. The problem is when sometimes user searches are too big. The QM C1 auto-executes the most recent search and will cause the page to never load.The fix as follows:
    1) Log into the Windows Server that has the QM Software installed.
    2) Open "Quality Management Administrator" and log in. Expand 'Site Configuration', then click 'System Database' to find the SQL Instance Hostname/IP. You'll need it for Step 4.
    3) On Windows, Click 'Start >> All Programs >> Microsoft SQL Server 2008 R2 >> SQL Server Management Studio'
    4) SQL Server Authentication. Input the following:
    Server Type: Database Engine
    Server Name: <SQLInstance>\QM
    Authentication: SQL Server Authentication
    User: sa
    Password: *********
    Log in.
    5) Expand 'Databases'
    6) Right-click the database 'SQMDB', then click 'New Query'
    7) Enter this command:
    delete from Search where name='recentsearchforsystem'
    8) Click Execute
    9) Log into the Web interface again and test and verify access to Recordings is now working

  • Is it possible to restore from a backup after initial setup on my iPad air?

    is it possible to restore from a backup after initial setup on my iPad air?

    You don't even have to do to an erase all content and settings.
    Just connect the iPad to iTunes. Once it appears on the left, right click on it and select restore from backup. It's that easy.

  • Soa managed server is not running after changing weblogic admin password

    hi guys....
    we have oim 11g deployment on weblogic 10.3.5 ....it was working fine....
    we changed the weblogic user password through admin console and changed the boot.properties file also....after that we succcessfully started the adminserver but soa server is not starting and giving following errors...
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090304]Authentication Failed: User weblogic javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic denied
         at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:261)
         at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
         at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
         at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
         at com.bea.common.security.internal.service.JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
         at $Proxy28.login(Unknown Source)
         at weblogic.security.service.internal.WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
         at com.bea.common.security.internal.service.JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
         at $Proxy46.authenticate(Unknown Source)
         at weblogic.security.service.WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
         at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:348)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:929)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Regards
    jdev

    Which boot.properties did you update Just the admin server? You need to update this file on each of the servers in the domain. Browse to the soa server directory inside the domain directory and there inside the security directory you should see the boot.properties file. You need to update the password in this file.
    -Bikash

  • Stuck in a "loop" at the login window after upgrading to Leopard

    I bought a new iMac Oct 26. It contained Tiger, and included a disk for installing Leopard. I easily got the machine up and running using Tiger, but last night I attempted to install Leopard. When the installation was complete, I tried to get it running. A screen asking for my password came up. I keyed that in and hit logon. Back came the screen asking for the password. To make long story short, I tried everything I could last night, and then called Apple Support this morning. Took quite a while, but I was back in business this afternoon. The technician who helped me sent me the email copied below describing the solution. Perhaps it will help someone else? Romelle
    Hello from Apple!
    Charles at Apple Service & Support thought that you might find this article useful. We hope that it helps resolve your technical issue.
    Link: http://www.info.apple.com/kbnum/n306965
    Mac OS X 10.5, iMac (Late 2007): Stuck in a "loop" at the login window after upgrading to Leopard
    Issue or symptom
    After installing Mac OS X 10.5 Leopard on a 20-inch or 24-inch iMac (Late 2007) computer, you may not be able to log in at the login window. Your login name and password are apparently accepted, but after a blue screen appears for a few seconds, the login window reappears instead of your desktop.
    Products affected
    20-inch or 24-inch iMac (Late 2007) computer with 2.0, 2.4, or 2.8 GHz processors
    Mac OS X 10.5 Leopard
    Solution
    If Leopard is installed
    Start up from the Leopard Install DVD and perform an Archive and Install installation (and select Preserve Users and Network Settings).
    After the Archive and Install is complete, you should be able to successfully log in. Use Software Update to install any other updates.
    Important: Install the iMac Software Update 1.3 for Leopard after the Archive and Install is complete.
    If Leopard is not yet installed
    If you have not yet installed Leopard on your 20-inch or 24-inch aluminum iMac computer with a 2.0, 2.4, or 2.8 GHz processor running Mac OS X 10.4.x, but previously installed the iMac Software Update 1.2, you should install the iMac Software Update 1.2.1 (Tiger) or later, before installing Leopard.
    Thank you,
    Apple

    If Leopard came pre-installed and this is a new machne, then the disks that came in the box should let you archive install preserving users & network settings. The disks have a grey label, and if you get more than one use disk #1 for this procedure.
    Hold down the "option" (also known as "alt" on the new keyboards) key when starting up with disk #1 in the optical drive. Select the install disk icon on the grey screen and click the arrow. Then when you get to the "select destination pane, click the options button after selecting your hard drive as the destination. In options A& I preserving should be checked by default, if not, select them. Click "ok" to dismiss the options pane, then run the installation.
    If this does not work for you, call apple support. They want everything to work. Be patient, they are real busy these days.
    Slim

  • Multitasking appears after only one click

    Multitasking bar appears with just one click.  Sometimes pushing Home Button does nothing and must be pushed again once.  Sometimes Camera Button appears after touching Home Button only once.

    Clicking once in a white space does not open the advanced editor.
    This is only initiated if you click twice in a white space.
    However, the point that some people keep clicking twice either because of their computing habits in a word processing package or otherwise has been taken on board by the developers. As you say, people like yourself found the pop up irritating and wanted it removed from so easily being selected.
    You will be pleased to hear that if you update to 31.1.0 then you will find that accessing the advanced property editor has been prevented from opening using the double click.
    The Thunderbird program is not stored in the same place as the Thunderbird Profile folders.
    So updating via 'Help' > 'About Thunderbird'
    click on 'Check for updates'
    will not have any effect on folders.
    You could also uninstall the current Thunderbird via Control Panel > Programs and Features and then download from here:
    * https://www.mozilla.org/en-US/thunderbird/all.html
    However, it is always a good idea to backup your Profile just in case :)
    You can use MozBackup tool to backup a Profile or use ImportExporttool to backup emails or you can manually copy the Profile folder.
    Suggest you save all backups to an external storage device for safe keeping.
    Here is info on Backup:
    * http://kb.mozillazine.org/Profile_backup
    * http://kb.mozillazine.org/MozBackup
    ImportExporttool:
    * https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/

  • Photos missing from project after initial import

    I'm having an issue where after initial importing pictures into Aperture, I can no longer find them within the project.  Initially I can see them fine after the import, but when I relaunch Aperture, they are gone. The project itself exists and I when I move the cursor over the project icon, I can see the images (and they also appear in project info), but when I click on the project, it has no photos inside it. I have checked and it appears all filters are turned off from the browser view.
    Also, when I try to re-import the photos, Aperture identifies them as duplicates.
    I did have an issue a month ago where Aperture crashed a few times while trying to import.  I repaired permissions and the database, but am still getting a warning to repair the database each time I open Aperture.  I have not yet run rebuild, as I am concerned about this messing up the library (I am current on my backups).
    Any suggestions would be appreciated.

    I did have an issue a month ago where Aperture crashed a few times while trying to import.  I repaired permissions and the database, but am still getting a warning to repair the database each time I open Aperture.  I have not yet run rebuild, as I am concerned about this messing up the library (I am current on my backups).
    Independent of Tony's suggested fix, it looks like you are having a more general problem. We need to know more to see, what might be causing this. What version of Aperture are you using? What is your MacOS X version?
    It would be good to know, if your frequent "repair"  problem only occurs for your current Aperture library. Create a new, empty Aperture library and import a few test images.
    Do you have the same problem with a new library?
    If not, where is your Aperture library stored? In the default location in "Pictures" or on an external drive? Are you sharing your library with other user accounts? How much free disk space do you have?

Maybe you are looking for

  • RAC - NON RAC ebiz clone

    The title says it all... We are running eBusiness Suite 11.5.10.2 in Production on RAC 10gR2 (red hat linux, split application and database tiers). Is there a tried, tested and reliable way to clone from the Production RAC environment to a developmen

  • Netgear faster then Airport Extreme?

    I have a 10MB internet connection via a cable modem. I plug the cable modem into my Netgear Rangemax cable router - Speedtest.net shows I am getting 9.7MB downloads - which is what I expect. I do exactly the same test (from the same distance etc) wit

  • Maximum annotations in preview?

    I was annotating a 150-pg document in preview, the first large one I've ever done, and the first where more than a small handful of entries were made. Somewhere around page 70, I discovered I could no longer copy and paste the shaded oval I was using

  • IPhoto quits unexpectedly while editing photos

    I'm running iPhoto 9.4.2, using a Macbook Pro and Mountain Lion. I've tried repeatedly to repair my library, installed iPhoto Library Manager, and even reinstalled all of my pictures, and yet I can't edit more than about 10 photos before the program

  • Mini Bridge options in Indesing CC

    Good evening. Can anybody tell me if are you able to use the "Options Panel" on Mini Bridge CC in Indesing CC? Thanks.