Moving to EclipseLink (SessionCustomizer problem)

Hi,
I moved from Toplink Essentials to EclipseLink with Tomcat 6.0.18 and have this problem:
I created two web applications both uses EclipseLink. Due to using non-jta-datasources I created in both applications JPAEclipseLinkSessionCustomizer as shown here: http://wiki.eclipse.org/EclipseLink/Examples/JPA/Tomcat_Web_Tutorial
When I start one application everything works fine. As soon as I run the other application which uses EclipseLink I got exception:
Exception [EclipseLink-28014] (Eclipse Persistence Services - 1.1.1.v20090430-r4097): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Exception was thrown while processing property (eclipselink.session.customizer) with value (hlaseni.JPAEclipseLinkSessionCustomizer).
Internal Exception: java.lang.ClassCastException: hlaseni.JPAEclipseLinkSessionCustomizer cannot be cast to org.eclipse.persistence.config.SessionCustomizer
Can anyone help?
Thanks
PERSISTENCE.XML
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="hlaseniPU" transaction-type="RESOURCE_LOCAL">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<non-jta-data-source>java:comp/env/jdbc/Hlaseni</non-jta-data-source>
<class>hlaseni.entity.Zmeny</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="eclipselink.session.customizer" value="hlaseni.JPAEclipseLinkSessionCustomizer"/>
<property name="eclipselink.logging.level" value="INFO"/>
</properties>
</persistence-unit>
</persistence>
CLASS JPAEclipseLinkSessionCustomizer:
package hlaseni;
import javax.naming.Context;
import javax.naming.InitialContext;
import org.eclipse.persistence.config.SessionCustomizer;
import org.eclipse.persistence.sessions.JNDIConnector;
import org.eclipse.persistence.sessions.Session;
public class JPAEclipseLinkSessionCustomizer implements SessionCustomizer {
public void customize(Session session) throws Exception {
JNDIConnector connector = null;
Context context = null;
try {
context = new InitialContext();
if (null != context) {
connector = (JNDIConnector) session.getLogin().getConnector(); // possible CCE
connector.setLookupType(JNDIConnector.STRING_LOOKUP);
System.out.println("_JPAEclipseLinkSessionCustomizer: configured " + connector.getName());
} else {
throw new Exception("_JPAEclipseLinkSessionCustomizer: Context is null");
} catch (Exception e) {
e.printStackTrace();
}

Pavel,
I was able to run EclipseLink JPA using a non-JTA datasource on Tomcat 6.0.18 using the following configuration.
I will update the tutorial with this 3rd type of database connectivity.
1) transaction-type RESOURCE_LOCAL direct connection using "javax.persistence.jdbc" properties - previously working
2) transaction-type RESOURCE_LOCAL non-JTA datasource connection using "non-jta-data-source" or "javax.persistence.nonJtaDataSource" - verified today
3) transaction-type JTA "jta-data-source" - working only when Tomcat is run as a service
2) non-jta-datasource setup for persistence.xml, web.xml and server.xml
Note: if the resource-ref setup is missing or if the jndi names do not match you will see "name not bound" exceptions
persistence.xml
<persistence-unit name="statJPA" transaction-type="RESOURCE_LOCAL">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<non-jta-data-source>java:comp/env/ds/OracleDS</non-jta-data-source>
<class>org.eclipse.persistence.example.unified.business.***</class>
<properties>
<property name="eclipselink.session.customizer" value="org.eclipse.persistence.example.unified.integration.JPAEclipseLinkSessionCustomizer"/>
<property name="eclipselink.target-database" value="org.eclipse.persistence.platform.database.oracle.OraclePlatform"/>
<!-- this one overrides -->
<property name="javax.persistence.nonJtaDataSource" value="java:comp/env/ds/OracleDS"/>
<property name="eclipselink.logging.level" value="FINEST"/>
</properties>
</persistence-unit>
JPAEclipseLinkSessionCustomizer.java
- matches what is on
http://wiki.eclipse.org/EclipseLink/Examples/JPA/Tomcat_Web_Tutorial#Session_Customizer
web.xml
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>UnifiedTomcatWeb</display-name>
<servlet>
<display-name>FrontController</display-name>
<servlet-name>FrontController</servlet-name>
<servlet-class>org.eclipse.persistence.example.unified.presentation.FrontController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>FrontController</servlet-name>
<url-pattern>/FrontController</url-pattern>
</servlet-mapping>
<persistence-context-ref>
<persistence-context-ref-name>persistence/em</persistence-context-ref-name>
<persistence-unit-name>statJPA</persistence-unit-name>
</persistence-context-ref>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>ds/OracleDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
server.xml
<GlobalNamingResources>
<Resource
name="ds/OracleDS"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="scott"
password="pw"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@y.y.y.y:1521:orcl"
/>
</GlobalNamingResources>
<Context
className="org.apache.catalina.core.StandardContext"
cachingAllowed="true"
charsetMapperClass="org.apache.catalina.util.CharsetMapper"
cookies="true" crossContext="false" debug="0"
displayName="UnifiedTomcatWeb"
docBase="C:\opt\tomcat6018\webapps\UnifiedTomcatWeb.war"
mapperClass="org.apache.catalina.core.StandardContextMapper"
path="/UnifiedTomcatWeb"
privileged="false" reloadable="false"
swallowOutput="false" useNaming="true"
wrapperClass="org.apache.catalina.core.StandardWrapper">
<ResourceLink
global="ds/OracleDS"
name="ds/OracleDS"
type="javax.sql.DataSource"/>
</Context>
</Host>
Logs:
[EL Finest]: 2009-06-01 15:19:23.828--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--property=javax.persistence.nonJtaDataSource; value=java:comp/env/ds/OracleDS
[EL Finest]: 2009-06-01 15:19:23.844--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--property=eclipselink.session.customizer; value=org.eclipse.persistence.example.unified.integration.JPAEclipseLinkSessionCustomizer
_JPAEclipseLinkSessionCustomizer: configured java:comp/env/ds/OracleDS*+_
[EL Info]: 2009-06-01 15:19:23.844--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--EclipseLink, version: Eclipse Persistence Services - 2.0.0.qualifier
[EL Config]: 2009-06-01 15:19:23.859--ServerSession(13961193)--Connection(6427893)--Thread(Thread[http-8080-1,5,main])--connecting
(DatabaseLogin(
platform=>OraclePlatform
user name=> ""
connector=>JNDIConnector datasource name=>java:comp/env/ds/OracleDS
[EL Config]: 2009-06-01 15:19:24.327--ServerSession(13961193)--Connection(24968504)--Thread(Thread[http-8080-1,5,main])--Connected
: jdbc:oracle:thin:@y.y.y.y:1521:orcl
User: SCOTT
Database: Oracle Version: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Driver: Oracle JDBC driver Version: 11.1.0.0.0-Beta5
EL Info]: 2009-06-01 15:19:24.358--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--file:/C:/opt/tomcat6018/webapps/UnifiedTomcatWeb/WEB-INF/classes/-statJPA login successful
- user sends "demo" command to servlet....
[EL Finer]: 2009-06-01 15:19:24.39--ServerSession(13961193)--Thread(Thread[http-8080-1,5,main])--client acquired
[EL Finest]: 2009-06-01 15:19:24.39--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--PERSIST operation called on: [email protected].
[EL Finer]: 2009-06-01 15:19:24.483--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--begin unit of work commit
[EL Finer]: 2009-06-01 15:19:24.483--ClientSession(26548428)--Connection(16408563)--Thread(Thread[http-8080-1,5,main])--begin transaction
[EL Finest]: 2009-06-01 15:19:24.499--ClientSession(26548428)--Thread(Thread[http-8080-1,5,main])--reconnecting to external connection pool
[EL Finest]: 2009-06-01 15:19:24.499--UnitOfWork(13645178)--Thread(Thread[http-8080-1,5,main])--Execute query InsertObjectQuery([email protected])
[EL Fine]: 2009-06-01 15:19:24.499--ClientSession(26548428)--Connection(26760685)--Thread(Thread[http-8080-1,5,main])--INSERT INTO
STAT_LABEL (ID, DATE_STAMP) VALUES (?, ?)
bind => [7127, null]
thank you
/michael

Similar Messages

  • Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,change remotes, no change.Help please.

    Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,changed remotes, no change. Latest software update. This is really annoying.  iPhone remote app works just fine.  Any suggestions?

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

  • MOVED: MSI vr330x vga problem

    This topic has been moved to MSI Notebook.
    https://forum-en.msi.com/index.php?topic=144982.0

    Hi again,
    Have you tried updating to Win XP Service Pack 1 yet?
    Else, you may want to try this weird method as some gave a shot and the problem's solved, but not to everyone...
    Boot up using the the cards that work, next, shutdown com(do not un-install drivers), put in the Leadtek card, boot up and see if there's the original 16bit colors with 800 by 600 res screen while starting up windows, if it does, try installing the drivers for WinXP/2000 by manually selecting the location as XP has a problem in detecting XP's VGA drivers, restart and see if problem persists.
    All the Best... :D!!!

  • MOVED: [Athlon64] Annoying little problem! PLease help

    This topic has been moved to Operating Systems.
    [Athlon64] Annoying little problem! PLease help

    Hi Ben.
    Thank you very much vor your replay
    but I still can get it
    Here the code
    on testAlphaChannels sourceImage, cNewWidth, cNewHeight,
    pRects
    cSourceAlphaImage=sourceImage.extractAlpha()
    newImage = image(cNewWidth, cNewHeight, 32)
    newImage.useAlpha = FALSE
    newAlphaImage = image(cNewWidth, cNewHeight, 8)
    repeat with i=1 to pRects.count
    destRect=......
    newImage.copyPixels(sourceImage, destRect, pRects
    newAlphaImage.copyPixels(cSourceAlphaImage, destRect,
    pRects,
    [#ink:#darkest])
    end repeat
    newImage.useAlpha = TRUE
    newImage.setAlpha(newAlphaImage)
    textMember = new(#bitmap)
    textMember.image=newImage
    end
    But the result is not correct. O my example
    http://www.lvivmedia.com/fontPr/Fontproblems3.jpg
    image to the left is
    created on background image, and image to the right - with
    code above
    What is wrong in the code, I quoted above?
    Any help will be appreciated
    Jorg
    "duckets" <[email protected]> wrote in
    message
    news:ekhekq$c6g$[email protected]..
    > I think this is what you'll have to do:
    >
    >
    >
    > Do the copypixels command as per your 2nd result example
    (where "no
    background
    > image is used") using destImage.useAlpha = false.
    >
    > Create a new image as a blank alpha channel image (8
    bit, #greyscale)
    >
    > Repeat the same copypixels commands for each number, but
    this time the
    source
    > image is 'sourceAlphaImage', and the dest Image is this
    new alpha image.
    And
    > the crucial part, use: [#ink:#darkest] for these
    operations. This is
    because
    > you are merging greyscale images which represent the
    alpha channels of
    each
    > letter. The darker parts are more opaque, and the
    lighter parts are more
    > transparent, so you always want to keep the darkest
    pixels with each
    copypixels
    > command.
    >
    > hope this helps!
    >
    > - Ben
    >
    >
    >
    >

  • Moving Projects; Duplicating Events- Problem

    Hi, I know that I can copy events and projects from an internal drive to external storage device by dragging them to the connected drive; moving them by holding down the command key while dragging.
    The problem I'm having is that events that are referenced by multiple projects are being copied each time i copy over a project that references the event resulting in multiple instances of the event on the external drive. If I copy the first project and then copy a different project, i'm told that "clips used in the project are not the hard disk..." But the event with the clips ARE already there on the external drive. (I can tell they're there because if I select the project on the external drive and then select the event in the Event Library, there's a little red line on the clip indicating that's it's been used in the selected project)
    Am I missing something here?
    Thanks for any help
    Chris

    kkorgan wrote:
    Thanks so much for responding! That all makes sense, and I was concerned about editing from the server directly because of bottlenecking, so I will continue to have my current project on my local drive and then move it later.
    Can you clarify this for me:
    "create a sparse disk image on the server, mount it"
    Does that mean I create a "shortcut" on my desktop to the area in the server where it goes and then archive my projects to it?
    One more question, when I hide my events/files as you show in your screenshot, isn't it still housing my footage on my local drive and therefore eating up space?
    A  disk image is a special kind of file that you can double click and mount as if it were a hard disk.
    The word "sparse" means that it will grow only as you add content to it. So you can create a sparse disk image with size, say, 50GB, but if you only add files that occupy 1GB, that's the space it will take on disk; it will grow as needed to accomodate more files (assuming the actual disk where the image resides has available space, of course). You create disk images in Disk Utility.
    You probably have used disk images a lot without maybe realizing it. The dmg files that contain installers for many applications are disk images.
    Regarding the hidden events: yes, if they are still on the drive they will still occupy space. If the matter is freeing space on the drive, this will not help; but if the matter is making FCP X work faster and use less memory, it will.
    And you could just as well take the events and "hide" them in a different drive.

  • Exchange 2010 - missing mails moved by rules / strange problem

    Hello,
    one of our users has a pretty strange problem.
    First of all, he has 12 rules (11 server-sided plus default for removing categories) and a HUGE folder-tree for about 1.5 years.
    His tree looks like:
    Inbox
    -A
    --1
    --2
    ---a
    ---b
    --3 Newsletter
    --4
    -B
    --1
    --2
    --3 Newsletter
    --4
    ...and so on for 192 folders
    Other Stuff
    -A
    --1
    --2
    ... and so on for 80 folders
    Since this week, he complains about missing mails.
    While investigating this problem, everything looks fine at first. Mails are stored to his mailbox successfully.
    Later we found out, that he has rules to move incoming mails to his "--3 Newsletter" folders depending on sender (and no further processing) and was looking for exactly those mails.
    But the mails were not visible in the target folder and neither in the inbox folder.
    Using the search function on inbox, I was not able to find the mails. After checking the box for all subfolders, the mail was found. Hovering the mail I was told, that it is in the target folder - where for sure it wasn't.
    Opening the mail from the search result and clicking on [File], "Inbox" was displayed as the current folder.
    After re-running the matching rule, the mails were visible in the target folder. This worked for yesterday. New mails were moved successfully.
    And today, we have the very same problem again. And again, I can quick-fix it by re-running the rules.
    As I can see and "fix" this on his machine and on my admin machine, this can't be any local problem.
    Any hints or solutions for that?
    Our Exchange version 14.3.123.4
    (Gosh, this input field is a huge pain in the ass! Why the hell does it automatically uppercase some words?)

    AdminDisplayVersion               : Version 14.3 (Build 123.4)
    Where can I see which RU this is?
    Outlook on his machine is configured with cache-mode, Outlook on my admin machine is configured for online-mode only
    The Rollup installed (if any) is not shown in EMC or EMS.
    See:
    Dude, where's my rollup?
    Martina Miskovic

  • Eclipselink Multitenancy problem

    We have a web application that should support multi tenancy. As persistence framework we want to user Eclipselkink with its Multitenant feature.
    Here are our requirements:
    - The web application should be container managed (JTA)
    - We want to use the single table approach. Each tenant entity becomes a tenant_id.
    - Admins are able to create tenants on the fly. That means each user was assigned to its tenant. On login we read the tenantId and pass it to the EntityManager.
    At the moment I have some transaction problems. I´ve injected the EntityManagerFactory with @PersistenceUnit annotation and pass the tenant id and the shared cache setting to the entity manager. Queries works fine but merge/persist of entities don´t work anymore. There is no exception. I think its a transaction problem.
    In a further version i used the @PersistenceContext and everything is works fine. But i think injection the persistence context is don´t allowed in "Persistence Context per Tenant" (see https://wiki.eclipse.org/EclipseLink/Examples/JPA/Multitenant)
    How could I use container managed transactions (persistence context) and tell the entity manager which tenant id it should use?
    Thanks for your answers.

    We have a web application that should support multi tenancy. As persistence framework we want to user Eclipselkink with its Multitenant feature.
    Here are our requirements:
    - The web application should be container managed (JTA)
    - We want to use the single table approach. Each tenant entity becomes a tenant_id.
    - Admins are able to create tenants on the fly. That means each user was assigned to its tenant. On login we read the tenantId and pass it to the EntityManager.
    At the moment I have some transaction problems. I´ve injected the EntityManagerFactory with @PersistenceUnit annotation and pass the tenant id and the shared cache setting to the entity manager. Queries works fine but merge/persist of entities don´t work anymore. There is no exception. I think its a transaction problem.
    In a further version i used the @PersistenceContext and everything is works fine. But i think injection the persistence context is don´t allowed in "Persistence Context per Tenant" (see https://wiki.eclipse.org/EclipseLink/Examples/JPA/Multitenant)
    How could I use container managed transactions (persistence context) and tell the entity manager which tenant id it should use?
    Thanks for your answers.

  • MOVED: K7N2 Delta2 OC problems

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=122072.0

    Quote from: Henry on 04-December-08, 04:44:47
    I would to just try it with only the A-DATA 1GB stick as I said before and see how it goes. You will never know if the problem is with the mixed memory or not unless you do this. Any way you look at it mixing 3 different brands & 2 sizes of RAM is not good! And then you OC on top of that.
     Edit: If there was no problems before you started using the free sticks of RAM by the time you get done fooling with BIOS settings to get it working you probably have reduced the performance of your PC and gained nothing. How would you walk with a platform shoe on 1 foot and a regular shoe on the other foot? Not as good as with both shoes the same I bet.
    when I used A-DATA 1GB the same probelm showed up.
    When I do not OC , everything works fine...(games,prime95 etc)
    So it is better said so: When i am walking, the both shoes feel fine, but when i try to run, there is probelm (maybe the shoes need new laces,or the heart is not strong enough and need some powerup  ) so i just try to figure out where could be the problem and solve it.

  • MOVED: D.O.T. problem

    This topic has been moved to Overclockers & Modding Corner.
    D.O.T. problem

    Make sure first off that you don't have Turbo turned on. That also overclocks but with a mixed bag of results as it can cause issues with the AGP/PCI clocks. Also if you change the FSB turn off DOT as your overclocking with both at the smae time.
    Typically you will want Memtest86+ and Prime95 so that you can be sure you are stable with each step. Use the FSB and turn it up one step at a time and test between each step to be sure that you remain stable. Simply put if the test fail your not stable so turn it back down to where it was.
    Some folks have reached 220 or higher on the FSB but don't jump right there and expect it to work as you will likely harm something if your system can't handle it. Use small steps of 1 or 2 at a time and I can't stress testing enough. If something seems odd then stop and go back to an earlier setting.
    Keep in mind that overclocking is not assured nor are high overclock values. Whatever you do can put hardware at risk and if your not sure then don't go there. Overclocking vcoids warrenties and any problems are on your head and can dig deep into your wallot. That said don't send me hate mail if things don't go well. LOL
    These CPU's are not very good overclockers as yet because the AGP/PCI clocks go up with each step of increase in the FSB. That means that while your CPU may handle it your other cards may become unstable as well. Note SATA HD's are also very problem children when it comes to hi overclocks. If you start getting 0 Byte files written to the HD your running them to fast. Everything is tied ATM to the FSB speed so any change you make there effects the speed of everything in the computer in this regard.
    Have fun and be sure to test if your going to attempt it.

  • MOVED: MSI MS-1718X problem on MSI L730-035NL

    This topic has been moved to MSI Notebook.
    https://forum-en.msi.com/index.php?topic=131519.0

    Quote
    RAID drivers on a floppy
    I think the problem here is not so much the "right" procedure.  The question is, if he has been using the proper drivers for the onboard RAID Controller in the first place.
    The product page for this board:
    http://eu.msi.com/index.php?func=proddesc&maincat_no=133&prod_no=678
    ... mentions a Promise 20378 RAID controller.  However, the only RAID Drivers offered in the Driver Download Section are for an Adaptec RAID Controller (which will of course not work with a Promise Chipset).

  • MOVED: MSI P7N SLI problem, help!

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=118438.0

    Quote from: Lugaidster on 16-July-08, 04:53:03
    That bios didn't fix the multiplier issue. It's already flashed...
    I was thinking that you have missing MP.
    "I haven't tested every possible fsb setting but I don't want to, I just want to run my cpu at the 8x multiplier "
    What's the problem to do that?

  • MOVED: z87-gd65 ethernet problem

    This topic has been moved to Intel Core-iX boards.
    https://forum-en.msi.com/index.php?topic=175634.0

    Quote from: FreeCredits on 11-December-13, 19:36:08
    First, try the network driver here https://forum-en.msi.com/index.php?topic=174229.0
    I installed this via Device Manage > Update Driver > Browse Computer For Folder > Killer E220x/Win 7(I'm assuming it's backwards compatible with Vista 32bit)
    It says it's installed, but it gave me Error Code 39.
    Via Properties > Check For Solution... I received this
    Description
    Windows was able to successfully install device driver software, but the driver software encountered a problem when it tried to run. The problem is code 39.
    Problem Signature
    Problem Event Name: PnPDeviceProblemCode
    Architecture: x86
    Hardware Id: PCI/VEN_1969&DEV_E091&SUBSYS_78451462&REV_13
    Setup Class GUID: {4d36e972-e325-11ce-bfc1-08002be10318}
    PnP Problem Code: 00000027
    Driver Name: e22w7x86.sys
    Driver Version: 8.02.42
    Driver Date 03-21-2013
    OS Version: 6.0.6002.2.2.0.251.1
    Locale ID: 1033

  • MOVED: 790GX-G65 // Ram Problem

    This topic has been moved to AMD64 ATI/SiS/VIA boards.
    https://forum-en.msi.com/index.php?topic=134422.0

    When I put more than 1 (one) memory DIMM in the system it won't boot, either to bios or OS.  Can I change the frequency prior to installing the other #2, #3, & #4 DIMM?
    Also, I plan on keeping the XP 32 bit system.  Yes, I was told the OS will only use 3.5 - 4 gb, but the software manufacturer said that the program would recognize and use the entire 8gb, is this not true?
    Finally, it says dual channel, so on this MoBo, should I try slot 1 & 4, or 1 & 2 for a max of 4gb?  Regardless, the system won't boot with more than 1 (one) DIMM installed.
    Side problem.  On a system scan & in bios it recognizes the 2nd harddrive 500gb Seagate, C:/ drive is recognized, but when I go to MyComputer it only shows 1 harddrive and 2 x optical drives, how do I get the 2nd harddrive recognized and assigned.

  • MOVED: mainboard X48C freez problem

    This topic has been moved to Intel Core 2 Duo/Quad boards.
    https://forum-en.msi.com/index.php?topic=122217.msg1061767#msg1061767

    Quote from: mosu81 on 01-November-10, 02:17:08
    thank you so much. i need help with this Pc  to make it work finali.freezes when the mood takes him, sometimes goes well(when I do video editing and uses memory), sometimes freeyes when it starts win 7 ; After a few minutes.memorz voltaje now is 1,54 or 1,58 and the same problem. can i use the memory modules DDR3 without Switch Cards installed?the PC, MB will work?
    I had a issue like this freezing , when my video card was failing . Do you have another video card to try ?? 

  • MOVED: [Neo4-F/Venice] Problem with downclocking

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=136087.0

    I found the main problem.
    I have two versions of windows:
    - xp pro sp2 integrated 01/2007
    - xp pro sp3 integrated 12/2009 performance edition, integrated all driverpacks
    Because I found some problem with hdd <-> mainboard communication in smart, i tried with some other hdd and tried to create all partitions once again.
    During installing xp sp3 on both hdd, i got bsod 0x7f/0x8e after decompressing driverpacks. This showed that this is not a problem with hdd. So I tried to install xp sp2 and it was working properly. Then I was installing drivers to verify which may cause problems:
    - graphic card - working
    - nforce - working
    - AMD Cool'n'Quiet - working
    - RMClock - bsods after each decrease of multiplier or voltage, cpu can work only on 9x and 1.4V
    Because it is problem with Cool'n'Quiet, I guess that it may be a problem with windows sp3 because driverpacks integrates AMD CnQ drivers. So I disabled CnQ in bios and tried to install xp sp3 once again. And.. it is working !!!.
    So the problem is with Cool'n'Quiet. I can't change any parameters of cpu because I get bsod each time. The best way is to disable CnQ in bios. On 1.4V and 9x it is working properly, no bsod under superpi and other cpu testing programs.
    I tried also to modify cpu multiplier in bios. Each decrease cause system freeze after showing system info in table and system can't boot. It is working only on 9x.
    Is it a problem with mainboard or cpu?

Maybe you are looking for

  • HFR Issues - "5200: Error executing query: Invalid Item ID"

    Hi All, We are using Hyperion HFM application 11.1.1.3. Recently we have upgraded the Oralce Database to 11.2.0.2 and reconfigured the HFM application with this new database version. When I tried to run the Financial reporting through the HFR studio,

  • How can I click on a link in Adobe Reader?

    I get sent a pdf newsletter.  In this newsletter it asks parents to click on the link to reply.  The link is an email address.  However, when I try to click on the email address nothing happens.  Can you have email address links in pdf's and if so wh

  • Cannot see my attached doc in file attachment list

    Hi all, I used the code below to attach a doc to a pernr. After attaching a PDF document to pernr 00070845, I goto transaction PA20/PA30 to see the attachment list. However, I cannot manage to see the doc in the attachment list. Idoublle check that t

  • Why does one of my MacBooks show up as an IP address on Airport Utility

    Hi-- This seems tangentially related to a previous query --- or at least it came up as a result of a previous query, but I thought I'd offer the query in a new discussion topic:  In setting up my Airport Extreme (coupled with Express) network, my pri

  • Duplicate documents folders

    I recently switched to a new identity with the help of The Genius Bar, because I had somehow locked myself out of all my documents, applications, etc. He was able to fix this for me, but now I noticed that I have 2 documents folders, one inside the o