Having problems with new WebLogic MS SQL driver WLS 8.1

Hi,
We've recently migrated our application from WLS 6.1 to WLS 8.1. We use an MS SQL database. In 6.1 we used the (now deprecated) weblogic.jdbc.mssqlserver4.Driver driver. In 8.1 we now use the new weblogic.jdbc.sqlserver.SQLServerDriver driver. We now are seeing NullPointerExceptions with the new driver that we never saw when running in 6.1 (with the old driver). The exception is occuring at the driver level. I'll paste some of the stack traces below but here is a quick synopsis of our usage pattern:
-standard get-use-close pattern on the connection for each request (connection is closed in finally block).
-pool size: min 1, max 7, increment 5
-test on reserver enabled
-we are simply reading data (no updates)
-we use a single thread that hits the database so there is only ever one active application thread hitting the DB.
-we are using a stored proc.
-we setTimeout on the statement (initial testing seems to indicate that query timeout seems to be at the root of the problem)
The problem seems to occur when statement timeouts occur. I can recreate the problem by setting the statement timeout to 1 sec and throwing a lot data at the DB. What seems to occur is a query hits the timeout and a SocketException is thrown, subsequent queries then throw a NullPointer in the driver layer. Again, this is the behavior under WLS 8.1 with the new weblogic.jdbc.sqlserver.SQLServerDriver driver. If I use the old driver (weblogic.jdbc.mssqlserver4.Driver) under WLS 8.1 all I get is the SocketException (which is what I want). This application ran under WLS 6.1 with the old driver processing millions of queries without any problems.
We are wondering:
(1) Is this a known problem?
(2) Is there a recommended workaround?
Cheers, and as always thanks in advance for any help.
Stack traces follow.
Thank,
Mich
Here are some failure traces from the WLS 8.1 new driver:
java.sql.SQLException: [BEA][SQLServer JDBC Driver]Execution timeout expired.
     at weblogic.jdbc.base.BaseExceptions.createException(Unknown Source)
     at weblogic.jdbc.base.BaseExceptions.getException(Unknown Source)
     at weblogic.jdbc.base.BaseStatement.postProcessExceptionFromCommonExecute(Unknown Source)
     at weblogic.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
     at weblogic.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
     at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)
     at com.our.QueryHandler.execute(QueryHandler.java:79)
THEN WHEN A SUBSEQUENT QUERY IS MADE:
java.lang.NullPointerException
     at weblogic.jdbc.sqlserver.tds.TDSRequest.switchColumnDescriptions(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRequest.processRow(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRPCNonCursorExecuteRequest.submitPrepare(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRPCExecuteRequest.doPrepExec(Unknown Source)
     at weblogic.jdbc.sqlserver.tds.TDSRPCExecuteRequest.execute(Unknown Source)
     at weblogic.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
     at weblogic.jdbc.base.BaseStatement.commonExecute(Unknown Source)
     at weblogic.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
     at weblogic.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
     at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)
     at com.our.QueryHandler.execute(QueryHandler.java:79)
Just to be complete here is the stacktrace generated by a timeout using the old driver on WLS 8.1 (again, this one behaves as expected):
weblogic.jdbc.mssqlserver4.TdsException: I/O exception while talking to the server, java.net.SocketTimeoutException: Read timed out
     at weblogic.jdbc.mssqlserver4.TdsStatement.getMoreResults(TdsStatement.java:813)
     at weblogic.jdbc.mssqlserver4.TdsStatement.execute(TdsStatement.java:210)
     at weblogic.jdbc.mssqlserver4.TdsStatement.executeQuery(TdsStatement.java:54)
     at weblogic.jdbc.mssqlserver4.TdsStatement.executeQuery(TdsStatement.java:1424)
     at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)

Michel Crichton wrote:
Hi,
Thanks for the prompt reply. In answer to your questions:
What I would like to know is the exact code/sequence that causes the subsequent exception. See the sequence of calls at the end of this reply.
Is this in the same thread in the very next call?
I replicated the problem by going through the Web container (5 clients) therefore WebLogic threads are used in this case. I see from the logs 4-5 different execute threads at work (ex. ExecuteThread: '10' for queue: 'weblogic.kernel.Default').
Does it happen all the time?
Although it is tough to tell for sure, once it starts happening it seems to happen most if not all the time.
Is it an attempted re-use of the same statement, or trying to use a different statement?
We do a connection.prepareStatement(QUERY_STRING) call everytime (there is only one per request/response cycle). I believe WLS caches statements behind the scenes though so I suspect at that level there is reuse. There is only one stored proc used (we vary the params per call).
Please show me your pool definition from the config.xml
file, and I will send you instructions to produce some
debug info that will get us to the heart of this matter.
<JDBCConnectionPool
DriverName="weblogic.jdbc.sqlserver.SQLServerDriver"
MaxCapacity="5" Name="THE POOL"
PasswordEncrypted="XXX"
Properties="user=XXX;portNumber=XXX;databaseName=XX;serverName=X.X.X.X"
Targets="Server"
TestConnectionsOnReserve="true" TestTableName="TEST_TABLE" URL="jdbc:bea:sqlserver://X.X.X.X:XXX"/>Ok, do these things:
1 - Add our spy attribute to your pool definition, like this:
<JDBCConnectionPool
DriverName="weblogic.jdbc.sqlserver.SQLServerDriver"
MaxCapacity="5" Name="THE POOL"
PasswordEncrypted="XXX"
Properties="user=XXX;portNumber=XXX;databaseName=XX;serverName=X.X.X.X"
Targets="Server"
TestConnectionsOnReserve="true"
TestTableName="TEST_TABLE"
URL="jdbc:bea:sqlserver://X.X.X.X:XXX;spyAttributes=(log=(file)spy.log;timestamp=yes)"/>
2 - Edit the start-weblogic script to add the spy jar (wlspy.jar) to the
classpath that the script creates for the server, eg:
set CLASSPATH=%WL_HOME%\server\lib\wlspy.jar;%CLASSPATH%
3 - Reboot and duplicate the problem as briefly as possible.
4 - In the same directory where you start the server, you will
now find a file named 'spy.log'. Please send it to me. ( j o e AT b e a DOT c o m )
I will try to reproduce the problem.
5 - Ask BEA support for the latest BEA driver package and install it according to
their instructions. Let me know asap if the probem is still there.
thanks
Joe
>
Also, I forgot to post in the original message some of the WLS stdout related logging we see. Here it is (sorry, it's a little messy):
11:38:37 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <> <BEA-001131> <Received an exception when closing a cached statement for the pool " THE POOL": java.sql.SQLException: [BEA][SQLServer JDBC Driver]The operation was cancelled at the user's request..>
11:38:37 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default'> <> <BEA-001131> <Received an exception when closing a cached statement for the pool " THE POOL": java.sql.SQLException: [BEA][SQLServer JDBC Driver]The operation was cancelled at the user's request..>
11:38:37 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default'> <> <BEA-001131> <Received an exception when closing a cached statement for the pool " THE POOL": java.sql.SQLException: [BEA][SQLServer JDBC Driver]The operation was cancelled at the user's request..>
11:38:38 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <> <BEA-001112> <Test "select count(*) from TEST_TABLE" set up for pool " THE POOL" failed with exception: "java.sql.SQLException: [BEA][SQLServer JDBC Driver]A problem occurred when attempting to contact the server (Server returned: Connection reset). Please ensure that the server parameters passed to the driver are correct and that the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server.".>
11:38:38 o'clock AM EST> <Info> <JDBC> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <> <BEA-001128> <Connection for pool " THE POOL" closed.>
11:38:38 o'clock AM EST> <Info> <JDBC> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default'> <> <BEA-001067> <Connection for pool " THE POOL" refreshed.>
11:38:40 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default'> <> <BEA-001112> <Test "select count(*) from TEST_TABLE" set up for pool " THE POOL" failed with exception: "java.sql.SQLException: [BEA][SQLServer JDBC Driver]A problem occurred when attempting to contact the server (Server returned: Connection reset). Please ensure that the server parameters passed to the driver are correct and that the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server.".>
11:38:40 o'clock AM EST> <Info> <JDBC> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default'> <> <BEA-001128> <Connection for pool " THE POOL" closed.>
11:38:40 o'clock AM EST> <Info> <JDBC> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default'> <> <BEA-001067> <Connection for pool " THE POOL" refreshed.>
11:38:41 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default'> <> <BEA-001131> <Received an exception when closing a cached statement for the pool " THE POOL": java.sql.SQLException: [BEA][SQLServer JDBC Driver]The operation was cancelled at the user's request..>
11:38:41 o'clock AM EST> <Error> <JDBC> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default'> <> <BEA-001131> <Received an exception when closing a cached statement for the pool " THE POOL": java.sql.SQLException: [BEA][SQLServer JDBC Driver]The operation was cancelled at the user's request..>
Here is the sequence of calls we make (notice the statement is closed outside the finally however we assume the connection.close should close associated resources):
PreparedStatement statement = null;
try {
connection = dataSource.getConnection();
statement = connection.prepareStatement(QUERY_STRING);
statement.setString(1, name1);
statement.setString(2, name2);
statement.setQueryTimeout(timeout);
ResultSet resultSet = statement.executeQuery();     
//iterate over result set
statement.close();
return result;               
} catch (SQLException e1) {
//log
} finally {
try {
if(connection != null)
connection.close();
} catch (SQLException e2) {
//log
Thanks again,
Mich

Similar Messages

  • Reposting this If your having problems with new Windows 8.1 do a full uninstall of all Apple

    Reposting this If your having problems with new Windows 8.1 do a full uninstall of all Apple iTunes programs but uninstall them in right order and then do restart of computer then reinstall newest iTunes and it will all be fixed up syncing problems or other problems this is thanks to Apple phone support

    What is your technical support question for these user to user technical support forums?

  • PowerMac G4 having problems with new RAM modules!

    dear all,
    I’ve recently got 2 512 MB Ram module from a British eBay dealer, to be used on 2 different but very similar PowerMac G4 AGP Graphichs 400 MHz machines.
    I installed the first module in my father’s Mac, and it works fine, no problems of any sort. Then, a few days later, I installed the other module in my PowerMac, and immediately it started behaving very erratically: some programs didn’t open at all and others crashed with no warning, I tried to run Rember but it soon get stuck. I assumed the Ram module was faulty, emailed the dealer (who’s been very helpful) and then sent it back to get a replacement. The new module arrived yesterday, I installed it... and it was even worse: as some programs didn’t open as soon as the new module was installed, I rebooted the PowerMac but it hasn’t been able even to load the OS anymore, it just stopped at the blue screen forever, once came out a black screen and a Darwin login, but nothing else. As soon as I removed the Ram module the PowerMac started to work perfectly again.I'd assume again there's something wrong in the Ram module, but isn't it too much unlucky to get 2 faulty modules one after the other, or maybe the problem could somewhere else, in my PowerMac?!?
    Unfortunately I can't test the new module in my father's machine, as we live 700 kms apart.
    My hardware details are:
    Power Mac G4
    Model: PowerMac3,3
    CPU: PowerPC G4 (2.9)
    1 CPU
    CPU Speed: 400 MHz
    L2 Cache (per CPU): 1 MB
    Memory: 896 MB
    Bus speed: 100 MHz
    Boot ROM Version: 4.2.8f1
    thanks!

    ok, I've now tried every possible combination... but with no success
    First, taking out one of the "old" 128 MB I realized it was one of the High density DIMMs (chips on one side only) Japamac was mentioning, in total 2 of the 128 modules were like this. However, taking out one or both of them, or even having only the "new" 512 MB module in, hasn't changed much, sometimes the OS booted, sometimes not but there were always some programs not opening/crashing and Rember got stuck with an error message. With just the "new" module the booting stopped at the blue screen (only blue, no apple splash screen in the centre).
    With the new module plus one of the old 128 MB modules (the one with chips on both sides) Rember got stuck very soon, and the error message was:
    Memtest version 4.2 (32-bit)
    Copyright (C) 2004 Charles Cazabon
    Copyright (C) 2004, 2005, 2006 Tony Scaminaci (Macintosh ports)
    Licensed under the GNU General Public License version 2 only
    Mac OS X 10.4.11 (8S165) running in multiuser mode
    Memory Page Size: 4096
    System has 1 PPC processor(s) with Altivec
    Requested memory: 434MB (455589888 bytes)
    Available memory: 434MB (455589888 bytes)
    Allocated memory: 434MB (455589888 bytes) at local address 0x02008000
    Attempting memory lock... locked successfully
    Partitioning memory into 2 comparison buffers...
    Buffer A: 217MB (227794944 bytes) starts at local address 0x02008000
    Buffer B: 217MB (227794944 bytes) starts at local address 0x0f946000
    Running 1 test sequence... (CTRL-C to quit)
    Test sequence 1 of 1:
    Running tests on full 434MB region...
    Stuck Address : setting 1 of 16testing 1 of 16setting 2 of 16testing 2 of 16
    I guess all this confirm the "new" module is faulty, I'll soon email the dealer
    Thanks to everybody for the help!

  • HPL2208w having problems with new laptop.

    Hi
    I have a HPL2208w 22inch monitor which seems to be playing up on my new Dell laptop. The laptop only has a HDMI port so i am connecting the vga cable from the monitor to the Dell via an adapter.
    The screen shows for a few minutes and requests that the range (i assume resolution) be changed to 1680x1650. For some reason i cannot change the setting of the laptop to that. When i do change to that resolution (only if the monitor is sole output and not dual output) the warning message remains on the screen and the screen is not at its best (clarity wise).
    The Dell runs Win 7 64bit but the monitor worked on my previous Dell with the same version of Windows (with a VGA connection).
    Kind regards
    HA9005
    This question was solved.
    View Solution.

    Hello HA9005,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are having issues with the resolution on the HP L2208w 22" Monitor and a Dell laptop. Unfortunately, as the Monitor does not have options that you can change in regard to the resolution (this is sent from the laptop) I would suggest that you try the Dell Forums for an answer.
    I know this may not be the answer you are looking for, but at least you know where to look for the answer now. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Having problems with new ipad and charging?? Help me please

    I have the new ipad with retina display and it had that new smaller charger as you probably already know, well I've only had this ipad for about three months and I've already gone through two chargers for the same problem which is When I plug it in it does not charge unless I unplug it and plug it in about 40 times and then it starts to charge! Do you think it may have something to do with the ipad itself or am I just getting faulty chargers? It's not that cheap to keep re-buying these chargers ):

    Drusillameow wrote:
    ... am I just getting faulty chargers? It's not that cheap to keep re-buying these chargers ):
    Since your iPad is quite new, why are you "re-buying" chargers?  Are you not using the charger that came in the box -- the original Apple charger?  If you were doing that, and did not mishandle the charger (e.g., tug on the cord to pull the charger out of the wall socket), Apple would take care of the charger under its warranty.
    So I suspect you're either mishandling the charger (not likely), or using some third party charger (more likely).
    If it's the original Apple charger, and you're not mishandling it, contact Apple for assistance.

  • After downloading Maverick, suddenly I'm having problems with new windows (like with Blackboard) closing automatically. Anyone else?

    A few weeks after downloading Maverick, I noticed that some attempts to use software that opens new windows (like Blackboard) are now failing as soon as that window opens. Is this a glitch with Maverick?

    Yes! Been living in a hellish nightmare since Sept-Oct. Unlike you, however, Apple has been of no help. They say the iPad is unhackable, plist and crash reports are none of my business and who understands them anyway, their route tracing apps are probably not reliable. The best they could do was wipe the iPad clean. Lost photos they said would be in the cloud....
    Almost immediately was back in somebody's VPN, their remote controller, video, audio, working. Got the purple buddy for the first time today. I have been invaded, my iPad no longer feels like my own, I have lost thanksgiving, Christmas, new year trying to track down the invaders, signed up for a Cisco course, set/reset passwords.
    I don't know who else to contact... Or what next to do.
    I've read similar frustration in other posts, scattered around the support communities. Yours is the only one that has worked toward a solution.
    How did you get anyone at apple to look at your logs and acknowledge there is a problem?
    Would be happy for a suggestion on how to proceed. Already been the apple store genius and tech on phone route.

  • Having problems with BIOS detecting CD/DVD drive

    So heres the deal.  I have a Samsund DVD/CD-rw drive and my motherboard is a MSI K8T Neo-FIS2R K8T800.  I built a complete new system.   I got everything up and running then yesterday all of a sudden my CD drive isn't being recognized.  So I check BIOS and its not being detected there either.  I checked everything, replaced cable and stuff.  Finally I was able to get it to work but I had to clear CMOS.  After clear it detected it again and everything was fine and dandy til today.  Same thing happened.  Had to clear CMOS to get to detect again.
    I thought maybe my drive was bad but I don't see how clearing CMOS would fix that.  And the ONLY way I was able to get it to detect again was clearing CMOS.... sigh.  And I really don't like doing that.

    Hi
    Have you tried uninstalling the drive in device manager, then letting it re install, also DVD drives often need additional drivers, which can be got from makers site.
    Cheers
    jocko

  • I'm having problems with new ipad 4G (3G in Portugal/Europe), when traveling I lose internet connection!

    The device have network (shows it) but can not connect to the internet. Need to restart (off/on) to get access to the internet
    Anyone know how to solve this problem

    Thanks Jim,
    I tried that already and as soon as I hid the ssid of my wifi the issue started happening again.  It used to connect but now won't do anything.
    Neil

  • I am having problem with Segate free agent drive.

    Since I installed Mountain lion on my iMac 24" I am having problem with a previously installed Seagate drive.  When I am in finder and click on the Free Agent drive, I get the following error.  VTDecoderXPCService quit unexpectedly. I click reopen and a few seconds later I get same message.  This did not occur when I was using Snow Leopard  Very annoying. Any suggestions?  Note I have many movies and important data on this drive and don't want to lose. What does this error mean and is there some way to correct?

    http://changux.co/solving-vtdecoderxpcservice-quit-unexpectedly

  • Windows 8.1 Pro 64 bits. Problem with IDT High Definition Audio Driver on my HP pavilion g6 notebook

    Hi!
    I'd recently upgraded from Windows 7 to Windows 8.1 Pro 64-bit version. All drivers worked fine but I'm having problems with IDT High Definition Audio driver. Can someone help me? Thanks in advance! My PC model is: LS278EA#ABE

    Hi:
    See if this driver works...
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?softwareitem=ob-124012-1&cc=us&dlc=en&lc=en​...

  • Is anyone having problems with the new Xerox printer driver update from Apple? My 8700S is no longer working with QuarkXPress.

    I allowed a System Update that included a Xerox Printer update. I am running a MacPro 10.6.8 with Quark 8.5.1 and a Xerox ColorQube 8700S.  EVERY was working perfectly before the "update" but afterwards anything sent to the printer from Quark would stall the printer.  I went to the Xerox website and downloaded their Printer Driver and tried again.  Now I could print from  Quark but I can NOT get to the printer window to change the type of paper, etc.  So, the problem still persists.
    Should I try going into Time Machine and trying to find the Xerox Print Driver in the Library folder?
    Should I upgrade the whole system software?  (I wouldn't mind doing that AFTER I get this magazine off to the commerical printer)
    Should I upgrade to Quark 9?
    Any help here would be apprciated.
    Thanks  - Rob

    As a general rule of thumb, I never install updates until I read its info and I am having problems with my current software.  I hide the updates until I need them.  Usually this happens when I update or upgrade my os.  I don't fix what ain't broken is my golden rule.
    It is possible that you need to update or upgrade Quark in order for your newer printer driver to work.  First I would try the following....
    Disconnect all peripherals from your computer.
    Boot from your install disc & run Repair Disk from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select Disk Utility.
    Select the disk or volume in the list of disks and volumes, and then click First Aid.
    Click Repair Disk.
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://support.apple.com/kb/HT2963 and restart your computer.
    If your printer does not work afterwards, update or upgrade Quark.  If that does not work, contact the printer manufacturer.

  • Are you having problems with the Lacie external drive after upgrading to the new operating system

    Are you having problems with the Lacie external drive after upgrading to OS X Mavericks?

    See here for everyone discussing the issue you are having:
    https://discussions.apple.com/thread/5475136?tstart=0

  • Hi am having problems with iTunes,I have all my music on my 4s but I bought the iPhone 5 today.us there any way that I can transfer music over to my new phone without using the library?as it doesn't seem to be on my PCM anymore.

    Hi am having problems with iTunes,I have all my music on my 4s but I bought the iPhone 5 today.is there any way that I can transfer music over to my new phone without using the library?as it doesn't seem to be on my PC anymore.i reset my pc and save my iTunes to a hard drive but can't access it.Need help please

    " When I did this, my library showed all the music I have "purchased" from itunes but did not have the music that I downloaded a long time ago through itunes from my old CDs."
    Correct.
    " How can I get that music to show up in my library now on my new computer?  "
    Copy it from your old computer or your backup copy of your old computer.
    The sync is one way - computer to ipod.

  • I just updated to new final cut pro x 10.1.1 and i am also on mavericks so but on my editing timeline i was trying to color grade using magic bullet looks but i am having problem with it. when it comes back to tcp x it's black.

    I just updated to the new final cut pro x 10.1.1 and i am also on mavericks so but on my editing timeline i was trying to color grade using magic bullet looks but i am having problem with it. When i send a sample to MBL and color grade it , it comes back to final cut pro x all black even after render. By the way on the MBL i am using the GPU rendering, I used before like 4months ago and it was fine. And i don't like to use the CPU because it very slow.

    What is the frame rate of the project? At what frame rate was the media recorded? What frame size?
    What are the audio settings?
    What are the specs of the machine, in particular how much RAM, how is the hard drive connected, etc.?
    If possible, post screenshots of the inspector for the project.
    It could be related to the audio frequency?

  • HT1631 updated to the new os x mavericks, now i'm having problems with my keychain access...everytime i asked to log in but when i do, it says can't find login items even if i reset it. what should i do?

    updated to the new os x mavericks, now i'm having problems with my keychain access...everytime i asked to log in but when i do, it says can't find login items even if i reset it. what should i do?

    Did you install the latest driver set for the device?  there is a new release on motu.com for mavericks.
    rachel

Maybe you are looking for