Initial problems trying work with the Beta

          1) I thought that with a property such as ipNode, then the app
          server would be calling setIpNode/getIpNode, like JavaBeans
          and the way that the Sun RI is implemented, but WLS doesn't
          change the names when calling the getter/setter methods. Is this
          the way the final version is to be implemented?
          2) I have seen the comments on a CCI RA and the way suggested to
          make it work, was to use javax.resource.cci.ConnectionFactory in the resource-ref,
          but I get the following exception when I
          attempt to do that. I have also tried to just used
          javax.sql.DataSource and cast the result like I was forced to do
          with the Early RI from Sun but that causes Marshalling
          exceptions. How can I test this with a ConnectionFactory being
          returned?
          weblogic.xml.process.SAXValidationException: .ejb-jar.enterprise-beans.session.resource-ref.res-type.
          must be one of the values: javax.sql.DataSource,javax.jms.QueueConnectionFactory,javax.jms.TopicConnectionFactory,java.net.URL,javax.mail.Session
          at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.__post_84
          (EjbJarLoader_EJB11.java:4144)
          at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.postProc
          (EjbJarLoader_EJB11.java, Compiled Code)
          at weblogic.xml.process.ProcessorDriver.postProc
          (ProcessorDriver.java, Compiled Code)
          at weblogic.xml.process.ProcessorDriver.endElement
          (ProcessorDriver.java:87)
          at weblogic.apache.xerces.parsers.SAXParser.endElement
          (SAXParser.java:1387)
          at
          Weblogic.apache.xerces.validators.common.XMLValidator.callEndElem
          ent(XMLValidator.java:1002)
          at Weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispat
          cher.dispatch(XMLDocumentScanner.java, Compiled Code)
          at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSomeXML
          DocumentScanner.java, Compiled Code)
          at weblogic.apache.xerces.framework.XMLParser.parse
          (XMLParser.java:900)
          at weblogic.xml.process.ProcessorDriver.process(ProcessorDriver.java:128)
          at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.process(EjbJarLoader_EJB11.java:527)
          at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:74)
          at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
          at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:38)
          at weblogic.ejbc20.runBody(ejbc20.java, Compiled Code)
          at weblogic.utils.compiler.Tool.run(Tool.java:81)
          at weblogic.ejbc.main(ejbc.java:20)
          

          Try it out with EJB2.0 bean. EJB1.1 doesn't support the use of
          javax.resource.cci.ConnectionFactory as its resource-env-type.
          prasen
          Eric Hardesty wrote:
          >
          > 1) What I meant to say is that a property of ipNode gets called by the Sun RI
          > as setIpNode/getIpNode, but WLS calls setipNode/getipNode, no capital letter
          > for the first letter.
          >
          > 2) Here is the ejbc call and I have the weblogic60J2eeConnector.jar in the path
          > but still get the problem with resource-ref.res-type.
          >
          > D:\Testing\WLS\Stateless\Trader>java -classpath d:\BullConnector\BullConnectorNo
          > Tx.jar;d:\BullConnector\TracePackage.jar;d:\bea\wlserver6.0\lib\connector.jar;d:
          > \bea\wlserver6.0\lib\weblogic60J2eeConnector.jar;d:\bea\wlserver6.0\lib\weblogic
          > _sp.jar;d:\bea\wlserver6.0\lib\weblogic.jar weblogic.ejbc -compiler javac build\
          > std_ejb_basic_statelessSession.jar \ejb_basic_statelessSession.jar
          > weblogic.xml.process.SAXValidationException: .ejb-jar.enterprise-beans.session.r
          > esource-ref.res-type. must be one of the values: javax.sql.DataSource,javax.jms.
          > QueueConnectionFactory,javax.jms.TopicConnectionFactory,java.net.URL,javax.mail.
          > Session
          >
          > I'll post the marshalling exception when I can get back to the point of
          > reproducing it.
          >
          > Thanks,
          > Eric
          > prasen <[email protected]> wrote:
          > >Eric,
          > >
          > >WLS does support setting of configProperties as long as as you define
          > >them in your ejb-jar.xml file(through config-property element) and have
          > >
          > >defined the corresponding setter method in ManagedConnectionFactory. But
          > >the current limitation is that it only supports config-type of
          > >java.lang.String.
          > >
          > >Can you post the stackTrace of the unmarshalling exception you are
          > >getting?
          > >
          > >Before running weblogic.ejbc make sure that weblogic60J2eeConnector.jar
          > >exists in your classpath before weblogic.jar.
          > >It looks to me that your classpath points to the old weblogic.jar.
          > >
          > >regards,
          > >prasen
          > >
          > >Eric Hardesty wrote:
          > >>
          > >> 1) I thought that with a property such as ipNode, then the app
          > >> server would be calling setIpNode/getIpNode, like JavaBeans
          > >> and the way that the Sun RI is implemented, but WLS doesn't
          > >> change the names when calling the getter/setter methods. Is this
          > >> the way the final version is to be implemented?
          > >>
          > >> 2) I have seen the comments on a CCI RA and the way suggested to
          > >> make it work, was to use javax.resource.cci.ConnectionFactory in the resource-ref,
          > >> but I get the following exception when I
          > >> attempt to do that. I have also tried to just used
          > >> javax.sql.DataSource and cast the result like I was forced to do
          > >> with the Early RI from Sun but that causes Marshalling
          > >> exceptions. How can I test this with a ConnectionFactory being
          > >> returned?
          > >>
          > >> weblogic.xml.process.SAXValidationException: .ejb-jar.enterprise-beans.session.resource-ref.res-type.
          > >> must be one of the values: javax.sql.DataSource,javax.jms.QueueConnectionFactory,javax.jms.TopicConnectionFactory,java.net.URL,javax.mail.Session
          > >> at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.__post_84
          > >> (EjbJarLoader_EJB11.java:4144)
          > >> at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.postProc
          > >> (EjbJarLoader_EJB11.java, Compiled Code)
          > >> at weblogic.xml.process.ProcessorDriver.postProc
          > >> (ProcessorDriver.java, Compiled Code)
          > >> at weblogic.xml.process.ProcessorDriver.endElement
          > >> (ProcessorDriver.java:87)
          > >> at weblogic.apache.xerces.parsers.SAXParser.endElement
          > >> (SAXParser.java:1387)
          > >> at
          > >> Weblogic.apache.xerces.validators.common.XMLValidator.callEndElem
          > >> ent(XMLValidator.java:1002)
          > >> at Weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispat
          > >> cher.dispatch(XMLDocumentScanner.java, Compiled Code)
          > >> at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSomeXML
          > >> DocumentScanner.java, Compiled Code)
          > >> at weblogic.apache.xerces.framework.XMLParser.parse
          > >> (XMLParser.java:900)
          > >> at weblogic.xml.process.ProcessorDriver.process(ProcessorDriver.java:128)
          > >> at weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.process(EjbJarLoader_EJB11.java:527)
          > >> at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:74)
          > >> at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
          > >> at weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:38)
          > >> at weblogic.ejbc20.runBody(ejbc20.java, Compiled Code)
          > >> at weblogic.utils.compiler.Tool.run(Tool.java:81)
          > >> at weblogic.ejbc.main(ejbc.java:20)
          

Similar Messages

  • Nexus 1000V. problem when working with the console VMWare

    I have a problem when working with the console VMWare.
    Sometimes it is impossible to connect any of the hypervisor to the guest OS managed by them.
    I get the message: "Unable connect to the MKS: Host address lookup for server <name of the hypervisor> failed: No such host is known."
    This message always appears in conjunction with the reconfiguration of virtual switch: "Reconfigure vNetwork Distributed Switch .... Initiated by Cisco_Nexus_1000V_ ....."
    Upon completion of the reconfiguration, Communication console, with guest OS is restored, or on its own or after a reboot srv-vc.
    In this time, I do not see any message in Nexus 1000v log.
    What is this?
    Thanks in advance.

    Smells of a DNS issue.  Are you sure your ESX hosts are reachable from your client via DNS hostname?  Try pinging them from a command prompt/terminal.  You may have DNS server issues.
    As a temp fix, edit your [windowspath]/system32/etc/drivers/hosts file and manually add the ESX host name and IP, then re-test.
    Regards,
    Robert

  • I have tried VERY unsuccessfully to install iphoto 9.2.3 update...it says it has successfully updated - then on opening says: iPhoto cannot be opened because of a problem. Check with the developer to make sure iPhoto works with this version of Mac OS X.

    I have tried VERY unsuccessfully to install the new iphoto 9.2.3 update.
    I have installed it several times both from the appstore and from Apple Support downloads...it says it has 'successfully updated' - then on opening iphoto, a dialogue box pops up and says:
    iPhoto cannot be opened because of a problem.
    Check with the developer to make sure iPhoto works with this version of Mac OS X. You may need to reinstall the application. Be sure to install any available updates for the application and Mac OS X.
    Click Report to see more detailed information and send a report to Apple.
    Insane...I have all my updates including Lion 10.7.3 why does APPLE KEEP SENDING BETAS AS A REAL PRODUCT?
    Does anyone know how to copy over a backup from a twinned drive Backup? What files etc.
    Thanks tons...

    Thanks Terence,
    I did get it working finally...and your last advice was what I needed.
    I am embarassed that I was an early adopter...SHOULD HAVE KNOWN BETTER and read the problems before creating some for myself.
    This was an excercise in frustration, because of the obtuse division between the appstore and Apple Support downloads... it was a bit of a circuitous route...strange that with all the security reciepts and tracking that Apple goes to to prevent piracy... which Steve by his own admission used to build Apple...
    Why aren't the server scripts smart enough to say…”HEY DUMMY you can't use this download because you purchased the last iPhoto upgrade from the appstore...and… DON'T WASTE YOUR TIME and precious data BUDGET downloading this gargantuan file which will eat 20% of your expensive 5Gb monthly data allotment!!!…and NOT WORK…only pretend to…and then foul your system….kill your productivity and turn your hair whiter…even worse than LION did.
    I am just so antagonized by the inept scripts in recent installations that don't do a diagnostic before allowing installation that is going to corrupt things...I had less effort and frustration when I ran my ATARI with a MAC emulator...rarely lost any productivity to nonsense.
    I AM TIRED OF BETAs dressed as products...designed and rushed out for Apple toys that once were tools of the creative trade...COREL...may still have a chance at a comeback if Apple keeps pumping out toys instead of the venerable tools we once adored as income enhancers.

  • My iPhone 5 doesn't send any text messages or i messages and the problem isn't with the sim card as i tried it with another iPhone 5 and it worked fine.

    my iPhone 5 doesn't send any text messages or i messages and the problem isn't with the sim card as i tried it with another iPhone 5 and it worked fine.

    OK. Thanks for sharing.
    Have a nice day.

  • Working with Uncompressed Beta in the Timeline

    I am trying to figure out how to work with uncompressed Beta footage in FCP 5. I have tried changing my timeline settings to the format that my footage was digitized (8 bit Uncompressed) but FCP still drops frames. The only other thing I have been able to do is render the footage in a standard timeline, but everytime I make a cut I have to render again. Is there a solution?

    An ethernet workflow (sharing media over a LAN) even with gigabit is really only semi-doable. I've done it on DV projects, as have others here, but the problem is consistency of delivery, even under DV conditions, I sometimes got dropped frames.
    If you're doing uncompressed 8 bit, you can do that off a single internal SATA drive, 10 bit would require a controller and softraiding (that's the route I went).
    But I'd definitely say that your problem with dropped frames is most likely the result of accessing high bandwidth requirement media over an ethernet connection.
    Finally - how are you displaying this timeline? Surely not firewire, so do you have a display/capture card like Kona/Decklink/Etc?
    Patrick

  • HT1369 I am being told i-tunes has detected a problem with your audi configuration. Audio/Video playback may not operate properly". I HAVE CHECKED THAT  MY INTEGRATED AMPLIFIER IS WORKING WITH THE LEAD THAT HAS ALWAYS WORKED FROM THE COMPUTER.What should

    I am not having any trouble with my i-pod which I can continue to connect to the computer to update. However when I get into the listen to the music on the computer I am unable to hear anything. This is also true for Spotify, and my own cd's inserted in the computer and i-player. I have connected an old Sony Discman to my amplifier and it works perfectly, so I know that the problem is not with the amplifier or the lead so it must be the computer audio.
    My computer is a COMPAQ CQ 1140UK SLIMLINE DESKTOP PC.
    I need to stress that I am a 65 year old non tech user. I use my computer a lot but have no idea how it works!! .
    I believe that in my efforts to resolve this issue myself by going into the control panel .....I may have caused even mor problems.
    At first, today, I could see that the track was playing, CURSOR MOVING ACROSS THE TRACK LINE, but I was getting no sound....now the tracks don't even seem to be playing at all!!
    I remember, afew days ago seeing something flash up on Spotify about how it was going to do something with my i-tunes but it stated that it was nothing to worry about!   So I didn't, until today!!
    I only used Spotify to locate a track before I purchased it through i-tunes.
    If anybody could advise me of what I could do to resolve this problem then I'd be most grateful.
    This is my first time on this Apple Support Community so I hope that I am right in thinking that any response will arrive in my e-mail.
    Thanks again
    grahamholly

    It might be worth trying a dxdiag to see if that finds anything amiss, michael.
    Go Start > Run. In your Run, type dxdiag and hit enter.
    Work through the troubleshooting tabs. Does dxdiag report any problems?

  • Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine, tried solutions from other threads with no luck, just thought i'd see if anyone else had any ideas, thanks.

    Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine so the problem seems confined to Windows 7. I've tried solutions from other threads -
    Making sure everything is allowed through firewall
    Rebooting phone/laptop/router
    Disabling ipv6
    Disabling all networks except the one curently on
    Re-installing iTunes
    Restoring iPhone
    No luck with any of those unfortunately so i just thought i'd see if anyone else is still without wifi sync after trying those as well and if you ever found a fix, thanks.

    I just wanted to leave a note that it's working now. I'm not sure if it was the latest iTunes update that got it working or that i decided to start a new library instead of using the one i had backed up on Windows 8 (it didn't occur to me to check using the old library when i re-installed iTunes). But if anyone is having this problem, it might be worth trying again with a new installation of iTunes to see if the latest update works for you, and if not, try using a fresh library instead of a backup (by fresh library i mean discard your old library completely and start a new library, not just restore as new iPhone, a whole new library).

  • Hi there, I cannot open bridge and I get this warning, "Adobe Bridge Cannot be Opened because of a problem. Check with the developer to make sure Adobe Bridge CC works with this version of Mac OS X. You may need to reinstall any updates for this applicati

    Hi there, I cannot open bridge and I get this warning, "Adobe Bridge Cannot be Opened because of a problem. Check with the developer to make sure Adobe Bridge CC works with this version of Mac OS X. You may need to reinstall any updates for this application and Mac OS X" although bridge has been running on my Mac for over a yera. I have installed all current updates for Mac and reinstalled Bridge again from CC and still get the same issue? Any advice?

    Would you please provide details about your setup?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I am unable to print to the Lightning PDF software (by Avanquest Software) after updating to 6.02. It worked with the previous version of Firefox. Is there a patch or fix for this problem?

    I am unable to print to the Lightning PDF software (by Avanquest Software) after updating to 6.02. It worked with the previous version of Firefox. Is there a patch or fix for this problem?
    This is the error that is received:
    Cannot open file "C:\Users\Calandra\AppData\Local\Temp\Ask_a_Question__Firefox_Help.pdf". The process cannot access the file because it is being used by another process
    Any information that you can provide will be greatly appreciated.

    Sorry to say that, but the entire system seems ill-designed.
    If I understand correctly, then to add a new Section to a site, you have to subclass SubSection and somewhow integrate that into the system?
    I would be my expectation that you only need to subclass SubSection when you tried to introduce a new type of SubSection.
    The title & all other natural language Strings should never be hardcoded in Java code, but rather taken from some external storage (Database, XML, flat files, ...).

  • Hello, I've updated the iPhone I have got I have a problem I hope you respond to some of the applications no longer work, such as the safari and skype and many applications are no longer working with the ios7.0.4

    Hello, I've updated the iPhone I have got I have a problem I hope you respond to some of the applications no longer work, such as the safari and skype and many applications are no longer working with the ios7.0.4

    Standard troubleshooting...
    1. Try a Restart by pressing the sleep/lock button until you see the slider.  Slide to power off.  Restart by pressing the sleep/lock button until you see the Apple logo.
    2. Try a Reset by pressing the home and sleep buttons until you see the Apple logo. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    3. Remove apps from Recently Used (multi-tasking) list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Swipe up on the app preview card to remove it from the list
    - Press the home button when done.
    4. If still a problem restore with your backup.
    5. If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    6. If still a problem, it's likely a hardware issue.

  • I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????

    I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????  Help

    Return it.
    The requirements are on the box and on the website:
    Mac system requirements
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.1 or later (free download fromwww.itunes.com/download)
    iTunes Store account
    Internet access
    http://www.apple.com/iphone/specs.html

  • Does  Mavericks have the problem fixed with working with the Dell UltraSharp U3014 30 inch monitor?

    Does  Mavericks have the problem fixed with working with the Dell UltraSharp U3014 30 inch monitor?

    I have this (or a similar) issue and I did notice something interesting. After I boot into Windows via Bootcamp (where I have the U3014 specfic driver installed) and then reboot into MacOS X (Mavericks) the monitor works flawlessly.
    I would hazard a guess that this means bootcamp is retaining the driver used in Windows. Kind of the reverse of the TB GBE adapter driver issue.
    To explain my issue for anyone else: the monitor flicks on and off as if the connection was poor. Connecting via HDMI. Connection is fine and as stated, everything works fine in Bootcamp.

  • Has anyone had problems with the latest driver update for the Lexmark printers? My Lexmark printers won't work with the latest driver update.

    Has anyone had problems with the latest Lexmark printer driver update? My Lexmark printers won't work with the latest driver update. If I reinstall an older version of the drivers, they work.

    Mine crashed once with new update, but working fine.
    I had to delete old printer, restart iMac, and then reinstall
    new drivers to get it to work. Would not complete without
    the restart after deleting non-working printer. No problems
    since and all features working.

  • Trying to collect rewards from a survey site. told problem may be with the browser. I don't know what to do.

    trying to collect rewards from a survey site. told problem may be with the browser. I don't know what to do.

    Hi,
    Please [https://support.mozilla.org/en-US/questions/911441 see this.] You may also want to check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]

  • Mistakenly opened all the folders in my library of music and the Finder stopped working. Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing they reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

Maybe you are looking for

  • Staging Area - Sans Transformations?

    I am struggling to come up with a proper term for a database that will contain untransformed application data.  This would be an EL process what will pull application data from the source, and insert it into the "staging" area.  A subsequent job will

  • Broadband/Wifi issues

    I'm of the older generation and struggling. My router (BT Home Hub 8) was in the study close to my pc and plugged into an extension socket. The phonewire ran round the room for 5 metres to a filter with phone and router connections, and that in turn

  • WANT TO CONVERT LEGACY EMPLOYEES WITH VARIOUS USER_PERSON_TYPES TO CWK TYPE

    The implementation began BEFORE the introduction of CWK (Contingent Worker)as a SYSTEM_PERSON_TYPE. As such, contractors were given a variety of USER_PERSON_TYPES, all logicaly linked to SYSTEM_PERSON_TYPE = EMP. As part of the upgrade to Rel 12, we

  • Acrobat OCR - differences between Searchable Image and CleanScan

    Look at these differences. Both 600dpi Searchable Image http://img72.imageshack.us/img72/8061/acrobat1bh3.gif CleanScan http://img72.imageshack.us/img72/4690/acrobat2uj8.gif CleanScan is very bad in this task. It totally ignores all the parts that ar

  • Replacment Hard Drive from third party vendor for old 3rd gen Ipod

    I have a 3 generation 20gb ipod, and after it`s 10,000 drop the hard drive dies. For several months I seach the net for a company to buy a replacment Hard Drive from. I settle upon "Ipodmechanic.com" for my replacement part becuase, they have a one y