Problem in datasource and connection factory.

I am using a connection factory to make connections to the database.
First I create a connection pool then i created a datasource and finally i used the JNDI Location name which i used inside the BPEL to create a connection factory.
Does this activity requires a restart of server. I am getting the following error.
file:/software/product/10.1.3.3.0/bpel/domains/default/tmp/.bpel_IRobo_Workflow1_1.0_e580208857197172fe72bbfca5d9d8b6.tmp/fr_jumper_info.wsdl [ fr_jumper_info_ptt::fr_jumper_info(InputParameters) ] - WSIF JCA Execute of operation 'fr_jumper_info' failed due to: Could not create/access the TopLink Session.
This session is used to connect to the datastore. [Caused by: VDMT_IROBO_DATASOURCE not found]
; nested exception is:
     ORABPEL-11622
Could not create/access the TopLink Session.
This session is used to connect to the datastore. [Caused by: VDMT_IROBO_DATASOURCE not found]
See root exception for the specific exception. You may need to configure the connection settings in the deployment descriptor (i.e. $J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml) and restart the server. Caused by Exception [TOPLINK-7060] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)): oracle.toplink.exceptions.ValidationException
Exception Description: Cannot acquire data source [VDMT_IROBO_DATASOURCE].
Internal Exception: javax.naming.NameNotFoundException: VDMT_IROBO_DATASOURCE not found.
</summary>
</part>
-<part name="detail">
<detail>
Exception Description: Cannot acquire data source [VDMT_IROBO_DATASOURCE].
Internal Exception: javax.naming.NameNotFoundException: VDMT_IROBO_DATASOURCE not found
</detailException Description: Cannot acquire data source [VDMT_IROBO_DATASOURCE].
Internal Exception: javax.naming.NameNotFoundException: VDMT_IROBO_DATASOURCE not found
</detail

Hi James
I have created the data source and i can find it in the path C:\product\10.1.3.1\OracleAS_1\j2ee\home\config\data-sources.xml
<managed-data-source connection-pool-name="IRoboConnectionPool" jndi-name="jdbc/VDMT_IROBO_DATASOURCE" name="VDMT_IROBO_DATASOURCE"/>
And in C:\product\10.1.3.1\OracleAS_1\j2ee\home\application-deployments\default\DbAdapter\oc4j-ra.xml i can see
     <connector-factory location="eis/DB/VDMT_IROBO" connector-name="Database Adapter">
          <config-property name="xADataSourceName" value="jdbc/VDMT_IROBO_DATASOURCE"/>
          <config-property name="dataSourceName" value="VDMT_IROBO_DATASOURCE"/>
          <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
          <config-property name="usesNativeSequencing" value="true"/>
          <config-property name="sequencePreallocationSize" value="50"/>
          <config-property name="defaultNChar" value="false"/>
          <config-property name="usesBatchWriting" value="true"/>
          <connection-pooling use="none">
          </connection-pooling>
          <security-config use="none">
          </security-config>
     </connector-factory>
You have said I have given the name for dataSourceName incorrectly , what value should we give I dont know that I thought it is a user defined value.

Similar Messages

  • A very surprise problem about JDBC and connection pool

    I occur a very problem about JDBC and connection pool on Weblogic Platform
    8.1.
    There is a table in Oracle
    Table
    Name: t1
    id varchar2(5);
    content clob;
    id is primary key.
    If I use a connection pool to connect to Oracle,like following program:
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup("cgOracleDataSource");
    con = ds.getConnection();
    then following program will throw a ClassCastException
    String sql = "select content from t1 where id = ?";
    PreparedStatement pst = con.prepareStatement(sql);
    pst.setString(1,"001");
    oracle.sql.CLOB clob = (oralce.sql.CLOB)rs.getClob("content") //this
    statement will throw ClassCastException
    but if I use JNDI to connect to Oracle,like following program, then those
    program above is ok
    private String dbdriver="oracle.jdbc.driver.OracleDriver";
    private String dburl="jdbc:oracle:thin:@192.168.7.148:1521:ep";
    private String username="ep";
    private String password="epuser";
    Class.forName(dbdriver);
    conn = DriverManager.getConnection(dburl, username, password);
    conn.setAutoCommit(false);
    On the contrary, if I use JNDI to connect to Oracle, following program will
    throw ClassCastException
    weblogic.jdbc.vendor.oracle.OracleThinClob clob =
    (weblogic.jdbc.vendor.oracle.OracleThinClob)rs.getClob("content");
    but it is fine if I use connection pool to connect to Oracle.
    I am confused this problem, who can tell me why?
    Daniel

    When you are getting connection using datasource lookup from weblogic
    connection pool, this connection is internally wrapped and hence you have to
    cast it to weblogic.jdbc.vendor.oracle.OracleThinClob which you do and so it
    works.
    But when you get connection by loading driver straight, you are getting naked
    oracle connection. In this case when you cast it to oracle.sql.Clob it works,
    as you have seen in your test case.
    I hope this explains what is going on with your code.
    Thanks,
    Mitesh
    Daniel wrote:
    I occur a very problem about JDBC and connection pool on Weblogic Platform
    8.1.
    There is a table in Oracle
    Table
    Name: t1
    id varchar2(5);
    content clob;
    id is primary key.
    If I use a connection pool to connect to Oracle,like following program:
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup("cgOracleDataSource");
    con = ds.getConnection();
    then following program will throw a ClassCastException
    String sql = "select content from t1 where id = ?";
    PreparedStatement pst = con.prepareStatement(sql);
    pst.setString(1,"001");
    oracle.sql.CLOB clob = (oralce.sql.CLOB)rs.getClob("content") //this
    statement will throw ClassCastException
    but if I use JNDI to connect to Oracle,like following program, then those
    program above is ok
    private String dbdriver="oracle.jdbc.driver.OracleDriver";
    private String dburl="jdbc:oracle:thin:@192.168.7.148:1521:ep";
    private String username="ep";
    private String password="epuser";
    Class.forName(dbdriver);
    conn = DriverManager.getConnection(dburl, username, password);
    conn.setAutoCommit(false);
    On the contrary, if I use JNDI to connect to Oracle, following program will
    throw ClassCastException
    weblogic.jdbc.vendor.oracle.OracleThinClob clob =
    (weblogic.jdbc.vendor.oracle.OracleThinClob)rs.getClob("content");
    but it is fine if I use connection pool to connect to Oracle.
    I am confused this problem, who can tell me why?
    Daniel

  • Connection pool and Connection factory difference?

    Hi,
    Can someone clarify the difference between connection pool and connection factory.
    I know connection pool is some thing like a pool of database connection manitained at one place so that an application or client can use it when it requires.
    Then wat exactly is connection factory..say in 10g we always put a connection factory name in all adapters and acces the data sources like DB ,FTP,AQ ..etc
    can someone clarify??
    regards,

    To conserve system resources and to improve the performance of transactional applications, WebLogic allows you to define a pool of client connections (generally database but may be a FTP,FILE etc. as well)
    A Connection Factory object encapsulates a set of connection configuration parameters that has been defined by an administrator. A client uses it to create a connection with a service provider (generally JMS).
    Regards,
    Anuj

  • Difference between Datasource and Connection Pool

    Hi,
    What is the major difference between Datasource and Connection Pool.
    Both the Datasource with JNDI and Connectio Pool will serve the pool of connections. Then what is the difference.
    regards,
    Raj

    A datasource is not implicitly a connection pool. You can configure that in the datasource properties. A connection pool is also not implicitly a datasource. You can create your own connection pool using the java.sql interfaces. A datasource just gives the ability to acquire the connections and access the database through JNDI. A connection pool just gives the ability to reuse a set of connections which are created/closed/controlled by the connection pool logic.

  • Problem with transacted JMS connection factory and transaction timeouts

              We encountered an interesting problem using transacted JMS connection factories.
              An EJB starts a container managed transaction and tries to validate a credit card
              before creating some information to a database for the user, in case of success
              an SMS is sent to the user via the transacted JMS queue. If the credit card authentications
              duration is about the same as the transactions timeout (in this case the default
              30 seconds) sometimes the database inserts is committed but the JMS insert is
              rollbacked. How can this be?
              If the authorization duration is much longer than 30 seconds everything works
              fine (both database and JMS inserts rollbacked), the same is true if a rollback
              is insured by calling EJBContext.setRollbackOnly(). The problem thus occurs only
              if the duration is approximately the same as the transaction timeout, it appears
              that the database insert is not timeouted but the JMS insert is. How can this
              be if they are both participating in the same transaction.
              The JMSConnectionFactory used is a Connection factory with XA-enabled. The result
              is the same also with the default "javax.jms.QueueConnectionFactory" and if we
              configure our own factory with user transactions enabled.
              Any help appreciated!
              

    Tomas Granö wrote:
              > We encountered an interesting problem using transacted JMS connection factories.
              > An EJB starts a container managed transaction and tries to validate a credit card
              > before creating some information to a database for the user, in case of success
              > an SMS is sent to the user via the transacted JMS queue. If the credit card authentications
              > duration is about the same as the transactions timeout (in this case the default
              > 30 seconds) sometimes the database inserts is committed but the JMS insert is
              > rollbacked. How can this be?
              It should not be.
              >
              > If the authorization duration is much longer than 30 seconds everything works
              > fine (both database and JMS inserts rollbacked), the same is true if a rollback
              > is insured by calling EJBContext.setRollbackOnly(). The problem thus occurs only
              > if the duration is approximately the same as the transaction timeout, it appears
              > that the database insert is not timeouted but the JMS insert is. How can this
              > be if they are both participating in the same transaction.
              >
              > The JMSConnectionFactory used is a Connection factory with XA-enabled. The result
              > is the same also with the default "javax.jms.QueueConnectionFactory" and if we
              > configure our own factory with user transactions enabled.
              >
              > Any help appreciated!
              Make sure that your session is not "transacted". In other words,
              the first parameter to createSession() must be false. There is an
              unfortunate name re-use here. If a session is "transacted", it
              maintains an independent "inner transaction" independent of the
              outer transaction. From the above description, it seems unlikely
              that your application has this wrong, as you say that
              "setRollbackOnly" works - but please check anyway.
              Make sure that you are using a true XA capable driver and database
              (XA "emulation" may not suffice)
              Beyond the above, I do not see what can be going wrong. You
              may want to try posting to the transactions and jdbc newsgroups. Note
              that JMS is appears to be exhibiting the correct behavior, but the
              JDBC operation is not. The JDBC operation appears to have
              its timeout independent of the transaction monitor's timeout.
              Tom
              

  • Problem creating datasources and connectionpools in EM of oc4j

    Can SQLServer2000's connection pool be created through ENTERPRISE MANAGER of OC4J shipped with jdeveloper10.1.3.2. If yes, please let me know how? What is the Connection Factory Class to be specified?
    Please provide useful links

    hi,
    The version of sqlserver is SQLServer2000

  • Linksys SRW224g4p, problems separating VLANS and connectivity

    I have a Linksys SRW224g4p, configured as follows:
    Port 1-3: Access, pvid 1, ingress filtering enabled
    Port 4: General, Allowed All, pvid 1, ingress filtering enabled
    Port 5-12: Access, pvid 1, ingress filtering enabled
    Port 13: General, Allowed All, pvid 1, ingress filtering enabled
    Port 14: Trunk, , pvid 1, ingress filtering enabled
    Port 15-16: General, Allowed All, pvid 1, ingress filtering enabled
    Port 17-24: Access,, pvid 1, ingress filtering enabled
    Port G1-G4: Not used, but General, Allowed All, pvid 1, ingress filtering enabled
    VLANs are distributed as follows:
    VLAN1(default), is untagged on all ports.
    VLAN2 is tagged on ports 4 and 14-16 and excluded from the other ports.
    Devices:
    I have a Draytek 3300V Series router connected to the WAN
    LAN P1 have IP 192.168.1.10, configured to VLAN1 and is untagged.
    LAN P2 have IP 192.168.5.1, configured to VLAN2 and is tagged.
    LAN P1 is wired to Switch P13 and LAN P2 to Switch P14
    Switch P15 is wired to a Wireless Node controller, and port 4 and 16 is wired to APs for the wireless networks.
    The wireless controller distributes two wireless networks, when connected to the first, I get a 192.168.1.0 IP adress (VLAN1) and connectivity to the WAN and LAN. When Connecting to the 2nd network i get a 192.168.5.0 IP (Distributed from the router, VLAN2) but I only have connectivity with the wireless controller and the switch, not the router nor the WAN.
    The point of all this is that the 192.168.1.0 network is the internal network, and the 192.168.5.0 network is going to be used as a guest network, with connectivity only to the wan.
    Hopefully this is enough info for someone to help me solve the connectivity issue between VLAN2 on the switch and the router.

    The PVID on all ports under vlan 2 is 2 and not 1

  • Migrating from WebLogic v8.1.3 to v10.3:  Datasources and Connection Pools

    I took the liberty to migrate my OLD BEA WebLogic v8.1.3 domain (i.e. sample) to Oracle WebLogic v10.3. Everything appears to run smoothly BUT when I try to connect to the Hypersonic Database I had from the OLD environment, I get connection errors (i.e. weblogic.common.ResourceException). I can see from the NEW 10.3 environment that the migration utility creates two (2) datasources (sampleDS and samplePool). However, when clicking through the screens, I do not see how sampleDS refers to the samplePool out of the box from the migration utility. When I start the WebLogic domain with startWebLogic.cmd...here is the code to launch the actual DB instance:
    cd hsqldb
    start "Sample DB (HSQLDB)" %JAVA_HOME%\bin\java -classpath hsqldb.jar -Xms32m -Xmx128m org.hsqldb.Server -database sampleDB -port 15553 -silent false -trace false
    cd ..
    This works quite well and launches a window that has the following:
    | Sample DB (HSQLDB)
    | server.properties not found, using command line or default properties
    | Opening database: sampleDB
    | server.port =15553
    | server.database =sampleDB
    | server.silent =false
    | HSQLDB server 1.7.1 is running
    | Use SHUTDOWN to close normally, Use [CTRL] + [C] to abort abruptly
    | Wed Jun 16 10:18:48 EDT 2010 Listening for connections ...
    |_________________________________________________________
    This is the right screen and confirms my database is up and running and waiting for connections. Somehow, when I migrated from 8.1 to 10.3 something is not configured correctly and my sampleDS is not properly leveraging the samplePool. Can anyone shed any light on this problem?
    I have went through most of the posts and can not seem to understand what happens to the DS and Pools during the migration and specifically how do I reconnect the two to ensure that I can connect to the database. The app is up and running fine in WebLogic v10.3 but without the dB connection, I am stuck at the login screen.
    Thanks for any help...

    I took the liberty to migrate my OLD BEA WebLogic v8.1.3 domain (i.e. sample) to Oracle WebLogic v10.3. Everything appears to run smoothly BUT when I try to connect to the Hypersonic Database I had from the OLD environment, I get connection errors (i.e. weblogic.common.ResourceException). I can see from the NEW 10.3 environment that the migration utility creates two (2) datasources (sampleDS and samplePool). However, when clicking through the screens, I do not see how sampleDS refers to the samplePool out of the box from the migration utility. When I start the WebLogic domain with startWebLogic.cmd...here is the code to launch the actual DB instance:
    cd hsqldb
    start "Sample DB (HSQLDB)" %JAVA_HOME%\bin\java -classpath hsqldb.jar -Xms32m -Xmx128m org.hsqldb.Server -database sampleDB -port 15553 -silent false -trace false
    cd ..
    This works quite well and launches a window that has the following:
    | Sample DB (HSQLDB)
    | server.properties not found, using command line or default properties
    | Opening database: sampleDB
    | server.port =15553
    | server.database =sampleDB
    | server.silent =false
    | HSQLDB server 1.7.1 is running
    | Use SHUTDOWN to close normally, Use [CTRL] + [C] to abort abruptly
    | Wed Jun 16 10:18:48 EDT 2010 Listening for connections ...
    |_________________________________________________________
    This is the right screen and confirms my database is up and running and waiting for connections. Somehow, when I migrated from 8.1 to 10.3 something is not configured correctly and my sampleDS is not properly leveraging the samplePool. Can anyone shed any light on this problem?
    I have went through most of the posts and can not seem to understand what happens to the DS and Pools during the migration and specifically how do I reconnect the two to ensure that I can connect to the database. The app is up and running fine in WebLogic v10.3 but without the dB connection, I am stuck at the login screen.
    Thanks for any help...

  • 4g problem with skipping and connecting to computer

    I am having problems with the ipod skipping and not holding onto a song. This means on occasion I will start a song and the ipod will randomly jump to next song or start playing and then jump. The seek time for songs has also seemed much slower than normal. This happens about 60% of the time. I have done 4 or the 5 r's reset, reinstalled ituns and ipod updater, tried the usb over the firewire cable etc. The ipod will not let me reset through the computerand fails to mount properly. I have attempted to access the ipod through ipod updater, itunes, and windows xp and no luck. At the same time it continues to read do not dissonect, while continuously spinning the hd.
    I ran the internal dignostic on the ipod ( previous + select at the apple screen) to get the internal diagnostic. Accoring to this my hd is fine, and everything seems to test out normal. I am getting an occasional failure on the key test but it is inconsistant at best and can not be localized to one key. I have never noticed any scroll wheel problems
    Despite all this (firewire checks out too), I can not connect the ipod to the computer, and am still having the skipping problems, any other ideas please? I am getting frustrated and considering replacing rather than spending 150 to 200 to fix.

    Hi Anebi,
    I have encountered and come past a similar problem. At least the same error message. I encountered it when using iCal from a Mac though.
    What did I do? The idea came from this thread:
    http://discussions.apple.com/thread.jspa?threadID=1346536&tstart=-1
    1) I turned iCal and Webserver of
    2) I went into the place where calendars are stored (see Server admin, iCal and settings). There I found my down to calendars/_uids_ and deleted all contents. The same with principals/_uids_
    3) edit group and/or user prefs for calendareing in Workgroup Manager
    4) restart WebServer and iCal
    Works for me at least. Hope it helps.
    I will turn iCal and Webserver before editing user preferences in the future (if I remember).
    Message was edited by: Tobias Ahl

  • Problems waking up and connecting to internet after MAC Software updates.

    My Intel Macbook laptop use to connected to the internet automatically when I turned it on the laptop or woke it up. Now after the last MAC software upgrade this week (which included iTune, iPhoto, MAC 10.4.9 and an Airport upgrade) my PC is having problems connecting to the internet.
    It attempts to connect but can't. I end up playing with the settings in Airport internet connections – e.g turning Airport on and off, going to NETWORK -Other and reentering the Network name and wireless security passphrase. Most of the time I have to go into System Preferences – Network and play with these settings e.g. Changing Locations, playing with the network status and eventually, magically it connects and stays connected until the next time I wake up my laptop.
    The wireless Macbook laptop is connected to a DLINK Wireless Router (DI-624), using WPA-PSK security. I have tried rebooting both the laptop and the router a number of time and even redid the setting on both the router and laptop.
    Is there something else I can check/do??? Can I undo any of the MAC Software updates (thinking about the Airport one)??? I would really like to get back to connecting to the internet automatically.
    Thanks.
    Macbook   Mac OS X (10.4.9)  

    Yeah, the 169.254 addy means it isn't getting a DHCP reply, so it's not connected to anything at all.
    Is that Interface dragged to the top of Network>Show?Network Port Configurations and checked ON?
    The Interface that connects to the Internet, needs to be drug to the top of Network Port Configurations.
    Yes those files get recreated on reboot, (unless critical pieces of the OS are missing for it's defaults), but you don't have to trash/delete them, you can just drag them to the desktop!
    But after hearing the latest I might try...
    /Users/nnnn/Library/Preferences... the whole Prefs folder there.
    /Library/Preferences/SystemConfiguration... the whole SysConfig folder.
    /Library/Preferences/com.apple.sharing.firewall.plist
    /Library/Preferences/com.apple.AppleFileServer.plist
    Reboot... of course you dont have to trash them, you can just move them to the desktop to drag back if it doesn't work.

  • Problem Outlook Autodiscovery and "Connect to Microsoft Exchange using HTTP"

    Hi,
    I have huge problem with Outlook Autodiscovery  and RPC over HTTP. In my organization i have Exchange 2010. After server restart something happen with autodiscovery. When client connect to Exchange everything works fine, but.. When client close Outlook
    (2010/13) and open again, can connect only using LAN (mapi). When i check settings "Connect to Microsoft Exchange using HTTP" is unchecked!! And all rpc settings (url, msstd:..) are gone!!! It drive me crazy :( When I change settings of course i
    can connect thru rpc but only until autodiscovery change settings again :( 
    Please help
    Regards 
    michadar
    ps. I tried disable Outlook Anywhere end enable, restart IIS, restart Exchange. I also try on one computer to disable autodiscovery using regedit but what struck me it still happens :(

    Did you try resetting virtual directory? You might have to do this for all CAS servers.  Also, take a note of autodiscover vd settings, just to be on the safe side.
    Here is the article I found on how to reset the virtual directory.
    http://technet.microsoft.com/en-us/library/ff629372(v=exchg.141).aspx 
    I hope this helps.

  • Problems with SCP and Connecting to Localhost

    I have two problems that may or may not be related. The first is trying to use scp from the command line. It used to work fine, but now when I try it, I get prompted for the remote password, then the date gets displayed, and that's it. No file transfer happens. An example run looks like this:
    [12:22 PM][~]$scp [email protected]:boolean/programs/btbs.pl .
    [email protected]'s password:
    Mon Nov 21 12:20:39 EST 2005
    [12:22 PM][~]$
    The second problem I have is trying to user a web browser to connect to localhost. I have PHP installed on my system and am running the apache web server. It worked fine for a while, but now when I try to view a PHP page on my machine, the browser tells me it cannot connect to the server. An example looks like this:
    Safari can’t open the page “http://127.0.0.1/~user/index.php” because it could not connect to the server “127.0.0.1”.
    Any input would be much appreciated.
    Thanks

    Just some wild guesses:
    The problem with scp may be due to your terminal emulation.
    With regard to localhost, you might check whether web access to your computer has somehow been turned off.
    Please excuse, if this is all nonsense.

  • Problems sending texts and connecting to 3G after 6.0.2 update

    Since updating to 6.0.2 my iPhone 5 is having problems sending texts (often - but not always - says texts weren't sent and must hit "retry" a couple times) and having problems connecting to 3G even in zones with good coverage. In general it's much slower than before the update when connecting to 3G. I don't know if this is due to Sprint or due to the update? Yes, I have turned it on and off many times and reset my settings, but it hasn't helped. Anybody else experience this problem?

    Settings > General > Reset > Reset Network Settings.

  • Problems with synch and connection to the store.

    When i connect my iPhone 3Gs with my Windows PC 64 Bit and try to synch the progress bar stops at a certain point and nothing happens (even after an hour).The second problems occurs when i try to connect to the iTunes Store. Either way nothing happens ( at the progress bar) or an error appears and says check your internet connection or try again later. I checked my internet connection and tried it about 10 times. I deinstalled iTunes and re-installed it repaired it and restarded the pc, made all updates and it's still not working. Please Help!

    same problem here. when am trying to access store i get the error "itunes has stopped working"

  • Zen Touch DAP-HDOO14 20 GB Problems with software and connection vi

    Hi?I recently got the above model with the latest firmware. I downloaded to vista software from the site and downloaded songs no problem. All of a sudden the software crashed.Now, although my computer says that its plugged in and the correct driver is installed, Windows Media Payer does not say anything is plugged in and Creative Media Source just crashes completely when I click on the Touch option to transfer files to it. It did work briefly but crashed halfway thruogh 'writing' one of the songs and the same problems happened again. I have tried cleaning it from the help menu, uninstalling and re installing the software and everything?PLEASE HELP!Thanks

    I have had it working the last few times and it rips a track but then half way through writing the cd stops and it says 'an error occorred while transferring the cd' this happens on lots of cd's i have tried can anyone tell me the problem? or sulution.

Maybe you are looking for

  • Diagnostic error and KAL-AP

    Hello @all! On weekend we saw following error in our Cat6509 (12.2(33)SXI) for our ACE-Module  A2(2.3) switch#sh diagnostic events module 1 Diagnostic events (storage for 500 events, 500 events recorded) Number of events matching above criteria = 8 E

  • Data Synchronization in SAPB1 with Outlook

    Dear Experts I heard Data in outlook is synchronized with Business one. Now what does it mean: Does it mean that the new calendar tasks & contacts in the outlook will be sent to Business one and also the new calendar tasks & contacts in the Business

  • Inconsistent autocapitalization in Pages 2.4.2aliz

    Editing or adding a non initial cap word in the middle of a sentance often autocapitalizes it. Sometimes even changing characters in the middle of a word autocaps the edited letter. Anyone else having this problem? Trying to write a complete sentence

  • App World has disappeare​d?

    I upgraded my App World on my Blackberry Torch 9800 and it has disappeared? I have deleted it and reinstalled it but nothing has changed, I have turned my phone off and taken my battery out for 5 minutes and its not changed and I don't know how to ge

  • Slow-Mo Help

    Ok, thanks to you guys, I'm in the final stages of a football player's highlight film. My Last Problems (hopefully): I have a shape mask animated. With this being said, the shot starts out by highlighting the specific player. I want to put this in sl