Emergency problem with HttpSession on Weblogic 4.5.1 Service Pack 9

Hi folks,
          We have such configuration:
          2 WLS instances running as front-end of the system. They basically have
          HttpClusterServlet enabled and act as proxies routing the traffic between
          clients and other WLS servers on back-end.
          2 WLS instances which heavily use servlets with HttpSession and form
          WebLogic cluster.
          DNS round-robining takes care of routing all requests to proxy servers.
          In order to have very good failover we decided to have two proxies, so if
          any of them fails another one will keep routing the traffic.
          The problem is that if one of the proxy servers goes down, then location of
          some HttpSession objects can not be resolved by second running proxy server.
          As far as I know HttpClusterServlet keeps track of all HttpSession object
          created by servlets, their locations (primary & secondary server) and
          basically takes care of redirecting each http request within the same
          session to appropriate server in cluster. I thought that if we have to WLS
          proxies then this mapping about each session is stored in both proxies. It
          looks that it is not the case. It seems to us, that particular HttpSession
          object is managed all time by single proxy server and second one does not
          know anything about such session. The result is that when one the proxy goes
          down, then servlet which calls getHttpSession( true ) ends up with brand new
          session created by another proxy.
          Can it be avoided, so each proxy server knows about all HttpSession objects
          and can still route the traffic if another one is down? Is it possible in
          WebLogic?Are we missing something? Maybe this proxy servers should also form
          another cluster, but then we still need to define entry point? If NOT, we
          need to have official statement.
          It is urgent !!!
          Waldek
          

Waldek Kozaczuk wrote:
          > Hi folks,
          >
          > We have such configuration:
          >
          > 2 WLS instances running as front-end of the system. They basically have
          > HttpClusterServlet enabled and act as proxies routing the traffic between
          > clients and other WLS servers on back-end.
          Are these configurations identical? I believe both of them are active.
          > 2 WLS instances which heavily use servlets with HttpSession and form
          > WebLogic cluster.
          >
          > DNS round-robining takes care of routing all requests to proxy servers.
          >
          > In order to have very good failover we decided to have two proxies, so if
          > any of them fails another one will keep routing the traffic.
          >
          > The problem is that if one of the proxy servers goes down, then location of
          > some HttpSession objects can not be resolved by second running proxy server.
          Who is redirecting the requests to these proxy servers. Is it possible that
          they dropped the cookie, when the first proxy failed.
          > As far as I know HttpClusterServlet keeps track of all HttpSession object
          > created by servlets, their locations (primary & secondary server) and
          > basically takes care of redirecting each http request within the same
          > session to appropriate server in cluster. I thought that if we have to WLS
          > proxies then this mapping about each session is stored in both proxies. It
          > looks that it is not the case. It seems to us, that particular HttpSession
          > object is managed all time by single proxy server and second one does not
          > know anything about such session. The result is that when one the proxy goes
          > down, then servlet which calls getHttpSession( true ) ends up with brand new
          > session created by another proxy.
          >
          > Can it be avoided, so each proxy server knows about all HttpSession objects
          > and can still route the traffic if another one is down?
          > Is it possible in WebLogic?
          Yes
          > Are we missing something? Maybe this proxy servers should also form
          > another cluster,
          No.
          > but then we still need to define entry point? If NOT, we
          > need to have official statement.
          >
          > It is urgent !!!
          >
          > Waldek
          To help us diagonise the problem you could send us the log files on all the
          servers with weblogic.debug.httpd=true.
          Thanks
          - Prasad
          

Similar Messages

  • Urgent: Problems with HttpSessions in weblogic 5.1

    Hi,
              I am work with Weblogic 5.1, Service Pack 9. I use servlets and
              HttpSession together. The idea is to store shared info in the session. I
              insert complex objects, which implements Serializable interface, in the
              session and SOMETIMES when I try to extract this object casting the
              object to the real class I encounter an Exception:
              action:
              permisosPortal=(EstructuraPermisosPortal)sesion.getAttribute(portal);
              portal value is "pruebas"
              result:
              Message,
              java.lang.ClassCastException:
              com.administracion.modeloGestionSeguridad.EstructuraPermisosPortal
              Trace,
              java.lang.ClassCastException:
              com.administracion.modeloGestionSeguridad.EstructuraPermisosPortal
              at
              com.administracion.modeloGestionSeguridad.Autenticacion.permisosAdquiridos(Autenticacion.java:41)
              at
              com.administracion.novedadesServlet.FormularioAltaNovedadesServlet.service(FormularioAltaNovedadesServlet.java:47)
              at
              javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:120)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:915)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:879)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:269)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:365)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:253)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              I don't know where is the problemm because if I introduce a
              System.out.println before this sentence it never crashes.
              action:
              System.out.println(sesion.getAttribute(portal).getClass().getName()+"
              "+sesion.getAttribute(portal));
              result:
              no crash.
              Could anyone help me?
              Thanks.
              

    Hi,
              I am work with Weblogic 5.1, Service Pack 9. I use servlets and
              HttpSession together. The idea is to store shared info in the session. I
              insert complex objects, which implements Serializable interface, in the
              session and SOMETIMES when I try to extract this object casting the
              object to the real class I encounter an Exception:
              action:
              permisosPortal=(EstructuraPermisosPortal)sesion.getAttribute(portal);
              portal value is "pruebas"
              result:
              Message,
              java.lang.ClassCastException:
              com.administracion.modeloGestionSeguridad.EstructuraPermisosPortal
              Trace,
              java.lang.ClassCastException:
              com.administracion.modeloGestionSeguridad.EstructuraPermisosPortal
              at
              com.administracion.modeloGestionSeguridad.Autenticacion.permisosAdquiridos(Autenticacion.java:41)
              at
              com.administracion.novedadesServlet.FormularioAltaNovedadesServlet.service(FormularioAltaNovedadesServlet.java:47)
              at
              javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:120)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:915)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:879)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:269)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:365)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:253)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              I don't know where is the problemm because if I introduce a
              System.out.println before this sentence it never crashes.
              action:
              System.out.println(sesion.getAttribute(portal).getClass().getName()+"
              "+sesion.getAttribute(portal));
              result:
              no crash.
              Could anyone help me?
              Thanks.
              

  • HT201263 What will i do?screenshot There is a problem with your iPhone. Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country. To find your nearest Apple Store, cli

    What will i do? ITune screenshot is as follows >
    There is a problem with your iPhone. Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country. To find your nearest Apple Store, click here.

    Do what it said to do.
    "Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country. "

  • TS1814 There is a problem with your iPhone. Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country. To find your nearest Apple Store, click here.

    There is a problem with your iPhone.
    Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country.
    To find your nearest Apple Store, click here.
    Please help me i can aktivate my phone imei 012423006333181.

    There is a problem with your iPhone.
    Please visit the Service Answer Center to find answers to all your questions about service options, warranty and other processes in your country.
    To find your nearest Apple Store
    no imei also

  • How do I run  a weblogic platform portal 8.1 on a weblogic server 7.0 service pack 4?

    Hello.
    How do I run a weblogic platform portal 8.1 on a weblogic server 7.0 service
    pack 4?
    Is that a supported configuration? any problems / Issues ?
    Weblogic Integrator

    Why the hell do you want to do that ? ? ?
    just run it on 8.1, if you need to get info from the 7.0 server just get it.
    8.1 is a whole new framework, what you suggest a hack that is probably not supported.
    nerdi
    "Integrator" <[email protected]> wrote:
    >
    Hello.
    How do I run a weblogic platform portal 8.1 on a weblogic server 7.0
    service
    pack 4?
    Is that a supported configuration? any problems / Issues ?
    Weblogic Integrator

  • I wanted a solution to the problem I was having on Win 7 Pro Service Pack 1 in that links on an open Adobe Acrobat file will not open in my Firefox Browser 33.0.2. The Error I receive is "Acrobat could not run the web browser.  Unknown Error. (123)"

    I want a solution to the problem I was having on Win 7 Pro Service Pack 1 in that links on an open Adobe Acrobat Pro 10.1.12  file will not open in my Firefox Browser 33.0.2. The Error I receive is "Acrobat could not run the web browser.  Unknown Error. (123)"

    Change browsers. See what happens.
    Be well...

  • Where to download weblogic server 6.1 service pack 1?

    hi ,
    can you please lemme know the link to download weblogic server 6.1 service pack 1?

    The latest version WLS6.1 sp2. you can download the server from
    http://commerce.bea.com/downloads/weblogic_server.jsp.
    Thanks
    Yu
    "rajesh" <[email protected]> wrote in message
    news:3c3c9567$[email protected]..
    hi ,
    can you please lemme know the link to download weblogic server 6.1service pack 1?

  • Problems with Requests in Weblogic 6.1

    Hi,
    i am using weblogic in my project both as a webserver and as the application server.
    But i am facing problems with requests being sent to the server. Basically i have
    a form in my jsp which, if submitted by multiple clients at the same instant in
    time, the server gets confused and mixes up the data in the requests !! the form
    is submitted to another jsp which in turn calls a SLSB which in turn calls various
    entity Beans to fulfill the request.
    Now if 2 or more clients hit the submit button together, the server is mixing
    the data from the requestsand i get corrupted output as a result.
    That if i submit values (a,b,c) from one client machine and values (x,y,z) from
    another machine, the server puts one of the transactions properly and in the other
    it picks up the data from the other request and takes something like (x,y,c) !!
    Is this a bug in Weblogic 6.1 or am doing something wrong ??
    Any help would be appreciated.
    Raja

    Make sure your JSP scope is set correctly:
    <jsp:useBean id="beanName" scope="session" class="abc.BeanClass" />
    "Raja" <[email protected]> wrote in message
    news:3c6abfc8$[email protected]..
    >
    Hi,
    i am using weblogic in my project both as a webserver and as theapplication server.
    But i am facing problems with requests being sent to the server. Basicallyi have
    a form in my jsp which, if submitted by multiple clients at the sameinstant in
    time, the server gets confused and mixes up the data in the requests !!the form
    is submitted to another jsp which in turn calls a SLSB which in turn callsvarious
    entity Beans to fulfill the request.
    Now if 2 or more clients hit the submit button together, the server ismixing
    the data from the requestsand i get corrupted output as a result.
    That if i submit values (a,b,c) from one client machine and values (x,y,z)from
    another machine, the server puts one of the transactions properly and inthe other
    it picks up the data from the other request and takes something like(x,y,c) !!
    Is this a bug in Weblogic 6.1 or am doing something wrong ??
    Any help would be appreciated.
    Raja

  • Problems with JSSE under Weblogic 5.1 sp9

    I have a java application which uses JSSE to communicate with a WebMethods server
    and it works great. However, when I take the same code block and run it under
    Weblogic 5.1 sp11, I receive a bad certificate error. After spending a lot of
    time reading through various postings, I fixed the problem where Weblogic was
    intercepting HTTPsURLConnection, but still have the bad_certificate error.
    My setup is as follows:
    - Keys stored using keytool in keystores outside of Weblogic
    - Service pack 9 is installed (also tested SP10)
    - Code runs fine as an isolated java application, but will not run when called
    from within weblogic.
    - JDK1.3.1_02
    - Modified the weblogic.policy file with the following line:"permission java.net.NetPermission
    "specifyStreamHandler";"
    Source Code:
    System.getProperties().put("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    System.out.println("\n\nHandler = "+System.getProperty("java.protocol.handler.pkgs"));
    URL server = new URL(null, "https://B2bserver.quadrem.com:4443/invoke/wm.tn/receive",
    new com.sun.net.ssl.internal.www.protocol.https.Handler());
    System.out.println("Connecting to : "+server.toExternalForm());
    char[] password = "weblogic".toCharArray();
    SSLContext context = SSLContext.getInstance("SSL");
    KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509");
    KeyStore keystore = KeyStore.getInstance("JKS");
    keystore.load(new FileInputStream("x:/jpkeystore"), password);
    keyManagerFactory.init(keystore, password);
    context.init(keyManagerFactory.getKeyManagers(), null, null);
    HttpsURLConnection conn = (HttpsURLConnection)server.openConnection();
    conn.setDoInput( true );
    conn.setDoOutput( true );
    conn.setAllowUserInteraction(false);
    conn.setUseCaches( false );
    conn.setDefaultUseCaches ( false );
    conn.setRequestMethod("POST");
    conn.setRequestProperty("Content-Type","text/xml");
    conn.setRequestProperty("Host", remoteHost);
    conn.setRequestProperty("Content-Length", "" + (XML_HEADER.length()+doc.length()));
    DataOutputStream out = new DataOutputStream (conn.getOutputStream());
    out.writeBytes(XML_HEADER);
    out.write(doc.getBytes());
    out.flush();
    out.close();
    All help will be appreciated.
    thanks
    Mark Johnson
    781-993-9212 x375
    [email protected]

    Mark,
    Can you post the complete exceptionand stack trace here ?
    Mark Johnson wrote:
    I have a java application which uses JSSE to communicate with a WebMethods server
    and it works great. However, when I take the same code block and run it under
    Weblogic 5.1 sp11, I receive a bad certificate error. After spending a lot of
    time reading through various postings, I fixed the problem where Weblogic was
    intercepting HTTPsURLConnection, but still have the bad_certificate error.
    My setup is as follows:
    - Keys stored using keytool in keystores outside of Weblogic
    - Service pack 9 is installed (also tested SP10)
    - Code runs fine as an isolated java application, but will not run when called
    from within weblogic.
    - JDK1.3.1_02
    - Modified the weblogic.policy file with the following line:"permission java.net.NetPermission
    "specifyStreamHandler";"
    Source Code:
    System.getProperties().put("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    System.out.println("\n\nHandler = "+System.getProperty("java.protocol.handler.pkgs"));
    URL server = new URL(null, "https://B2bserver.quadrem.com:4443/invoke/wm.tn/receive",
    new com.sun.net.ssl.internal.www.protocol.https.Handler());
    System.out.println("Connecting to : "+server.toExternalForm());
    char[] password = "weblogic".toCharArray();
    SSLContext context = SSLContext.getInstance("SSL");
    KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509");
    KeyStore keystore = KeyStore.getInstance("JKS");
    keystore.load(new FileInputStream("x:/jpkeystore"), password);
    keyManagerFactory.init(keystore, password);
    context.init(keyManagerFactory.getKeyManagers(), null, null);
    HttpsURLConnection conn = (HttpsURLConnection)server.openConnection();
    conn.setDoInput( true );
    conn.setDoOutput( true );
    conn.setAllowUserInteraction(false);
    conn.setUseCaches( false );
    conn.setDefaultUseCaches ( false );
    conn.setRequestMethod("POST");
    conn.setRequestProperty("Content-Type","text/xml");
    conn.setRequestProperty("Host", remoteHost);
    conn.setRequestProperty("Content-Length", "" + (XML_HEADER.length()+doc.length()));
    DataOutputStream out = new DataOutputStream (conn.getOutputStream());
    out.writeBytes(XML_HEADER);
    out.write(doc.getBytes());
    out.flush();
    out.close();
    All help will be appreciated.
    thanks
    Mark Johnson
    781-993-9212 x375
    [email protected]

  • Is there a problem with JMS and Weblogic?

              Hi,
              I am using JMS and Weblogic (Not Message Driven bean).
              My problem is that after some time my listeners disappears.
              I am sending them a message and instead of 6 listeners
              I get only 4 messages.
              So, My question is: Is there any problem working with JMS
              and Weblogic???
              Thanks,
              Tal.
              

    Too little information and a very vague question. Need more info.
              "Tal" <[email protected]> wrote in message
              news:[email protected]..
              >
              > Hi,
              > I am using JMS and Weblogic (Not Message Driven bean).
              > My problem is that after some time my listeners disappears.
              > I am sending them a message and instead of 6 listeners
              > I get only 4 messages.
              > So, My question is: Is there any problem working with JMS
              > and Weblogic???
              > Thanks,
              > Tal.
              

  • Problems with IIS and Weblogic 6.0 Redirecting thru IIS

    Hi
    I have just installed Welblogic 6.0 and I am having problems with the configuration
    of the ISAPI Plugin.
    I created the iisproxy.ini file and then copied that into wlserver6.0/bin directory
    and copied the iisproxy.dll file into the inetpub/wwroot directory for iis to
    see
    Now when I type in my url, I get the default index.jsp page that bea supplied
    but when I try to go to the Admin tool, existing portals created or new portals
    added, I get the following error
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Can any one help, here is my iisproxy.ini file
    below
    #This file contains initialization name/value pairs
    #for the IIS/weblogic plug-in
    WebLogicHost=localhost
    WebLogicPort=7501
    WlFowardPath=/weblogic
    SecureProxy=OFF
    PathTrim=/weblogic
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Bola

    Seems 6.0 has more than a few proxy problems. We are running IPlanet and have
    had no success in running the 6.0 proxy.
    FYI. We have started using the 5.1 proxy in 6.0 successfully; you might give
    it a try. Not sure we want to put this in production in this condition however.
    Matt Raible wrote:
    Has anyone been successfully able to get the IIS Proxy working with WLS 6.0
    on Win2K? I've been trying for days, working with a support engineer at BEA
    and everything, but no luck.
    Thanks,
    Matt

  • Emergency: problem with update statement!

    hello guys, i have a very serious problem with an update statement in pl/sql.
    i had an application written in sybase, where i had the following update statement:
    update mis_dik_adeia
    set trexon_etos_days = days_per_year
    from mis_dik_adeia, mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    and mis_dik_adeia.adeia_id between :aapo and :aews
    and mis_dik_adeia.employee_id = :erg
    and mis_dik_adeia.etos = :etos
    and mis_plafon_adeivn.years_yphr = ( select max( a.years_yphr ) from mis_plafon_adeivn a where a.adeia_id = mis_plafon_adeivn.adeia_id and a.years_yphr <= :eth ) using sqlca;
    This is working properly in sybase. When i copied this code in pl/sql it displayed me error and it's impossible to work. Then i thought to make a nested select statement like this:
    update mis_dik_adeia
    set trexon_etos_days = (select days_per_year
    from mis_dik_adeia, mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    and mis_dik_adeia.adeia_id between aapo and aews
    and mis_dik_adeia.employee_id = erg
    and mis_dik_adeia.etos = etos1
    and mis_plafon_adeivn.years_yphr = (
    select max( a.years_yphr )
    from mis_plafon_adeivn a
    where a.adeia_id = mis_plafon_adeivn.adeia_id
    and a.years_yphr <= eth )
    but as you can understand, it is working, but it doesn't produce the same results as the update statement in Sybase!
    It is very important for me to solve this problem , which is a very big trouble for me for a long time.
    Please if anyone can help me i would appreciate it a lot!
    Regards ,
    Bill...

    Bill,
    folowing the logic of your original query by Sybase
    (it's embedded SQL in Power Builder, isn't it ?):
    update mis_dik_adeia
    set trexon_etos_days = (select days_per_year
    from mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    and mis_plafon_adeivn.years_yphr = (
    select max( a.years_yphr )
    from mis_plafon_adeivn a
    where a.adeia_id = mis_plafon_adeivn.adeia_id
    and a.years_yphr <= eth )
    where
    mis_dik_adeia.adeia_id between aapo and aews
    and mis_dik_adeia.employee_id = erg
    and mis_dik_adeia.etos = etos1
    and
    exists (select 1
    from mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    and mis_plafon_adeivn.years_yphr = (
    select max( a.years_yphr )
    from mis_plafon_adeivn a
    where a.adeia_id = mis_plafon_adeivn.adeia_id
    and a.years_yphr <= eth )
    In 9i you can also try the following:
    megre into mis_dik_adeia
    using (
    select
    days_per_year,
    mis_dik_adeia.rowid rid
    from mis_dik_adeia, mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    mis_dik_adeia.adeia_id between aapo and aews
    and mis_dik_adeia.employee_id = erg
    and mis_dik_adeia.etos = etos1
    and mis_plafon_adeivn.years_yphr =
    (select max( a.years_yphr )
    from mis_plafon_adeivn a
    where a.adeia_id = mis_plafon_adeivn.adeia_id
    and a.years_yphr <= eth)
    ) src
    on (mis_dik_adeia.rowid = src.rid)
    when matched then
    update set mis_dik_adeia.trexon_etos_days = src.days_per_year
    when not matched then
    insert (mis_dik_adeia.adeia_id) values(0);
    In 10G it can be easily:
    megre into mis_dik_adeia
    using (
    select
    days_per_year,
    mis_dik_adeia.rowid rid
    from mis_dik_adeia, mis_plafon_adeivn
    where mis_dik_adeia.adeia_id = mis_plafon_adeivn.adeia_id
    mis_dik_adeia.adeia_id between aapo and aews
    and mis_dik_adeia.employee_id = erg
    and mis_dik_adeia.etos = etos1
    and mis_plafon_adeivn.years_yphr =
    (select max( a.years_yphr )
    from mis_plafon_adeivn a
    where a.adeia_id = mis_plafon_adeivn.adeia_id
    and a.years_yphr <= eth)
    ) src
    on (mis_dik_adeia.rowid = src.rid)
    when matched then
    update set mis_dik_adeia.trexon_etos_days = src.days_per_year;
    I have to notice I didn't check it carefully, so I can miss...
    Rgds.
    Corrected a mistake in the table name
    Message was edited by:
    dnikiforov

  • Emerging problem with portable drives?

    Since recently acquiring a new MacBook Pro (unibody). I have noticed that at least one of my portable drives (LaCie, Firewire 400) it no longer mounted when I shut the machine down and later re-boot. The drive is connected via a good quality FW 800 to FW 400 cable. The drive presents no problems when similarly connected to any of my other equipent either by FW 400-FW 400 or by FW 800 - FW 400 using the same cable, or similar but different make. I have disovered that simply unplugging the FW 800 end, and then re inserting it into the FW 800 port on my MacBook Pro results in the drive mounting. I put this down to just the cussedness of life until I recently visited a customer also using a LaCie Firewire 400 external drive on one of the most recently produced unibody MacBook Pro's and one of his problems was… just as I reported above. I don't belive in co-incidence. Is anyone else experiencing what I am starting to belive might be a problem with either the MacBook Pro hardware or the Mac OS start up process?

    Thank you. : )
    It's my iPods battery. And Ive put it on the charger about half charged and when I look at it 5 minutes later the charger says my battery is fully charged but when I take it off its dead. No, I'm not able to use it unless my iPod has been hooked up to my computer.
    My iPods also been acting weird with its battery life in general, not just with that charger. But the charger really messes it up. I've only had it since X-mas and it worked fine but here lately, it seems as if my battery will deplete rapidly. I

  • Clustering issue with WLCS 3.2 weblogic 5.1 and service pack 8

    I'm having a problem with Portlets on a page with commerce server 3.2 on
              Cluster A below. One Portal page has multiple portlets on it. When the
              Portal Page executes the portlets are being scheduled across both SCCWLS00
              and SCCWLS01 and they are not able to share the session. Thus they will
              throw exceptions trying to read properties from the WLCS profile which is
              shared.
              In Cluster B, When the portal page excutes all portlets are "pinned" to that
              server and they share the information perfectly. Both Cluster Groups have
              their CLUSTER-wide weblogic.properties file set for
              weblogic.httpd.clustering.enable=true
              weblogic.httpd.session.persistence=true
              weblogic.httpd.session.persistentStoreType=replicated
              weblogic.httpd.register.cluster=weblogic.servlet.internal.HttpClusterServlet
              Any ideas on why this is happening? And How I can correct it?
              David Marshall
              ==============================================
              Environmental Background
              CLUSTER Group A (Production)
              VLAN1
              StrongHold 3 (Apache 1.3.19 w/SSL) (Solaris 8)
              ! mod_wl-ssl.so
              ! WebLogicCluster
              sccwls00:nnnn,sccwls01:nnnn
              V
              <firewall translates IPs from 1 VLAN 1 VLAN 2>
              VLAN2 !
              V V
              SCCWLS00 (Solaris 8) SCCWLS01 (Solaris 8)
              CLUSTER Group B (Development)
              StrongHold 3 (Apache 1.3.19 w/SSL) (Solaris 7)
              ! mod_wl-ssl.so
              ! WebLogicCluster
              weblogic00:nnnn,weblogic01:nnnn
              V V
              WEBLOGIC00 (Soaris 8) WEBLOGIC01 (Solaris 8)
              

    What kind of problem do you have?
    If it's not connected with JDBC, you'd better post your question
    in webservices newsgroup.
    Regards,
    Slava Imeshev
    "leopld goess" <[email protected]> wrote in message
    news:[email protected]..
    hy out there.
    i've been working with apache soap on wl 5.1 for a while now, and
    everything seems to be working allright- as long as i don't try to
    install a servicepack, namely sp8 or sp10. if i do that, the entire
    soap service fails to deploy.
    any ideas...
    thanx
    leopold

  • WS2012 Standard R2 with Essentials sudden problem with Server Manager, Essential Dashboard and other services

    Hi all,
    I have a problem with my Windows Server 2012 R2 with Essential installed. When I try to run Server Manager the server manager window doesn't appear and the same thing applies for starting the essentials dashboard. This leads to that some of the features doesn't
    work properly like remote web access, client backup and so on. When I check the Services a lot of services haven't even started. Trying to manually start for example Windows Server Essentials Management Services gives me following error message: 
    "Windows could not start the Windows Server Essentials Management Services on Local Computer. Error 1068: The dependency service or group failed to start"
    What can be wrong here? I haven't done anything to the server that could start these problems. This started all of a sudden. 
    Thank you all in advance for any help.
    EDIT:
    I rebooted my server in safe mode and I tried to run SFC /Scannow which stops at 84% and gives me following message:
    "Windows Resource Protection could not perform the requested operation."
    I also tried to run "DISM.exe /Online /Cleanup-Image /RestoreHealth". This did not help either. It completes the operation but nothing changes. The problem is still there.
    I thought that my server backups were OK and that this problem would be gone by restoring the C: drive with backup image. The problem is that all my good backups was rewritten with new backups that could not take backup of the C: drive for some reason. Now
    I need to solve this problem without reinstalling the whole operating system.
    EDIT:
    I have also completed the chkdsk C: /r command and now the SFC /Scannow command can be completed, with notification that some files could not be fixed. I have attached the sfcdetail.txt file which points out that
    "tsgclean.exe" cannot be repaired. What has that file to do with my WS2012 problems...
    2015-01-04 03:12:54, Info                  CSI    00000477 [SR] Cannot repair member file [l:24{12}]"tsgclean.exe" of Microsoft-Windows-TSProxy-EdgeAdapter,
    Version = 6.3.9600.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch

    Hi,
    Did you remember any operation which you had done before this issue occurred? For examples, install any update,
    install any third-party application or any other? Just a confirmation, thanks for your understanding.
    For those problematic services, please open services’ Properties and navigate to
    Dependencies tab, then check if all system components which this service depends on run as normal.
    In addition, please open Event Viewer and check if find relevant events. Meanwhile, please follow the path:
    %programdata%\Microsoft\Windows Server\Logs and check Dashboard log file if find more clues.
    By the way, when you run
    sfc /scannow command completely, did you open Server Manager or Dashboard again? Any difference?
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected].
    Hello Justin,
    Regarding the third-party applications:
    I have not installed any third-party application that could cause this problem. All my third-party applications that are installed on the WS2012 R2 are confirmed working well with the operative system and are installed at the time when I hadn't these problems.
    I cannot say anything about windows update because that is something that I update once in a week after checking that no user is reporting any issues. I have learned my leason with windows update when I had Surface Pro 2, that was a dissaster.
    Regarding the Windows Updates:
    Anyway, I tried to remove all the windows updates before as well (not the security updates) down to 5th December which is the time when I know that my server worked well. Only two updates could not be removed (KB3012199 and KB2989647). I don't
    know if these two updates can cause any problem?
    Regarding the problematic services:
    For example: Checking the properties for "Windows Server Essentials Management Service" -> It is dependable on
    "1. Active Directory Domain Services" and "2. Windows Server Essentials Provider Registry Service".
    No 1 is running but not no 2. If I try to start no 2 service it will give me the same message as before:
    "Windows could not start the Windows Server Essentials Management Services on Local Computer. Error 1068: The dependency service or group failed to start"
    Regarding the Logs:
    I have uploaded Dashboard log files which are created after 5th December to my dropbox account: Link
    Regarding the SFC command:
    Of course, when the SFC command was completed but with error that it could not repair
    tsgclean.exe I tried to start the essentials dashboard and WS2012 server manager with no luck.
    What about the error message? I looked up that file in the explorer and it is located in folder "C:\Windows\WinSxS\amd64_microsoft-windows-tsproxy-edgeadapter_31bf3856ad364e35_6.3.9600.16384_none_2ec8d374a0ac5606"
    Why can't it be repaired and what kind of file is that?
    Best regards

Maybe you are looking for

  • Hp 8600 All in one printer problem with scanning through wired network its very slow!

    Hi     i have problem with scanning thru network which takes almost more than 2minutes very slow compared to scanning when printer connected locally with USB.  i need some solution to fix this issue. Plz advise me what needs to be done prior to scann

  • Windows Vista 12.0.1 download does not work!

    Messages: The procedure entry point ADAAdID Policy Engine - Did Enter Station could not be located in the dynamic link literary/AdCore.dll. iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 127)  I had difficulty wit

  • Hide Upload button in library

    what is easiest way to hide the Upload button in a library or list? I know I did this easily in SharePoint Designer 2007.  But I can't figure out how to do it in SharePoint 2010. thanks!

  • ITune Newbie needs Log-in Help

    I just purchased a iPod Classic last week and should receive it tomorrow. In the process I created an Apple account. I want to purchase a few songs before the iPod arrives but the iTunes account does not reconize my password. I have reset it three ti

  • Dropped my iphone in the toilet.

    It was in there for a second, but it turned itself off. But there is still a little red light on at the top of the screen. I've vaccummed it to draw out any excess water and put it in rice in a warm place. Is there any hope for me?!