Problems with multiple connections in the same transaction

Hi all !
          I'm have two questions regarding the way weblogic handles multiple
          connections.
          1) first, I don't understand why weblogic always create a new Managed
          Connection when I'm asking for 2 connection handles on the same connection
          factory and with the same connectionRequestInfo. Isn't it supposed to share
          connections ?
          For instance, the following snippet of code results in the creation of 2
          managed connections:
          ConnHandle conn1 = myCF.getConnection(myRequInfo);
          ConnHandle conn2 = myCF.getConnection(myRequInfo);
          The class corresponding to myRequInfo does implement the equals and hash
          method, so that weblogic's connection manager could use them to check that
          the queried connections are the same, and thus could share a single
          ManagedConnection between multiple connection handles. Apparantly it does
          not do that...
          2) OK, I just let weblogic create the 2 managed connections, but... My use
          of the connections is as part of a transaction. Here is what happens:
          ConnHandle conn1 = myCF.getConnection(myRequInfo);
          // a new managedConn1 is instanciated. the following happens (just a
          description)
          // xar1 = managedConn1.getXAResource()
          // xar1.start(NOFLAGS)
          // I use the conn1 handle
          conn1.close();
          //xar1.end(SUSPEND)
          ConnHandle conn2 = myCF.getConnection(myRequiInfo);
          // a new managed connection managedConn2 is instanciated.
          // xar2 = managedConn2.getXAResource();
          // xar2.start(RESUME)
          // I use conn2 handle
          conn2.close();
          // xar2.end(SUSPEND);
          // my bean returns from the remote invocation
          // the client of the bean asks to commit (using UerTransaction.commit on the
          client side)
          // xar2.end(SUCCESS)
          // xar2.commit(onePhase=true);
          // managedConn2.cleanup();
          And that's all. So, as one can see, managedConn1.cleanup was never called.
          When looking in the weblogic console, I can see that I have one connection
          with 0 handle and one with 1 handle, deemed as still being in a transaction.
          So, the conenction manager apparantly loses a managed connection during the
          transaction. And it's very very bad because after a couple of transactions,
          I'm running out of managed connections (I had set a limit of 10).
          Any one has seen such a weird behavior ? Is this a problem on my side, or
          weblogic's ? Thanks for your help.
          Sylvain
          

          I ran another test. This time I have a bean that makes use of a connector
          once per method invocation. The bean method invoked is "sayHello" and it
          gets a connection to the EIS, perform an operation on it and release it. The
          connector I developed uses XA transactions.
          My test client just calls 3 times myBean.sayHello().
          I can distinguish two cases:
          1) first, the client doesn't do transaction demarcation. In this case, since
          the sayHello method is marked as requiring transaction, the folowing happens
          in the bean:
          // **** first invocation of the bean
          connHandle = myCF.getConnection();
          // managedConn1 is instanciated
          // xar1 = managedConn1.getXAResource()
          // xar1.start(NOFLAGS);
          // managedConn1.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close()
          // xar1.end(SUCCESS);
          // the bean returns from its invocation
          // xar1.commit(onePhase=true)
          // managedConn1.cleanup()
          // **** second invocation of the bean
          connHandle = myCF.getConnection();
          // managedConnectionFactory.matchManagedConnection is called. It returns the
          managed connection (managedConn1) that is in the passed set
          // xar1 = managedConn1.getXAResource()
          // xar1.start(NOFLAGS);
          // managedConn1.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close
          // xar1.end(SUCCESS);
          // the bean returns from its invocation
          // xar1.commit(onePhase=true)
          // managedConn1.cleanup()
          // **** third invocation of the bean
          connHandle = myCF.getConnection();
          // managedConnectionFactory.matchManagedConnection is called. It returns the
          managed connection (managedConn1) that is in the passed set
          // xar1 = managedConn1.getXAResource()
          // xar1.start(NOFLAGS);
          // managedConn1.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close
          // xar1.end(SUCCESS);
          // the bean returns from its invocation
          // xar1.commit(onePhase=true)
          // managedConn1.cleanup()
          2) second case : the client performs transaction demarcation. In that case,
          the connection manager instanciates 3 managed connections, calls start/end
          on each XAResource corresponding to each managed connection, calls commit
          once, but also calls cleanup only once, leaving 2 lost managed connections
          The client looks like this:
          UserTransaction utx = context.lookup("javax/transaction/UserTransaction");
          utx.begin();
          MyBean myBean = ctx.lookup(".......");
          myBean.sayHello();
          myBean.sayHello();
          myBean.sayHello();
          utx.commit();
          on the server the following happens:
          // **** first invocation of the bean
          connHandle = myCF.getConnection();
          // managedConn1 is instanciated
          // xar1 = managedConn1.getXAResource()
          // xar1.start(NOFLAGS);
          // managedConn1.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close()
          // xar1.end(SUSPEND);
          // the bean returns from its invocation
          // **** second invocation of the bean
          connHandle = myCF.getConnection();
          // managedConn2 is instanciated
          // xar2 = managedConn2.getXAResource()
          // xar1.isSameRM(xar2) is called. returns true
          // xar2.start(RESUME);
          // managedConn2.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close()
          // xar2.end(SUSPEND);
          // the bean returns from its invocation
          // **** third invocation of the bean
          connHandle = myCF.getConnection();
          // managedConn3 is instanciated
          // xar3 = managedConn3.getXAResource()
          // xar2.isSameRM(xar3) is called. returns true
          // xar3.start(RESUME);
          // managedConn3.getConnection gives a connection handle
          connHandle.doSomeWork();
          connHandle.close()
          // xar3.end(SUSPEND);
          // the bean returns from its invocation
          // the client invokes commit on the UserTransaction
          // xar3.end(SUCCESS);
          // xar3.commit(onephase = true);
          // managedConn3.cleanup();
          And so, managedConn1 and managedConn2 got lost in the way...
          What's more puzzling, it's that when monitoring my connector with the
          console, I can see that there are 3 connections. 2 declared as still having
          one handle used and being in transaction, and one not in transaction and
          with 0 active handle. BUT when monitoring the JTA part of the server, I can
          see that there has been 1 transaction that committed, and no connection is
          "in flight" as the console says. So, on one side the console says 2 managed
          connections are still part of a transaction while on the other it says that
          no transactions are currently in flight.
          Thanks for any kind of help on this very bizarre behavior.
          Sylvain
          

Similar Messages

  • Problem with multiple threads accessing the same Image

    I'm trying to draw into one Image from multiple threads. It works fine for a while, but then suddenly, the image stops updating. Threads are still running but the image won't update. I'm using doublebuffering and threads are simply drawing counters into Image with different speed.
    It seems like the Image gets deadlocked or something. Anyone have any idea what's behind this behavior or perhaps better solution to do such thing.
    Any help will be appreciated.

    Sorry Kglad, I didn't mean to be rude. With "No coding
    errors" I meant the animation itself runs with no errors. I'm sure
    you could run the 20 instances with no freezing (that's why I put
    the post :) ) But I'm affraid it is an animation for a client, so I
    cannot distribute the code.
    Perhaps I didnt explain the situation clearly enough (in part
    because of my poor english...).-
    - By 20 instances I mean 20 separated embedded objects in the
    html
    - The animation is relatively simple. A turned on candle, in
    each cycle I calculate the next position of the flame (that
    oscilates from left to right). The flame is composed by 4
    concentric gradients. There is NO loops, only an 'onEnterFrame'
    function refreshing the flame each time.
    - It's true that I got plenty variables at the _root level.
    If that could be the problem, how can I workaround it?
    - It is my first time trying to embed so many objects at the
    same time too. No idea if the problem could be the way I embed the
    object from the html :(
    - The only thing I can guess is that when a cycle of one of
    the object is running, the other 19 objects must wait their turn.
    That would explain why the more instances I run, the worst results
    I get. In that case, I wonder if there's a way to run them in a
    kind of asynchronous mode, just guessing...
    Any other comment would be appreciated. Anyway, thanks a lot
    everybody for your colaboration.

  • Problem with multiple .swf in the same page

    Hi everybody,
    I got a small animation written in actionscript 2.0. I need
    to load it several times in a webpage (about 20 instances), but
    seems to be too many work and the web browser freezes.
    Anyway, it's a relatively simple script (not complex
    arithmetics per cycle, although two or three color gradient
    refreshing), so I think the problem could be the fact of having so
    many instances running at the same time...
    Is there any way to fix this problem without reducing the
    quality of the animation?
    Thanks a lot!

    Sorry Kglad, I didn't mean to be rude. With "No coding
    errors" I meant the animation itself runs with no errors. I'm sure
    you could run the 20 instances with no freezing (that's why I put
    the post :) ) But I'm affraid it is an animation for a client, so I
    cannot distribute the code.
    Perhaps I didnt explain the situation clearly enough (in part
    because of my poor english...).-
    - By 20 instances I mean 20 separated embedded objects in the
    html
    - The animation is relatively simple. A turned on candle, in
    each cycle I calculate the next position of the flame (that
    oscilates from left to right). The flame is composed by 4
    concentric gradients. There is NO loops, only an 'onEnterFrame'
    function refreshing the flame each time.
    - It's true that I got plenty variables at the _root level.
    If that could be the problem, how can I workaround it?
    - It is my first time trying to embed so many objects at the
    same time too. No idea if the problem could be the way I embed the
    object from the html :(
    - The only thing I can guess is that when a cycle of one of
    the object is running, the other 19 objects must wait their turn.
    That would explain why the more instances I run, the worst results
    I get. In that case, I wonder if there's a way to run them in a
    kind of asynchronous mode, just guessing...
    Any other comment would be appreciated. Anyway, thanks a lot
    everybody for your colaboration.

  • Problem with Multiple Versions of the Same Activex

    Hi,
    I Installed some "ABC" Activex 9.5 version and 10.1 version in the system.
    I have ASP.net webpage which should use only 9.5 version of Activex.  But by default 10.1 version is active and invoking by webpage.
    Is there any way to enforce from webpage to use only 9.5 version of Activex?
    Please let me know if you need more details.
    Thanks & Regards,

    Hi,
    Have you tried to uninstall this Activex in Manage add-on, then install the 9.5 version? Please have a try.
    Roger Lu
    TechNet Community Support

  • Attempting to use bluetooth, but my newly replaced 2nd generation iPod touch searches but never detect my wireless headphones which are right beside it. My old iPod had no problem detecting and connecting to the same headphones.

    Attempting to use bluetooth. My newly replaced 2nd generation iPod touch searches but never detect my wireless headphones which are right beside it. My old iPod had no problem detecting and connecting to the same headphones.

    You can try:
    - reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Power off an then backon your router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - The troubleshooting here:
    iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections

  • Multiple connections for the same user.

    I have EJB A and EJB B. A and B use a JCA connector that
              I have written. I have matchManagedConnections set so that if user U has not used EJB A or EJB B, then a new ManagedConnection is created. If user U has used A or B then that user is given a new virtual connection created from an existing ManagedConnection. Now the problem is that if user U access' A for the first time and then access' B BEFORE A has closed the connection, then a new ManagedConnection is created for user U. Therefore in this case user U gets 2 ManagedConnections to the EIS that we are using. Eventually one of the ManagedConnections is distroyed but I would like to eliminate this in the first place. How do a get Weblogic to see that a user has a ManagedConnection before that user is done with the connection.

    You can't have multiple roles on multiple connection, as you are connecting to the same website (different sub directories) ultimately.
    Here is the workaround:-
    You can create a new user account on your machine and can manage different roles.
    Hope it helps.

  • Lightroom CC issues with multiple export at the same time

    Back before Lightroom updated to the CC version, I was able to use export presets to send 4 different versions of the photos I'm working on at the same time (A Full Size for client at certain size, full size for myself, web-sized with watermark and a thumbnail). Since updating to the CC version, I'm only able to start the export process on two of these versions before the system simply becomes crippled and I cannot even navigate through Lightroom without it chugging along.
    For reference, I'm running a 2014 rMBP with 16GB of RAM, LR is the only app open at the time and it's showing that I have roughly 6GB of RAM free when attempting this export.
    TL;DR: LR5 worked wiht multiple exports at the same time, but LRCC now chugs after 2 exports are started

    Re: "Selecting video in Messages, now starts Face time for video. Face time is one to one only."
    Apple "Messages" supports two different types of video conferencing. It's become more than a little confusing. If you (or the person on the other end) ONLY have accounts set up for Apple's "iMessage" service (associated with your Apple ID and "iCloud") you may see the video symbol, but when you click on it you will be connected via FaceTime which is limited a 1-to-1 video conference.
    However, if you have set up an AIM account in Messages (you may already have an AIM account ID if you once used iChat for video, audio and screensharing) and the person at the other end also has an AIM account you will be connected via AIM and will be able to do screen sharing and multi-person video conferences just like the old iChat, i.e. you'll have iChat Theater features, up to 4-way conferencing, etc.
    It can get very confusing if, for example, you've signed up for AIM using a .me or .cloud email address. But once you have it set up and learn to recognise the way Messages switches between AIM and iMessage all the old iChat features work just fine in Messages.

  • Timesten replication with multiple interfaces sharing the same hostname

    Hi,
    we have in our environment two Sun T2000 nodes, running SunOS 5.10 and hosting a TT server currently in Release 7.0.5.9.0, replicated between each other.
    I would like to have some more information on the behavior of the replication w.r.t. network reliability when using two interfaces associated to the same hostname, the one used to define the replication element.
    To make an example we have our nodes sharing this common /etc/hosts elements:
    151.98.227.5 TBMAS10df2 TBMAS10df2-10 TBMAS10df2-ttrep
    151.98.226.5 TBMAS10df2 TBMAS10df2-01 TBMAS10df2-ttrep
    151.98.227.4 TBMAS9df1 TBMAS9df1-10 TBMAS9df1-ttrep
    151.98.226.4 TBMAS9df1 TBMAS9df1-01 TBMAS9df1-ttrep
    with the following element defined for replication:
    ALTER REPLICATION REPLSCHEME
    ADD ELEMENT HDF_GNP_CDPN_1 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS9df1-ttrep"
    SUBSCRIBER tt41data ON "TBMAS10df2-ttrep"
    RETURN RECEIPT BY REQUEST
    ADD ELEMENT HDF_GNP_CDPN_2 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS10df2-ttrep"
    SUBSCRIBER tt41data ON "TBMAS9df1-ttrep"
    RETURN RECEIPT BY REQUEST;
    On this subject moving from 6.0.x to 7.0.x there has been some changes I would like to better understand.
    6.0.x reported in the documentation for Unix systems:
    If a host contains multiple network interfaces (with different IP addresses),
    TimesTen replication tries to connect to the IP addresses in the same order as
    returned by the gethostbyname call. It will try to connect using the first address;
    if a connection cannot be established, it tries the remaining addresses in order
    until a connection is established.
    Now On Solaris I don't know how to let gethostbyname return more than one interface (the documention notes at this point:
    If you have multiple network interface cards (NICs), be sure that “multi
    on” is specified in the /etc/host.conf file. Otherwise, gethostbyname will not
    return multiple addresses).
    But I understand this could be valid for Linux based systems not for Solaris.
    Now if I properly understand the above, how was the 6.0.x able to realize the first interface in the list (using the same -ttrep hostname) was down and use the other, if gethostbyname was reporting only a single entry ?
    Once upgraded to 7.0.x we realized the ADD ROUTE option was added to teach TT how to use different interfaces associated to the same hostname. In our environment we did not include this clause, but still the replication was working fine regardless of which interface we were bringing down.
    My both questions in the end lead to the same doubt on which is the algorithm used by TT to reach the replicated node w.r.t. entries in the /etc/hosts.
    Looking at the nodes I can see that by default both routes are being used:
    TBMAS10df2:/-# netstat -an|grep "151.98.227."
    151.98.225.104.45312 151.98.227.4.14000 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.47307 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.48230 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.46050 151.98.227.4.14005 1049792 0 1049800 0 ESTABLISHED
    TBMAS10df2:/-# netstat -an|grep "151.98.226."
    151.98.226.5.14000 151.98.226.4.47699 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.14005 151.98.226.4.47308 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.44949 151.98.226.4.14005 1049792 0 1049800 0 ESTABLISHED
    Tried to trace with ttTraceMon but once I brought down one of the interfaces did not see any reaction on either node, if you have some info it would be really appreciated !
    Cheers,
    Mike

    Hi Chris,
    Thanks for the reply, I have few more queries on this.
    1.Using the ROUTE CLAUSE we can use multiple IPs using priority level set, so that if highest priority level set in thr ROUTE clause for the IP is not active it will fall back to the next level priority 2 set IP. But cant we use ROUTE clause to use the multiple route IPs for replication simultaneously?
    2. can we execute multiple schema for the same DSN and replication scheme but with different replication route IPs?
    for example:
    At present on my system, I have a replication scheme running for a specific DSN with stand alone Master-Subscriber mechanism, with a specific route IP through VLAN-xxx for replication.
    Now I want to create and start another replication scheme for the same DSN and replication mechanism with a different VLAN-yyy route IP to be used for replication in parallel to the existing replication scheme. without making any changes to the pre-existing replication scheme.
    for the above scenarios, will there be any specific changes respective to the different replication schema mechanism ie., Active Standby and Standalone Master Subscriber mechanism etc.,
    If so what are the steps. like how we need to change the existing schema?
    Thanks In advance.
    Naveen

  • Problem with Database Connections in the designer - Catalog not updated

    This is Crystal Reports 2008 (12.2.0290). We have a number of reports that are viewed using the .Net runtime with the connection details set at runtime using ODBC to talk to SQL Server on different systems. This all works fine and is not the problem. The problem is when editing reports in the designer take the following example:
    Developer 1 creates report on their machine that references tables. DSN Name is DEV_DSN, pointing at their local database on their machine called DEV_DB1. Developer 2 needs to edit the report on their machine with a DSN of the same name (DEV_DSN) but this points to a different database on developer 2's machine called DEV_DB2.
    Developer 2 goes to the Set Datasource Location option in the Database menu to get it to point at their local DB only it doesn't work. They click on the first table included  (or the connection name) in the report and click update - they are prompted for the logon details for their local DSN/DB and supply them but they see an error indicating that there is an "Invalid object name" because the table is still being prefixed with the database name from developer 1's machine. When the table is expanded in this view the Catalog still shows as the DB name from developer 1's machine despite the connection properties above correctly showing the local DB name.
    As I say this is a design time issue not a runtime issue.
    Any ideas? Is there any way we can edit the Catalog name manually?

    Try setting the Over ridden qualified Table Name
    Set Datasource - > Tablename -> Properties
    Double click Over ridden qualified Table Name, type name as shown in in the table name field above it.
    Repeat for each table, this removes schema and db names associated with Table. Take a look at the SQL and make sure all tables are no longer prefixed.
    Report should now be totally portable.
    Ian

  • Active active with multiple csm in the same 6500

    How can I achieve active/active configuration with csm in a 6500? Can I do it with 2 csm in the same chassis or I need two chassis, each with one csm?

    you can't have active-active setup with CSM.
    The CSM uses only 1 FT group and all vservers are linked to it.
    So once CSM is active and the other one standby.
    If the FT group fails on the active, the standby takes over and it takes a full control - not partial as needed for active-active.
    It does not matter if you have 1 chassis or more.
    The new ACE module offers the possibility to do active-active.
    Gilles.

  • I'm having problems in a GOOP applicatio​n with multiple instances of the same object running simultaneo​usly.

    I?ve written an application to control a system with multiple lamps. Each lamp in the system has its own power supply. Each lamp object contains a reference to its power supply. The application contains an array with the references to all the lamps in the system. Each lamp is in charge of monitoring itself and setting its power supply?s voltage according to the applications commands, therefore each lamp needs that its ?run me? method will run as long as the application is running i.e. the run method has to be reentrant. Because there are multiple lamps and because the ?run me? methods for each lamp run simultaneously, to over come this problem each lamp has a met
    hod ?run? that calls ?run me? with ?RUN VI? invoke node with the ?Wait until done? set to false. When I run the application, it seems to work but if I check the AO there is no change in the output, and the lamps seem to be reading their input from the same channel. I can?t seem to find the problem, I think that the fact that the method is reentrant causes some sort of mix-up in the separate object references. Also because the method is reentrant I can?t debug it (with one lamp it seems to work ok). Does anyone have any idea what could be causing this problem.
    P.S I'm having problems attaching my sample program to this message. You can contact me at [email protected] to recive the sample program I wrote.

    Jean, Thanks for your answer, I've tried checking the invoke node that calls the "Run VI" method but it doesnt return an error any of the times its called even that the Vi that it called is still running. I also tried your solution of changing the object's "Run" method to a template but that doesnt work either. I can't seem to post the sample progam that demonstrates the problem, is it possible to send it to you by email, contact me at [email protected]
    Attachments:
    Sample_program.zip ‏926 KB

  • Erratic behavior with multiple calls to the same RFC

    Hi,
    I am running into a strange problem invoking a custom RFC from a .NET application. I would appreciate it if someone has any insight into it.
    The steps to call the RFC are straightforward:
    1. Open the connection to SAP server
    2. Make the call
    3. Close the connection
    As you can imagine, the code is also quite simple. 
    In my simulation program, I have a button on a UI form that one can click and execute the above steps.
    The problem I am running into is that, on multiple calls, sometimes the parameter values that show up on the SAP side are not right. When the input parameter (a structure) is viewed in the ABAP debugger, the field values are all getting exchanged. For example, first name field contains values for the last name. Also, some fields that are supposed to have values do not have any.
    Just before the RFC call is made, when we look at the structures on the .NET side, the field values are the way they are supposed to be.
    I have not been able to establish a pattern. Sometimes, it takes two clicks to reproduce this problem. Sometimes it takes five.
    One of the team members thinks that this starts occurring right after one call fails for some valid reasons. However, I am not yet convinced.
    Having written many custom .NET applications using RFCs an BAPIs, I am fairly conversant with the technology. However, this one just baffles me. It appears something is getting messed up at the RFC layer itself. Does anyone have any idea on what could be happening?
    Thank you in advance for your help.
    Pradeep

    Indeed this is interesting .
    The problem is caused by an incompatible change from .NET Framework 1.1 to 2.0. Howerver, the documentation on the 1.1. API was not clear enough to decide if the incompatible change was adequate or not. Now in detail:
    NCo runtime uses the reflection API Type.GetProperties to read and cache all properties of a Proxy structure. NCo assumes that the order of the returned properties is the same on each call and especially that it is the order of the properties as they appear in source code. This was the behavior in .NET 1.1. It has changed in 2.0, see e.g. the internet forum discussion in http://www.thescripts.com/forum/thread455492.html .
    Calling Type.GetProperty(<PropertyName>) or Type.SetProperty(<PropertyName>)  in your code moves the mentioned properties up in the list returned by Type.GetProperties() later inside of NCo.
    We found the following work-arroud:
    When using late-binding, call a dummy Type.GetProperties()  before any GetProperty or SetProperty.

  • Problems With MacBook Connecting to the Internet

    This is quite an annoying little problem that I have. And apparently Tech Support can't help me and just said "good luck" and hung up on me. So here we go:
    I purchased a new MacBook about two weeks ago and it won't connect to my wireless at home. I can plug it into our cable box via an ethernet cable, but otherwise it refuses to work. My old laptop will connect to the wireless... and even my sister's new MacBook (we got them at the exact same time and they are the exact same thing) will connect to our wireless. I'm using a Linksys wireless router, and I have had other friends access my family's wireless through their Apple computers as well. My Airport reads that I'm connected to the router, but it can't find an Internet signal. I'm not really sure what route I should be taking now. Any suggestions would be greatly appreciated.
    Thanks!
    macbook   Mac OS X (10.4.10)  

    I seem to be having the same exact issue. I took my Macbook over to my dad's house and I can not connect to the internet. The computer is connected to the router wirelessly, everything seems fine but it will not connect to the internet. My sister has the same exact Macbook, and her computer connects to the internet just fine. I run the Apple Internet Diagnostics and after running it, I get a message that says that my internet seems to be working fine. I also have a problem with my computer restarting when I shut the lid. Very very frustrating!

  • Contacts with multiple numbers under the same labe...

    i
    I have many contacts which have numbers saved under the same label.
    For example a contact like this:
    First name: A
    Mobile: 11
    Mobile: 22
    Telephone: 33
    Telephone: 44
    When I open Ovi Suite / Contacts / Contacts in E51 and open the abovementioned contact "A" it shows:
    A
    Mobile: 11
    Telephone: 44
    Mobile (other): 22
    As you see it deleted one of "Telephone" labeled numbers. It also happened when I used PC suite.
    It is really annoying as if I save/sync the contact using Ovi, it causes loss of contacts data.
    BTW there is no problem using Backup/Restore function of Ovi/PC suite, nor "Copy to memory card" function of the phone itself.
    Ovi suit version : 2.1.1.1
    Nokia E51 v300.34.56
    Windows 7
    PS:
    tested another one with 6 different numbers under the same "Mobile" label
    the result in Ovi is:
    AA
    Mobile: 11
    Mobile (main): 33
    Mobile (other): 22
    the other 3 numbers were lost

    atammin wrote:
    Ah, you have an interesting setup here.
    Could you answer a few clarifying questions regarding this.
    > When I open Ovi Suite / Contacts / Contacts in E51 and open the abovementioned contact "A" it shows
    * Did you perform a sync? Or did you just connect the phone and look at the contact card in the phone view?
    I had performed sync before and realized that some contact data are missing in my phone, so I started investigating to see exactly which contacts are affected by creating some dummy contacts and editing them by clicking on my phones icon below the window of "Contacts" tab in ovi.
    * Did you check the contact in your phone (using the phone's UI)? Were all the details there - or are you saying that Ovi Suite lost some of the details?
    In fact both. Ovi fails to extract and show some numbers and thus fails to write them back to the phone correctly. The lost details are purged from the phone too.
    Just to confirm I've understood the scenario correctly
    1) you have contact card in phone with two mobile numbers  (same label) and two telephone numbers (same label)
    yep
    2) you sync with Ovi suite
    Either Sync or directly open and save contact.
    3) the mobile numbers have been re-labled  to Mobile and Mobile (other) but the numbers are preserved
    They are re-labled only when viewed in Ovi, but  written back to the phone with the same "Mobile" lable as created on the phone.
    4) one of the Telephone numbers is completely lost from Ovi Suite and phone.
    And this scenario happened with this setup:
    - Ovi suite version : 2.1.1.1
    - Nokia E51 v300.34.56
    - Windows 7
    I just want to be clear on the setup and scenario so we can investigate.
    thanks, Aki
    I also done another test
    This is the contact created in phone:
    BEGIN:VCARD
    VERSION:2.1
    N:;A
    TEL;CELL:11
    TEL;CELL:22
    TEL;CELL:33
    TEL;CELL:44
    TEL;CELL:55
    TEL;CELL:66
    TEL;VOICE:11
    TEL;VOICE:22
    TEL;VOICE:33
    TEL;VOICE;HOME:11
    TEL;VOICE;HOME:22
    TEL;VOICE;HOME:33
    TEL;VOICE;WORK:11
    TEL;VOICE;WORK:22
    TEL;VOICE;WORK:33
    X-CLASSrivate
    END:VCARD
    And this is what happens to contact when I just click edit and then save in Ovi.
    BEGIN:VCARD
    VERSION:2.1
    N:;A
    TEL;CELL;PREF:11
    TEL;CELL:33
    TEL;VOICE:33
    TEL;VOICE;HOME:33
    TEL;VOICE;WORK:33
    END:VCARD
    I also attached what ovi shows about this contact as an image.
    Attachments:
    displayed in ovi.PNG ‏9 KB

  • Read/Write problems with multiple connections using MySQL & Tomcat

    hello all,
    I am developing a web-based java application that runs on a 4.1 tomcat server and uses MySQL 3.23.52 as db server.
    this program uses hundreds of tables with hundreds of rows each.
    when two or more users are connected, we are experiencing several problems:
    1. when a query is started, they get cross-results that come from both connections.
    2. when inserting/updating (most queries are long and take a few seconds), sometimes data are crossed too, sometimes they are saved incorrectly but get no error message, sometimes they are not saved and get 'null pointer' sqlexception (but tables and queries are correct).
    3. using SHOW PROCESSLIST and SHOW STATUS, we saw that MySQL server hosted no more than 3 max_used_connections, even when my.cnf parameters where set with more. when 3 or more users try to access the database, they get a bad handshake error until other connections are freed.
    any suggestions?
    thanks
    alessandro bonanni
    university of udine

    I am not using a connection pool. I read that when two different connections try to access the same data simultaneously, mysql is not secure. maybe a connection pool could solve that? or maybe is it a mysql limit?
    alessandro

Maybe you are looking for

  • FORMAT WINDOWS 7(64) BY MISTAKEN NOW HOW I RECOVER ERASED DATA WHICH I HAD LOCKED DRIVE BY BIT LOCKER

    i'm using windows 7 (64 bit) but experiment to install mac on my PC (i 5-4 GB ddr 3-500sata sea gate).by mistaken its format my whole hard drive which is 500 GB sea gate sata.after this i'm confused and install windows 8.1 and then again i had instal

  • How do I upload a photo from my camera to Photoshop

    I am brand new to Photoshop.  How do I upload an image, from my camera, to Photoshop?

  • Export size in Apple ProRes

    I'm trying to cut the size of a movie file when I export in FC. I need video to be in 1920X1080 apple prores, but the current size is 3.98GB. Any way to export smaller size video for online upload without loosing too much quality?? Thanks!

  • Repeat syncing of previously synced items

    I'm using AppleTV 2.0 with the 160 gig model. Have 95 gigs of free space, and all selected movies, music, and photos are completely synced. Have no podcasts or tv shows, etc. Using Custom Sync, there is an annoying tendency for ATV to re-sync items w

  • Scroll bars appear without any request

    It happened some other times before, but especially after the 10.8.3 upgrade scroll bars often reappear like I set them to always appear. By setting them to "Always" and then setting them back to "Automatically" now, runnining 10.8.3, it temporarily