Cannot make use of concurrency-strategy

          Hi!
          First goes the abstract: despite all other parameters, the only setting that seems
          to make a difference for transaction handling is <isolation-level>. What I really
          want to make use of, is <concurrency-strategy>. Ultimately I want to make use of
          Optimistic concurrency strategy of WL70, but looks like that even Exclusive strategy
          does not work in my case.
          Here is my description of my test app:
          1. I have TxDataSource defined in Weblogic Console. Standard Datasource seems not
          to support transactions at all.
          2. I have two instances of the Client -- C1 and C2, Session Bean -- S, and Entity
          Bean -- E.
          3. I start C1, it locates S and calls business method with Required attribute on
          it.
          4. Business method on S finds E using E.find(PK). All methods on E has attribute
          Mandatory.
          5. Business method on S goes to sleep for 15 seconds: Thread.sleep(15000). I know
          that in real-world applications one cannot use threads in EJB, but I have to test
          concurrent access to the same data from different clients and this was the easiest
          way to do what I needed. Anyway, it is just a test.
          6. While S is sleeping in business method, I start C2. It locates S (creates new
          instance?), calls business method on it, which in turn, locates E (new instance of
          E?), calls find() on it and goes to sleep for the same 15 seconds. Note, that for
          <concurrency-strategy>Exclusive</concurrency-strategy> I expected second client to
          be unable to find() Entity bean, because it should be locked by the first client.
          Quite opposite, it can be located by S. This is weird for me.
          7. Business method on S for the first client awakes and calls business method on
          E (with Mandatory attribute). It changes data and commits. Fine.
          8. Business method on S for the second client awakes and calls business method on
          E to change data. Then it exits, and - surprise! - commits data! Even in Exclusive
          mode. The same thing in Optimistic mode with <verify-columns> parameter.
          <isolation-level> set to TRANSACTION_READ_COMMITTED, server is Sybase Adaptive Server
          v.12.
          The record in database is not locked on find(), because I can UPDATE record using
          Sybase SQL Advantage client.
          If I change <isolation-level> to TRANSACTION_REPEATABLE_READ or TRANSACTION_SERIALIZABLE,
          then record is locked at find(). But this does not have anyhting with optimistic
          locking! I want record to remain unlocked and to be checked for possible update by
          other client during commit! Also, for Exclusive mode I suppose that I cannot even
          find() entity bean for the same PK, that was already found by other client. What
          am I doing wrong?
          Here is some info:
          1. JDBC Tx Data Source:
          Name: SybaseDataSource
          JNDI Name: sybaseDataSource
          Pool Name: sybasePool
          Emulate Two-Phase Commit for non-XA Driver (No)
          Row Prefetch Enabled (No)
          Row Prefetch Size: 48
          Stream Chunk Size: 256 bytes
          2. ejb-jar.xml:
          <?xml version="1.0"?>
          <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN'
          'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>
          <ejb-jar>
          <enterprise-beans>
          <entity>
          <ejb-name>OptTestDataEJB</ejb-name>
          <local-home>com.xxx.yyy.ejb.entity.OptTestDataHome</local-home>
          <local>com.xxx.yyy.ejb.entity.OptTestData</local>
          <ejb-class>com.xxx.yyy.ejb.entity.OptTestDataBean</ejb-class>
          <persistence-type>Container</persistence-type>
          <prim-key-class>java.lang.Integer</prim-key-class>
          <reentrant>False</reentrant>
          <cmp-version>2.x</cmp-version>
          <abstract-schema-name>OptTestDataEJB</abstract-schema-name>
          <cmp-field>
          <field-name>id</field-name>
          </cmp-field>
          <cmp-field>
          <field-name>numData</field-name>
          </cmp-field>
          <cmp-field>
          <field-name>strData</field-name>
          </cmp-field>
          <primkey-field>id</primkey-field>
          <query>
          <query-method>
          <method-name>findByDrawId</method-name>
          <method-params>
          <method-param>int</method-param>
          </method-params>
          </query-method>
          <ejb-ql>
          <![CDATA[SELECT OBJECT(o) FROM OptTestDataEJB AS o WHERE o.id = ?1]]>
          </ejb-ql>
          </query>
          </entity>
          <session>
          <ejb-name>OptTestMgrEJB</ejb-name>
          <home>com.xxx.yyy.ejb.session.OptTestMgrHome</home>
          <remote>com.xxx.yyy.ejb.session.OptTestMgr</remote>
          <ejb-class>com.xxx.yyy.ejb.session.OptTestMgrBean</ejb-class>
          <session-type>Stateless</session-type>
          <transaction-type>Container</transaction-type>
          </session>
          </enterprise-beans>
          <assembly-descriptor>
          <container-transaction>
          <method>
          <ejb-name>OptTestMgrEJB</ejb-name>
          <method-name>*</method-name>
          </method>
          <trans-attribute>Required</trans-attribute>
          </container-transaction>
          <container-transaction>
          <method>
          <ejb-name>OptTestDataEJB</ejb-name>
          <method-name>*</method-name>
          </method>
          <trans-attribute>Mandatory</trans-attribute>
          </container-transaction>
          </assembly-descriptor>
          </ejb-jar>
          3. weblogic-cmp-rdbms-jar.xml:
          <?xml version="1.0"?>
          <!DOCTYPE weblogic-rdbms-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 7.0.0 EJB
          RDBMS Persistence//EN' 'http://www.bea.com/servers/wls700/dtd/weblogic-rdbms20-persistence-700.dtd'>
          <weblogic-rdbms-jar>
          <weblogic-rdbms-bean>
          <ejb-name>OptTestDataEJB</ejb-name>
          <data-source-name>sybaseDataSource</data-source-name>
               <table-map>
          <table-name>optTest</table-name>
               <field-map>
          <cmp-field>id</cmp-field>
               <dbms-column>ID</dbms-column>
          </field-map>
               <field-map>
          <cmp-field>numData</cmp-field>
               <dbms-column>NUM_DATA</dbms-column>
          </field-map>
               <field-map>
          <cmp-field>strData</cmp-field>
               <dbms-column>STR_DATA</dbms-column>
          </field-map>
          <verify-columns>Timestamp</verify-columns>
          <optimistic-column>CONTROL_DATA</optimistic-column>
               <!-- The same with <verify-columns> set to Read or Modified -->
               </table-map>
          </weblogic-rdbms-bean>
          </weblogic-rdbms-jar>
          3. weblogic-ejb-jar.xml:
          <?xml version="1.0"?>
          <!DOCTYPE weblogic-ejb-jar PUBLIC "-//BEA Systems, Inc.//DTD WebLogic 7.0.0 EJB//EN"
          "http://www.bea.com/servers/wls700/dtd/weblogic-ejb-jar.dtd">
          <weblogic-ejb-jar>
          <weblogic-enterprise-bean>
          <ejb-name>OptTestDataEJB</ejb-name>
          <entity-descriptor>
          <entity-cache>
          <read-timeout-seconds>3</read-timeout-seconds>
          <concurrency-strategy>Optimistic</concurrency-strategy>
          </entity-cache>
          <persistence>
          <persistence-use>
          <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
          <type-version>7.0</type-version>
          <type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
          </persistence-use>
          </persistence>
          </entity-descriptor>
          <local-jndi-name>abs.OptTestData</local-jndi-name>
          </weblogic-enterprise-bean>
          <weblogic-enterprise-bean>
          <ejb-name>OptTestMgrEJB</ejb-name>
          <stateless-session-descriptor>
          </stateless-session-descriptor>
          <jndi-name>abs.OptTestMgr</jndi-name>
          </weblogic-enterprise-bean>
          <transaction-isolation>
          <isolation-level>TRANSACTION_READ_COMMITTED</isolation-level>
          <!-- <isolation-level>TRANSACTION_SERIALIZABLE</isolation-level> -->
          <!-- <isolation-level>TRANSACTION_REPEATABLE_READ</isolation-level> -->
          <method>
          <ejb-name>OptTestDataEJB</ejb-name>
          <method-intf>Local</method-intf>
          <method-name>*</method-name>
          </method>
          </transaction-isolation>
          <transaction-isolation>
          <isolation-level>TRANSACTION_READ_COMMITTED</isolation-level>
          <!-- <isolation-level>TRANSACTION_SERIALIZABLE</isolation-level> -->
          <!-- <isolation-level>TRANSACTION_REPEATABLE_READ</isolation-level> -->
          <method>
          <ejb-name>OptTestMgrEJB</ejb-name>
          <method-intf>Remote</method-intf>
          <method-name>*</method-name>
          </method>
          </transaction-isolation>
          </weblogic-ejb-jar>
          Please, advise me what I have to do with this stuff.
          

Can you kindly elaborate the actual issue and what was wrong in it?

Similar Messages

  • Cannot make use of concurrency-strategy (more readable)

              Hi!
              First goes the abstract: despite all other parameters, the only setting that seems
              to make a difference for transaction handling is <isolation-level>. What I really
              want to make use of, is <concurrency-strategy>. Ultimately I want to make use of
              Optimistic concurrency strategy of WL70, but looks like that even Exclusive strategy
              does not work in my case.
              Here is my description of my test app:
              1. I have TxDataSource defined in Weblogic Console. Standard Datasource seems not
              to support transactions at all.
              2. I have two instances of the Client -- C1 and C2, Session Bean -- S, and Entity
              Bean -- E.
              3. I start C1, it locates S and calls business method with Required attribute on
              it.
              4. Business method on S finds E using E.find(PK). All methods on E has attribute
              Mandatory.
              5. Business method on S goes to sleep for 15 seconds: Thread.sleep(15000). I know
              that in real-world applications one cannot use threads in EJB, but I have to test
              concurrent access to the same data from different clients and this was the easiest
              way to do what I needed. Anyway, it is just a test.
              6. While S is sleeping in business method, I start C2. It locates S (creates new
              instance?), calls business method on it, which in turn, locates E (new instance of
              E?), calls find() on it and goes to sleep for the same 15 seconds. Note, that for
              <concurrency-strategy>Exclusive</concurrency-strategy> I expected second client to
              be unable to find() Entity bean, because it should be locked by the first client.
              Quite opposite, it can be located by S. This is weird for me.
              7. Business method on S for the first client awakes and calls business method on
              E (with Mandatory attribute). It changes data and commits. Fine.
              8. Business method on S for the second client awakes and calls business method on
              E to change data. Then it exits, and - surprise! - commits data! Even in Exclusive
              mode. The same thing in Optimistic mode with <verify-columns> parameter.
              <isolation-level> set to TRANSACTION_READ_COMMITTED, server is Sybase Adaptive Server
              v.12.
              The record in database is not locked on find(), because I can UPDATE record using
              Sybase SQL Advantage client.
              If I change <isolation-level> to TRANSACTION_REPEATABLE_READ or TRANSACTION_SERIALIZABLE,
              then record is locked at find(). But this does not have anyhting with optimistic
              locking! I want record to remain unlocked and to be checked for possible update by
              other client during commit! Also, for Exclusive mode I suppose that I cannot even
              find() entity bean for the same PK, that was already found by other client. What
              am I doing wrong?
              Additional info is attached.
              [qqq.txt]
              

    Hi Mike,
              as I already posted I resolved the problem. Thanks anyway. My biggest
              mistake was that I was evaluating WL7 features, and to make my like easier,
              I was changing settings in the deployment descriptors within JAR file! Heh,
              because I did not run EJBC, I had stale classes in JAR file (those stubs and
              other helper classes that WL generates), that is why the whole thing did not
              work. Those stubs are generated by WLS based on setting in descriptors, that
              I personally find wrong, because it turns the whole "write code -- change
              descriptor while deploing" idea upside down. Anyway, t was my mistake.
              It works now with "Read" and "Modified" concurrency methods, but does not
              work with Timestamp field. Frankly, I did not try hard to make it work with
              Timestamp.
              So, when I understood the fact that <concurrency-strategy> works on bean
              level, and <isolation-level> works on database level, everything became
              clear.
              WBR,
              Michael Jouravlev.
              "mike" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi.
              > I'm just done struggling with similar case. Difference is I use Oracle
              (have not
              > used SB for a while...) and 6.1. Both minor, IMHO. Also please
              <imho></imho> each
              > statement below.
              >
              > "Michael Jouravlev" <[email protected]> wrote:
              > >
              > >
              > >
              > >Hi!
              > >
              > >First goes the abstract: despite all other parameters, the only setting
              > >that seems
              > >to make a difference for transaction handling is <isolation-level>. What
              > >I really
              > >want to make use of, is <concurrency-strategy>. Ultimately I want to make
              > >use of
              > >Optimistic concurrency strategy of WL70, but looks like that even
              Exclusive
              > >strategy
              > >does not work in my case.
              >
              > Strategy must be supported by underlying DB and communicated to it via
              driver. If
              > it's either not supported, or driver can't tell DB what you want...
              >
              > >
              > >Here is my description of my test app:
              > >1. I have TxDataSource defined in Weblogic Console. Standard Datasource
              > >seems not
              > >to support transactions at all.
              >
              > That's for sure.
              >
              > >2. I have two instances of the Client -- C1 and C2, Session Bean -- S,
              and
              > >Entity
              > >Bean -- E.
              > >3. I start C1, it locates S and calls business method with Required
              attribute
              > >on
              > >it.
              > >4. Business method on S finds E using E.find(PK). All methods on E has
              attribute
              > >Mandatory.
              > >5. Business method on S goes to sleep for 15 seconds:
              Thread.sleep(15000).
              > >I know
              > >that in real-world applications one cannot use threads in EJB, but I have
              > >to test
              > >concurrent access to the same data from different clients and this was
              the
              > >easiest
              > >way to do what I needed. Anyway, it is just a test.
              > >6. While S is sleeping in business method, I start C2. It locates S
              (creates
              > >new
              > >instance?), calls business method on it, which in turn, locates E (new
              instance
              > >of
              > >E?), calls find() on it and goes to sleep for the same 15 seconds. Note,
              > >that for
              > ><concurrency-strategy>Exclusive</concurrency-strategy> I expected second
              > >client to
              > >be unable to find() Entity bean, because it should be locked by the first
              > >client.
              > >Quite opposite, it can be located by S. This is weird for me.
              >
              > It is not. It looks like you do have optimistic locking (Oracle uses it by
              default,
              > I do not know about Sybase). In such case any number of clients can try
              to modify
              > the data, they'll be happy ... till they try to commit.
              >
              > >7. Business method on S for the first client awakes and calls business
              method
              > >on
              > >E (with Mandatory attribute). It changes data and commits. Fine.
              > >8. Business method on S for the second client awakes and calls business
              > >method on
              > >E to change data. Then it exits, and - surprise! - commits data! Even in
              >
              > Yes, that sounds wrong at first. Though ... See: you can log into a DB and
              execute
              > update without prior locking. That is what happens. You edit stale data.
              >
              > To avoid this people use "version numbers", or whatever you want to call
              it. This
              > is a number, which has to be changed with each update and verified against
              while
              > modifying data in DB.
              >
              > >Exclusive
              > >mode. The same thing in Optimistic mode with <verify-columns> parameter.
              > >
              > ><isolation-level> set to TRANSACTION_READ_COMMITTED, server is Sybase
              Adaptive
              > >Server
              > >v.12.
              > >
              > >The record in database is not locked on find(), because I can UPDATE
              record
              > >using
              > >Sybase SQL Advantage client.
              > >
              > >If I change <isolation-level> to TRANSACTION_REPEATABLE_READ or
              TRANSACTION_SERIALIZABLE,
              > >then record is locked at find(). But this does not have anyhting with
              optimistic
              > >locking! I want record to remain unlocked and to be checked for possible
              >
              > That does. By changing locking scheme you switch from optimistic to
              pessimistic locking.
              >
              > >update by
              > >other client during commit! Also, for Exclusive mode I suppose that I
              cannot
              > >even
              > >find() entity bean for the same PK, that was already found by other
              client.
              > >What
              > >am I doing wrong?
              > >
              > >Additional info is attached.
              >
              

  • How to make use of the spare physical memory under buffered I/O of Essbase

    We encountered an issue of the physical memory allocation of the server running Essbase with buffered I/O mode. We have implemented some cache setting in Essbase but still found that the disk I/O is quite high. Also we observed that Windows 2003 server cannot make use of the spare physical memory available as the system cache for database files of Essbase.
    As allocating more memory as Essbase cache might not help, we would like to know other than changing to direct I/O mode, any other options can improve the disk I/O performance?
    Thanks!

    Sandeep Reddy wrote:
    Hi Hyperion_User,
    1. Disk IO performance,It mighe depend on quite a few things , one of the aspects might be your storage system. It can depend on the disk configuration too ( i.e if your disk is SAN or NAS, then it depends on the configuration like Raid ..etc).
    2. It depends on the HBA ( host bus adapter).
    3. Let me try to explain with diagram.
    http://www.c-sharpcorner.com/uploadfile/freebookarticles/apress/2008dec16010208am/DataStorageDesign/Images/159059214X-1404.1.gif
    4. It might depend on the HBA and even on the switch speed.
    5. Buffered IO is a very generic setting,which most of them use( that should not be an issue).
    6. Even if you have 30 to 40 GB free memory, every application in essbase has a limitation to it maximum usage ( 2 GB on windows ). Refer to DBAG for more information on this .
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/
    Thanks for your detailed advice. I just wonder if more physical memory can help to improve the disk I/O being used for concurrent read/write access. We are using Windows 2003 Enterprise Edition and not sure whether some spare physical memory can be used for this purpose.
    Thanks again!

  • Sessionbeans cannot be used concurrently error? How to solve in EJB1.1?

    When using EJB1.1 with WLS 6.0, is there a way to make the weblogic block a
    concurrent call till the previous call is over? instead of throwing the
    sessionbeans cannot be used concurrently error?
    I found the <allow-concurrent-calls> xml descriptor for EJB2.0 but was
    wondering how to do this with EJB 1.1
    Thanks
    Siva

    i understand and i don't understand.
    lol
    thats possible for someone who is using xemacs but someone who is using Eclipse or JCreator how do i do that?
    if u don't want to answer that question could u put an assertion in this code, for example : asser -> if the num < = 0 !
    here is the code:
    import java.io.*;
    public class Capicua {
         public static void main (String[] args) throws Exception {
              int digit, num;
              int inverted = 0;
              int x;     
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                   System.out.print(" Insert number: ");
                   num=Integer.parseInt(br.readLine().trim());
                   Assertion.assert(num <= 0, "Number can't be shorter or equals to zero!"); <--- how do i put an assert here? ( with the "do - while" its easy, but and with the asserts?
                   x=num;
                   while(num > 0) {
                   digit = num % 10;
                   num = num /10;
                   inverted = inverted * 10 + digit;
                   System.out.println("inverted = " + inverted);
                        if(inverted == x) {
                             System.out.println("Capicua");
                        }else{
                             System.out.println("not a capicau");
    }

  • I am extremely upset. I purchased my iPad in SA and I am traveling in Greece. When I want to make use of the free apps, I get a message that the app is not available in the SA store. What is the point of having an iPad if you cannot use it worldwide?

    I am extremely upset. I purchased my iPad in SA and now I am in Greece. I cannot download free apps as I get a message that the apps are not available in the SA store and only in US stores. When I change to the US store the same thing happens. What is the point of having an iPad if I cannot use it worldwide??? I feel that I wasted my money purchasing it as I specifically purchased it to use when I travel. How can I get access to all the available apps and why are they restricted.

    You can use your iPad worldwide. However, each AppleID is tied to
    a specific country's store. To use the AppStore in any country, you
    must be in that country and have a credit/debit card issued by a financial
    institution in that country with a verified billing address in that country.
    It is the developer's choice which AppStores he makes his app available
    from, and some countries prohibit certain apps.
    To make a purchase from the US store (including downloading a free app
    available in the US store), you must be in the US and have card issued
    in the US with verified billing address in the US.
    You can use your purchases from the SA store worldwide, but you
    cannot make purchases in other than the SA store unless you meet
    the aforesaid conditions.

  • I'm trying to make a cd from my itunes. I get error message "cannot be used because it is not recognized.

    I'm trying to make a cd from my itunes. I get error message "cannot be used because it is not recognized.

    I just figured it out. All I had to do was close out of iTunes then restart.

  • HT4642 I have an older Imac.  It is running OSX 10.6.8.  We have two new Ipads and wish to open and use a spread sheet developed on the Imac.  Currently I can open the Spread Sheet but cannot make any entries. How can I fix that problem?

    I wish to use Spread Sheets developed on my Imac (OSX 10.6.8 with Numbers 08) on my new Ipad Mini.  Currently they will open but I cannot make entries.
    Is there some software I need to download to my Ipad ?
    If I update my Imac Numbers 08 will it still work with existing spread sheets ?
    If I upgrade my OSX 10.6.8 will it impact my files originated under my old OSX and will all my programs work?
    Is there a work aropund that will allow me to use those Spread Sheets on my Ipad ?
    As informative as Apple is with their products, I see little that addresses compatability issues.  Art they non existant ?
    I hate to make any changes unless I know I am not going to be causig a lot of grief!
    Any assistance would be appreciated.

    On looking at the secure.log on the iMac with OSX10.6.8, I see these entries at each attempt to scp into the iMac:
    Dec 29 11:06:20 molika sshd[7248]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Dec 29 11:06:26 molika sshd[7246]: Accepted keyboard-interactive/pam for prowat from 137.110.243.132 port 35571 ssh2
    Dec 29 11:06:26 molika com.apple.SecurityServer[26]: Session 0x236a14 created
    Dec 29 11:06:26 molika com.apple.SecurityServer[26]: Session 0x236a14 attributes 0x20
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Session 0x236a14 dead
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Killing auth hosts
    Dec 29 11:06:27 molika com.apple.SecurityServer[26]: Session 0x236a14 destroyed
    I don't know what to make of this.
    Peter R

  • HT204347 When I use FaceTime with friends who are currently outside of UK, I cannot make my voice heard after about 20mins' chatting. While this situation will be better if I restart my MBP,but only better in around 20mins.

    When I use FaceTime with friends who are currently outside of UK, I cannot make my voice heard after about 20mins' chatting. While this situation will be better if I restart my MBP,but only better in around 20mins.

    When I use FaceTime with friends who are currently outside of UK, I cannot make my voice heard after about 20mins' chatting. While this situation will be better if I restart my MBP,but only better in around 20mins.

  • Cannot make calls or send texts using new carrier, was able to do both with previous carrier

    iphone 4 bought new/privately JAIL BROKEN/SIM FREE, used with uk carrier no problem, but now using a thailand sim (TRUE) and cannot make calls or send texts - but can recieve both, TRUE checked & found SIM OK and confirmed it worked normally on another iphone ... software is up to date and I RESET NETWORK SETTINGS still same - HELP !

    Sorry, there is no support for jailbroken iPhones here...more than likely the cause of your problem. You'll have to go elsewhere for help.
    Good luck.

  • TS1926 "Monitors cannot be used bcz a required extension, System Monitor Plugins, is disabled or not installed. Make sure System Monitor Plugins is in the Extensions folder in the System folder then restart your computer" Anyone have experience with this

    "Monitors cannot be used bcz a required extension, System Monitor Plugins, is disabled or not installed. Make sure System Monitor Plugins is in the Extensions folder in the System folder then restart your computer" Anyone have experience with this issue?

    Try this app: http://tyorex.com/iWorkConverter
    Batch convert Pages files to doc and pdf.

  • No Verizon Wireless Service/Cannot Make Calls but can connect to 4G LTE & use internet

    I have a Motorola Droid Ultra and my phone just does not catch Verizon Wireless Service anywhere. It shows up as 4GLTE and i can still connect to my data & go on the internet but I cannot make any calls. Ocassionally it will connect to "Verizon" and I can recieve SMS (Text Messages)but still no calls.

        Titah420,
    We definitely want you to have access to all your services. What happens when you try to make a call? Are you able to receive calls? Are text messages an issue?
    SandyS_VZW
    Follow us on Twitter @VZWSupport

  • Dropdown dialog boxes will not work. I can click on the boxes, the dropdown appears, but I cannot make anything in the box operate. I just upgraded to 6.0.2 on a fresh install of Windows XP

    I use the net to pay bills. The dialog box on my bills have accounts in them, but I cannot make the account numbers work. I regularly go to websites that are several pages deep, but the dropdowns for the next page don't work. The numbers, as well as the accounts appear, but they cannot be highlighted to access them.

    I'm not sure if the crash is or isn't related to fonts.
    Deciphering the crash long is something I don't have any experience with.
    I'm not even sure how the crash log is structured. I've downloaded two screen captures: one from the top of the adobe Photoshop crash log and one from the bottom. Perhaps someone more knowledgeable than I can discern what may be causing the crash?
    Screen capture from the top of the Adobe Photoshop crash log:
    Screen capture from the bottom of the Adobe Photoshop crash log:
    Any ideas?
    Thanks a bunch.

  • Just unlocked Blackberry Curve 8520 with online code, now cannot make calls or send sms! PLEASE HELP!

    Hi,
    I unlocked my phone about an hour ago using a legitimate unlock code from unlocks.co.uk. I entered the code and it seemed to work fine and now my network shows up as Vodafone uk (I have unlocked it from T-Mobile)
    It looks as though it is unlocked and I have checked the connections - I have signal and it says I am connected to the vodafone network, however, I cannot make any calls or send texts! If I try to call a number I get the call failed signed and the failed call dial tone. I tried to send a text but it didn't work - the text now has a red X and says 'unidentified subscriber'. I know this is a fault with my phone as the people I have tried to text and call have no problems with their phones/networks.
    Please somebody help me! I have no idea what to do! I contacted the unlocking company and they say if I'm sure the sim I'm inserting is active (which I am) then it is likely my phone has been blacklisted, but I dont think it has. I bought it as a pay as you go handset from Argos just a week ago and it's been working fine until then. 
    I put my old t-mobile sim back in and it seems to work - does this mean it hasn't been unlocked successfully or not? 
    Many thanks

    Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Then try your Vodafone SIM again.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When I want to organise my bookmarks most of the options are greyed out and cannot be used including create new folder! Help

    '''''''''bold text'''''''''
    When i want to organise my bookmarks most of the options on the organise bookmarks menu are greyed out and cannot be used - including create new folder etc. Help please.

    Make sure you are not in the Private Browsing Mode:
    File > Private Browsing is UNCHECKED.

  • When iPhone is on Cellular data and WiFi, i cannot make calls and phone goes out of service.

    So I have this iPhone 5S unlocked version from the US which I am using in India. When I am connected to my office wireless and also the cellular & 3G data are switched on, my phone goes out of service and I cannot make calls. I can also use internet.
    However this works great when I get onto my home WiFi along with cellular & 3G data switched on, I can make calls and also surf the net with the WiFi.
    Is anyone having similar issue? I am sure there is something with the office WiFi but what could it be to get my phone out of service.
    Any thoughts anybody ?
    Thanks,
    UG

    Yes I shutdown WiFi and I can connect to 3G on Cellular. I can make calls.
    If I shutdown Cellular and connect WiFi. I can make calls.
    Its just that when both are ON, then no calls can be made.
    All combinations work good with Home WiFi. 
    -UG

Maybe you are looking for

  • How can I display more than one record with result set meta data?

    Hi, My code:     ArrayList<String> resultList = new ArrayList<String>();     rs=ps.executeQuery();           ResultSetMetaData rsmd = rs.getMetaData();           while(rs.next()){            for(int k=1;k<=rsmd.getColumnCount();k++){                 

  • How I got my selfripped TV shows to sync to ipod in iTunes7

    I have just got myself a 30GB video iPod, itunes 7 and EyeTV. Everytime EyeTV or any program created ipod video content it would come catogrised as a movie in iTunes and would come up in the movies sync list on the ipod fine. But if I changed the typ

  • Adobe Acrobat Reader 8 printing problems.

    I am currently using Adobe Acrobat Reader 8 with the following information ,and I have problems printing in system configurations (I have an old Brother HL-1060 Laser printer).... When I use the following defaultprinting preferences, the pages come o

  • Is there a way to autoscroll the timeline?

    Whenever the playhead reaches the right hand side of the timeline, the only way to keep it on screen is to manually drag the timeline to the left. I find this very annoying. Am I missing something here? Alternatively can I keep the playhead stationar

  • Azure Mobile Services and ASP Identity - Exception when using UserManager

    I've reviewed this post in the AMS forum and it doesn't really answer the question. I already know how to integrate authentication, but Identity implements a lot of boilerplate user management code that I don't want to have to reproduce.  My question