Mediation problem with WAS 6.1

I'm working with SIBus in WAS 6.1 Problem is that medations won't execute when sending messages to destinations. I get this error:
The handler list MyMediation contains a handler MyMediation, which does not implement the MediationHandler interface
public class MyMediation implements MediationHandler {
     public boolean handle(MessageContext arg0) throws MessageContextException {
          System.out.println("***********************");
          System.out.println("********MEDIATE********");
          System.out.println("***********************");
                                     //Some other stuff...
          return true;
}I don't know what I have done wrong. This is a simple java class in EJB project. Here is the ejb-jar.xml
<ejb-jar id="ejb-jar_ID" version="2.1" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd">
     <display-name>
     TestMediation</display-name>
     <enterprise-beans>
          <session id="MyMediation">
               <ejb-name>MyMediation</ejb-name>
               <local-home>test.MyMediationLocalHome</local-home>
               <local>test.MyMediationLocal</local>
               <ejb-class>com.ibm.websphere.sib.mediation.handler.ejb.GenericEJBMediationHandlerBean</ejb-class>
               <session-type>Stateless</session-type>
               <transaction-type>Container</transaction-type>
               <env-entry>
                    <env-entry-name>mediation/MediationHandlerClass</env-entry-name>
                    <env-entry-type>java.lang.String</env-entry-type>
                    <env-entry-value>test.MyMediation</env-entry-value>
               </env-entry>
          </session>
     </enterprise-beans>
     <assembly-descriptor>
          <container-transaction>
               <method>
                    <ejb-name>MyMediation</ejb-name>
                    <method-intf>Local</method-intf>
                    <method-name>*</method-name>
               </method>
               <trans-attribute>Supports</trans-attribute>
          </container-transaction>
     </assembly-descriptor>
</ejb-jar>

I also get this authorization error althought I don't have administrator security enabled.
[12.9.2007 9:15:06:295 EEST] 00000027 WSCredentialT E   SECJ5011E: Could not create default AuthorizationToken during propagation login.  The following exception occurred: java.lang.NullPointerException
     at com.ibm.ws.security.token.WSCredentialTokenMapper$9.run(WSCredentialTokenMapper.java:960)
     at java.security.AccessController.doPrivileged(AccessController.java:242)
     at com.ibm.ws.security.util.AccessController.doPrivileged(AccessController.java:125)
     at com.ibm.ws.security.token.WSCredentialTokenMapper.createAuthzTokenFromWSCredential(WSCredentialTokenMapper.java:955)
     at com.ibm.ws.security.server.lm.wsMapDefaultInboundLoginModule.login(wsMapDefaultInboundLoginModule.java:767)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:615)
     at javax.security.auth.login.LoginContext.invoke(LoginContext.java:795)
     at javax.security.auth.login.LoginContext.access$000(LoginContext.java:209)
     at javax.security.auth.login.LoginContext$4.run(LoginContext.java:709)
     at java.security.AccessController.doPrivileged(AccessController.java:242)
     at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:706)
     at javax.security.auth.login.LoginContext.login(LoginContext.java:603)
     at com.ibm.ws.sib.security.auth.AuthUtilsImpl.getOpaqueAuthorizationToken(AuthUtilsImpl.java:939)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:615)
     at com.ibm.ws.sib.trm.client.CredentialType.<init>(CredentialType.java:133)
     at com.ibm.ws.sib.trm.client.TrmSICoreConnectionFactoryImpl.createConnection(TrmSICoreConnectionFactoryImpl.java:160)
     at com.ibm.ws.sib.webservices.inboundservice.EPLInvoker.getParentSICoreConnection(EPLInvoker.java:397)
     at com.ibm.ws.sib.webservices.inboundservice.EPLInvoker.getNewSICoreConnection(EPLInvoker.java:344)
     at com.ibm.ws.sib.webservices.inboundservice.EPLInvoker.invoke(EPLInvoker.java:1220)
     at com.ibm.ws.sib.webservices.JsDispatcher.processMessage(JsDispatcher.java:226)
     at com.ibm.ws.sib.webservices.JsDispatcher.invoke(JsDispatcher.java:108)
     at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
     at com.ibm.ws.webservices.engine.handlers.jaxrpc.JAXRPCHandler.invoke(JAXRPCHandler.java:152)
     at com.ibm.ws.webservices.engine.handlers.WrappedHandler.invoke(WrappedHandler.java:64)
     at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
     at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
     at com.ibm.ws.webservices.engine.WebServicesEngine.invoke(WebServicesEngine.java:336)
     at com.ibm.ws.webservices.engine.transport.http.WebServicesServlet.doPost(WebServicesServlet.java:739)
     at com.ibm.ws.sib.webservices.transport.http.SIBusGatewayServlet.doPost(SIBusGatewayServlet.java:336)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
     at com.ibm.ws.webservices.engine.transport.http.WebServicesServletBase.service(WebServicesServletBase.java:341)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
     at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:501)
     at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3252)
     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:264)
     at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)
     at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1439)
     at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:112)
     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:454)
     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:383)
     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:263)
     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
     at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
     at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
     at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
     at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
     at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
     at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
     at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
     at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)

Similar Messages

  • Problems with WAS 6.40 Installation on Oracle - Phase 11 of 34

    Hello,
    <b>Problems with WAS 6.40 Installation on Oracle (Phase 11 of 34)</b>
    with the installation of the Web Application server 6,40 SR1 on a Oracle server I get in phase 11 of 34 (Create Oracle Database) the following error-message:
    CJS-00084 - SQL statement or script failed. Diagnosis: Error message: ORA-12547: TNS:lost contact.
    error while loading shared library: libodm9.so : cannot open shared object file: No such file or dirctory.
    Best Reagrds,
    Ralf Steffens

    hi Ralf
    i've found one composite note for Oracle <a href="https://websmp203.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700001366932002">505630</a>
    hope this solves...
    <i><b>Symptom</b>
    ORA-12547: TNS:lost contact
    Brbackup, brarchive, brrestore or brconnect may terminate with errors similar to the following:
    BR301E SQL error -12547 at location BrDbConnect-1
    BR301E SQL error -12547 at location dbf_info_get-1
    Sapdba returns the following error, for example:
      SAPDBA: ORACLE error -12547 occurred while checking instance status!
    The R/3 work processes or R3trans return the following error at Connect:
      C  *** ERROR => CONNECT failed with sql error '12547'
    <b>Other terms</b>
    TNS-12547, TNS-00517
    <b>Reason and Prerequisites</b>
    As part of the Net8 Connect, a program such as the R/3 kernel, R3trans, svrmgrl, sqlplus or ODMA establishes a connection to the Oracle database. If the connection terminates due to problems at the server end, it can result in ORA-12547.
    Additional information for the error is often available in sqlnet.log. In many cases, other messages that are not reported by all tools precede ORA-12547. If ORA-12547 occurs when the ODMA accesses the old Oracle-Home during a database upgrade, for example, it may make sense to temporarily restart ORACLE_HOME on the old Oracle-Home for test purposes and then to execute sqlplus or svrmgrl.
    Even if sapdba or the BR tools terminate with an ORA-12547 when calling sqlplus or svrmgrl recursively, you should, for test purposes, call sqlplus or svrmgrl manually with the operating system user that was used.
    Hopefully, a more informative error message will appear in addition to ORA-12547, for example:
      ld.so.1: oracleC11: fatal: relocation error: file
               /oracle/C11/817_64/libx8.so: symbol ksunsga_:
               referenced symbol not found
    If you find accompanying error messages of this type, start a note search with the corresponding search terms since we are often aware of the problem and a solution may already be available. If you do not find any significant error messages or a suitable note, check the following possible causes for ORA-12547:
    1. UNIX: Incorrectly linked Oracle tools
    2. UNIX: Problems with XPG4 compliance and s-bit
    3. Too many requests to the listener at the same time
    4. HP-UX, Oracle 8.1: Missing OS patch
    5. Use of CRYPTO parameters in sqlnet.ora
    6. AIX: I/O Async is deactivated
    7. Resource problems
    8. The CONNECT_TIMEOUT_LISTENER parameter in listener.ora is too low
    9. Activated Oracle trace
    10. UNIX: Incorrect oracle executable authorization
    11. SOLARIS: LD_LIBRARY_PATH set when you call ODMA
    12. AIX: Problem with post/wait kernel enhancement
    13. UNIX: Problems with the libobk library
    14. SOLARIS: Incorrect search sequence in the path variable
    15. UNIX: Conflicts between 32-bit and 64-bit files
    <b>Solution</b>
    1. Relink the Oracle software as ora<sid> with
      cd $ORACLE_HOME/rdbms/lib
      make -f ins_rdbms.mk install
                  or
      relink all
    1. See Note 88884.
    2. If individual work processes terminate with ORA-12547 when you start an R/3 instance, See Note 131561.
    3. See Note 399610.
    4. You can set security parameters that begin with SQLNET.CRYPTO_ in sqlnet.ora as part of the Advanced Security Option. Oracle releases < 8.1.7 cannot process these parameters correctly and result in ORA-12547. In this case, delete these types of parameters from sqlnet.ora.
    5. If I/O is deactivated on AIX Async, the Net8 Connect fails with ORA-12547. In this case, activate I/O Async by using smitty.
    6. Insufficient resources such as available memory on the database server can cause ORA-12547. For more information, see 384839.
    7. In individual cases, it may make sense to increase the CONNECT_TIMEOUT_LISTENER parameter in listener.ora (for example, by 5 seconds, so from 10 to 15). Although a value of 10 seconds should usually be sufficient to establish a connection.
    8. Delete the log files written by the Oracle trace in accordance with Note 92537.
    9. Check to see whether the executable in $ORACLE_HOME/bin has the "rwsr-s--x" authorizations and the ora<sid> owner and correct this if necessary.
    10. If you call ODMA on SOLARIS as part of a database upgrade and if LD_LIBRARY_PATH is set explicitly (on the lib directory of the target release), calling the old Oracle software through ODMA may fail with ORA-12547. If you use the old ORACLE_HOME to list sqlplus or svrmgrl, you get the following error:
      ld.so.1: oracle<sid>: fatal: relocation error:
               file /oracle/<sid>/817_64/libx8.so: symbol ksunsga_:
               referenced symbol not found
      ORA-12547: TNS:lost contact
                   In this case, permanently delete LD_LIBRARY_PATH from the environment. This does not have any negative effects since the libraries are automatically found in the correct directories as of Oracle 8.1.
                   If problems occur with the post/wait extension on AIX, the following type of errors will be displayed:
      exec(): 0509-036 Cannot load program oracleC11 because of the
      following errors:
              0509-130 Symbol resolution failed for oracle because:
              0509-136   Symbol pw_post (number 2524) is not exported
                          from dependent module /unix.
              0509-136   Symbol pw_wait (number 2525) is not exported
                          from dependent module /unix.
              0509-136   Symbol pw_config (number 2526) is not exported
                          from dependent module /unix.
              0509-192 Examine .loader section symbols with the
                       'dump -Tv' command.
      ORA-12547: TNS:lost contact
    1. If the libobk library was created incorrectly, the following type of errors may occur:
      /oracle/C11/817_64/bin/oracle: /sbin/loader:
        Fatal Error: Cannot map library libobk.so
      /usr/lib/pa20_64/dld.sl: Unable to find library
        '/oracle/C11/lib64/libobk.sl
      exec(): 0509-036 Cannot load program oracleC11 because of the
              following errors:
      0509-150   Dependent module /oracle/C11/817_64/lib/libobk.a(shr.o)
                 could not be loaded.
      0509-152   Member shr.o is not found in archive
      ORA-12547: TNS:lost contact
                   Check to see whether libobk exists and, if it is a link, that it points to a valid object. Note 142635 contains more information about this. The libobk link may point to this if a libsbtsh8.* file exists in the Oracle library directory. If you are using a third-party Backint tool, contact the relevant supplier, since libobk often has to point to a backint-specific library.
    1. If an error such as
      ld.so.1: ./svrmgrl: fatal: libucb.so.1: open failed:
               No such file or directory
      ORA-12547: TNS:lost contact
                   occurs, the PATH has probably been set incorrectly. For more information, see Note 44361.
    1. If an error such as
      ld.so.1: oracle<sid>: fatal: <library> wrong ELF class: ELFCLASS64
      ORA-12547: TNS:lost contact
                  concerning "wrong ELF class" occurs, check whether the <library> mistakenly has a different bit size than the tool that was called. You can determine this using
      file <library>
      file <tool>
                   All the files involved must uniformly be either 32-bit or 64-bit.
    </i>
    Regards
    Arunkumar

  • Problem with WAS's proces list node

    Hi ,
    I have WAS installed on my machine.Whenever we try to deploy applications frequently on WAS its process list node turns out to be yellow.Then again I have to restart that node.I even increased the memory size of my machine.Also currently my machine has 2 GB of RAM.Any solution?
    Kindly advice
    Thanks
    VInay

    Can you find any errors in the trace files? /usr/sap/SID/DV*/work/
    Regards
    Timm

  • Problems with Installer application

    Hi!
    Lately I've been having problems with Installer with several packages. Some pkgs install just fine, but others fail whenever they try to run some preflight or preinstall scripts.
    My mac is new MacBook Pro Core 2 Duo shipped with 10.4.8. I think these problems might have started after some late Security Updates.
    I've been doing maintenance tasks prediotically as well as repaired permissions and disk in single user mode. I've also tried to copy Installer from my Tiger install DVD's but with no luck.
    Either system.log, console.log nor CrashReports don't show anything. Installer's own log just announces that install failed while running presomething-scripts. But when I run these scripts manually from Terminal, they work just fine without any errors.
    I'm hopeless. I wish won't have to see the day coming when I'll have to do that so well known regular windows-like format and reinstall procedure with OS X. Sadly there's several packages I need to have installed, so if reinstall is the only solution please throw some backup and restore tips at me.
    With kind regards,
    Joona

    The first package I noticed this problem with was DivX for Mac installer. The Installer's log pointed that installation failed while running the preflight script. The script is pretty long, but mainly just removes older version of DivX libraries and applications and when I run it from the shell, it works just fine.
    I've also tried downloading it again along with another versions, but all the Installer fail at the same point. I've also tried to find some help to this problem from their forums, but it seems to me that I'm the only one having this problem.
    Another package which I found failing is Missing Sync for Windows Mobile. I just ordered HTC TyTN -phone and tried to get Missing Sync working. Missing Sync itself installs correctly, but there's a application which comes bundled with MS called Mark/Space Notebook. The installer is multipackage installer and during the installation of M/S Notebook it fails while running preinstall script. The preinstall script is really simple, like this:
    #!/bin/bash
    rm -rf "/Applications/Mark:Space Notebook.app"
    I haven't yet tried these packages on other Macs, but I'm positive they will work just fine. I believe that the problem must be either the Installer app, or something in my shell environment that makes it fail. Any ideas what could it be?
    When searching help from this forum first to this problem I ran into post that indicated the same problem and the fix for that was recreating admin/root account. Although I am pretty familiar with *BSD and UNIX systems, I didn't quite get what was meant by that. As far as I know the root account can't be easily recreated?

  • Problem with iOS7 : I have a message on my screen "This phone is not registred as a developper phone..." or something like that, can you help me because I download the iOS7 Beta even if I was not a developper. Thank you very much if you help me.

    Problem with iOS7 : I have a message on my screen "This phone is not registred as a developper phone..." or something like that, can you help me because I download the iOS7 Beta even if I was not a developper. Thank you very much if you help me.

    JaillotJb wrote:
    I download the iOS7 Beta even if I was not a developper.
    if you downloaded it and are not a developer, then we are not allowed to help you here.  sorry.

  • SSO problem on Windows Mobile with WAS Java 7.0 and R/3 4.7

    We have a curious single sign-on problem with custom WM-app.
    The application is developed using WD Java and currently runs on WAS 7.0 SPS10. WAS makes calls to several RFC:s on 4.7 Enterprise and authentication is done using SSO.
    The enduser device is a handheld running Windows Mobile and the browser is a vendor (HHP) provided Mobile IE based HandHeldWeb. Because of the poor usability of the default login on handhelds we created a custom J2EE Web Application JSP which does the login to the WM-app.
    On a PC browser everything functions normally, but occasionally with the mobile device no data from R/3 is displayed. As if SSO didn't work. Sometimes, if transaction 1 doesn't work and the user comes out of it, then runs transaction 2 which makes an RFC call and then returns to transaction 1 it works. Sometimes..
    This problem does not occur on mobile device when the default login is used. And as stated previously, on a PC the custom login works fine.
    -Erno

    Hi,
    Currently SAP is selling the Software in Business Suite .
    If you are purchasing the SRM 7.0 .It will come as Business suite . It will contain
    1. SRM 7.0
    2.CRM
    3.PLM
    4.SCM
    5. ECC 6.0 wiht Eph 4
    When you are getting the ECC 6.0 in this package why to use  SAP R/3- 4.6C
    So better you upgrade both the SRM and R/3.
    I would like to know if SRM 7.0 and R/3 4.6C is compatible in first place.Will it work?
    It will work but in the long run you will get lot  of Problem.Since SRM 7.0 is Based on Webdynpro technology
    Regards
    G.Ganesh Kumar

  • I was given a new phone because of a technical problem with my other. Everything was replaced because of iCloud but now it is telling me I do not have enough storage room on this phone to perform a back-up. Can I fix this?!

    I was given a new phone because of a technical problem with my other. Everything was replaced because of iCloud but now it is telling me I do not have enough storage room on this phone to perform a back-up. Can I fix this?!

    Why don't you call Apple tech support thru your provider. They will be able to help you in short order.
    PS - If you want help here you need to provide a little more information i.e. how much memory does your iPhone -4- have and how much free memory do you have after restoring from the cloud?

  • Problems with Photoshop CS2 I originally purchased this software several years ago. At time I was running Microsoft Windows XP. This computer recently was replaced with  a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few

    Problems with Photoshop CS2
    I originally purchased this software several years ago. At time I was running Microsoft Windows XP.
    This computer recently was replaced with a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few exceptions as follows;
    when the software comes up initially I get a message that says “could not complete your request because of program error”. Hitting OK allows me to continue using the software .
    When I try to activate a function using CTLR or ALT keys I get this message “required application failed to load and the product cannot continue. Please reinstall the application”. This causes the application to abort.
    Reloading my CS2 continues to generate the same messages when I depress the CTLR or ALT keys.

    Your original copy is obsolete and Adobe is offering a free replacement you are entitled to. Download and use that and that should clear it up for you.
    https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Download this copy of CS2 and use the serial number provided next to the download link.

  • HT4864 I am getting a triangle with an exclamation point next to my inbox...it says: There may be a problem with the mail server or network. Verify the settings for account "MobileMe" or try again.  The server returned the error: Mail was unable to log in

    I can send but cannot recieve email
    This is the messege I am gewtting:
    There may be a problem with the mail server or network. Verify the settings for account “MobileMe” or try again.
    The server returned the error: Mail was unable to log in to the IMAP server “p02-imap.mail.me.com” using “Password” authentication. Verify that your account settings are correct.
    The server returned the error: Service temporarily unavailable

    Also if I go to system preferences accounts and re-enter the password it fixes the glitch sometimes.

  • I tried downloading a free app and it asked for my billing information and when i entered it, it says that there was a billing problem with a previoud purchase and i have to update it. I keep updating it and it wont let me verify it and i cant get apps

    I tried downloading a free app and it asked for my billing information and when I entered it, it said that there was a billing problem with a previous purchase and I have to update it. I keep updating it and it wont let me verify it and I cant get any apps even if they are free, and I just Deleted some apps to make room for my new upate!

    The message says: "The payment method has been denied, try another method"
    I'm living in the same country and city since I was born, so I don't think the location is the problem.
    And yes, I paid with the card a meal in Burguer King today. And nothing more.

  • I just recently purchased 3 songs from itunes not knowing that I had no money on my debit card (visa) left. My iphone wont let me update my apps and says that there was a billing problem with my last purchase. I dont know what I am supposed to do!

    I just recently purchased 3 songs from itunes not knowing that I had no money on my debit card (visa) left. My iphone wont let me update my apps and says that there was a billing problem with my last purchase. I dont know what I am supposed to do! I dont understand why it worked in the first place when it wasn't supposed to!

    There seems to be a billing problem with the iTS.  I've been trying to make purchases today (Dec 9th) too and it reports either the iTS can not process payments or it says my card was declined. I even changed the payment method to Paypal (which is never declined) and still no go.
    I don't think it is "you" but a problem at Apple.  Some popular new apps were released recently like Logic Pro and perhaps they're getting bombarded as they did when Lion was released.
    Wait a few hours and then try again.

  • When I use Firefox and Hotmail at startup, Firefox freezes for about 1 minute, and then I can continue. First I though it was my computer but 2 other girls in my class have the same problem with Hotmail and Firefox. What can I do to change this?

    When I start Firefox, about 15 seconds after I start it, my Firefox freezes for about 1 minute. I found out that it is my Hotmail that makes Firefox freeze.
    First I thought it was my computer, but I have 2 other girls in my class that use Hotmail and Firefox and their computer also freezes for 1 full minute.
    This is very annoying, what can I do to change this?
    xxx ellen
    p.s. I am from the Netherlands, maybe that has something to do with it?

    Try deleting cookies and cache:
    1. Tools| Clear recent history
    2. Time range to clear: Everything
    3. If it isn't already selected, select '''Cookies''' and '''Cache'''
    4. '''Clear now'''
    '''Check cookie exceptions'''
    1. Tools | Options | Privacy Panel
    2. Set '''Firefox will: Use custom settings for history.''' '''Insure Accept cookies for sites and accept third-party cookies''' is selected
    3. Click '''Exceptions'''. If the misbehaving site is in that list, select it and click '''Remove site'''
    '''Safe Mode'''
    Add-ons can cause problems with not being able to log into certain websites. To see if this is the case with your issue, run [[Safe mode]]. When you get to the safe mode window, select Continue in Safe Mode. If this resolves your problem, see [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Also see [[Updating Firefox]] and [[Cannot log in to websites]]

  • Problem with headerline in OO   again     -  other thread was locked  -

    Problem with headerline in OO  
    Hello,
    I've the problem that I cannot give values from an inertnal table to
    an variable because the itab has no headerline, because in oo it is not possible.
    Here the coding:
    structure in se11 ZACTIVITYIF with components:
    DESCRIPT
    CATEGORY
    PRIORITY
    OBJECT
    DATE_FRO
    DATE_TO
    TIME_FRO
    TIME_TO
    CONT_NO
    LANGTEXT
    STATUS
    OO-Coding:
    DATA: lt_itab TYPE TABLE OF zactivityif.
    DATA: itab TYPE zactivityif.
    Loop at dbtab
    itab-status = '005'.
    APPEND itab TO lt_itab
    endloop.
    set variable for bapi
    lss_text-tdline = lt_itab-langtext. <= here I get error: no tablerwith headerline
    How can I fill an internal table in OO or how can I fill this variable lss_text-tdline ?
    Any ideas ?
    LANGTEXT is type TLINE
    I calling bapi for creating an activity
    Sorry for this double thread -the other was locked however.
    Thanks G

    The other one was locked because handling internal tables without header lines is extremely basic .
    Read the documentation, search the forum search the web.
    Or if your question is not as basic as it seems, post a new one with a better explanation.
    Locked again
    Rob

  • I have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me

    i have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me???

    If Join was on then your home wi-fi must be set to Non-Broadcast.  If you did not set this up (maybe your provider did) then you will need to find the Network Name they used, and any password they used.  The SSID is Security Set ID and to see more try http://en.wikipedia.org/wiki/SSID .  Basically it is the name used to identify your router/network.  A lot of times the installer will leave it set as LinkSys, or Broadcom or whatever the manufacturer set it as for default.  Your best bet is to get whoever installed it to walk you through how they set it up, giving you id's and passwords so you can get in.  HOWEVER, if you are not comfortable with this (if you set security wrong, etc.) you would be well ahead of the game to hire a local computer tech (networking) to get this working for you.  You can also contact the vendor of your router and get help (if it is still in warranty), or at least get copies of the manuals as pdf files.  Sorry I can't give you more help, I hope this gives you an idea where to go from here to find more.

  • TS1702 I have problem with accessing to my Game Center. I was not able to log in to y game center. The loading took anyone ever had this problem? How do I solve this issue?

    My Game Centre was disabled. I was advise to login to my Game Center to enable my achievements. But everythime I login in to my Game Center, it take ages for the loading to process and just hang there. Can some one help me to solve this issue?

    If the problem persists, you'll probably have to make another apple id, it wont take off any games or music or apps or anything you've bought it will all stay there, i have two apple id's and i don't have a problem with anything.

Maybe you are looking for