Help newbie: in running sample CORBA and EJB

HI,
I am trying to run the samples that come along with the http
server for 8.1.7, all the examples work except for these two,
for the CORBA,I am able to load and publish, and works
perferctly from the client (used runit.bat) but when i try to
run from the web, it gives me a "class hell.Hello not found in
import",
and in EJB,
while i run makeit.bat it gives me an ora error which tells that
i am trying to insert a value too long for oracle, this comes
when trying to use loadjava.
can anybody help me out, any help is appreciated.
Thanks,
dharma

Hi,
If you are building & running EJB applications, please
use Oracle9iAS - OC4J, Oracle Containers for J2EE. It is a
robust, fast and a suggested environment for developing J2EE
based applications. Oracle database JVM should be used only for
deploying Java Stored Procedures. OC4J can be downloaded from OTN
, small footprint, easy to download and install and much easy to
configure. You will know it yourself once you download it.
Cheers
--Rajesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • EJB in WLS - CORBA and EJB on WLE

    I have a client who is looking to attach a C++ client to their WLE
    system, and, since
    they now have WLS and WLE thanks to v. 5.1, they want to start moving
    EJBs to the
    WLS platform. The issue is this.
    What if any are the issues regarding communicating between CORBA objects
    on WLE
    TO EJBs on WLS? I noticed that the illustrations always show the
    communication coming
    from the WLS side to the WLE side, but this client will be connected
    directly to the WLE
    platform, and wanting to access services on WLS.
    Any issues, directions to documentation, or other advice regarding this
    issue?
    Thanks in advance,
    Maffy
    [maffy.vcf]

    can anyone give code example for accessing WLS-EJB from WLE corba client.
    louc wrote:
    Interesting how things can be interpreted. What we need is direct input
    from engineering on this.
    In studying the only direct source of information we have... (the docs...
    and ass-u-me'ing that the docs are correct) it appears that we can have a
    CORBA object in WLE access a EJB in WLS through RMI/IIOP as long as the
    parameter passing is kept to primitive data types. Any attempt to use the
    'Object-by-Value' feature of CORBA 2.3 will result in a error because WLE
    5.1 does not support passing 'Object-by-Value' at this time.
    So to answer Maffy's question... yes a WLE CORBA client can access a WLS EJB
    service through RMI over IIOP.
    -- Lou Caraballo
    Sr. Systems Engineer
    BEA Systems Inc., Denver Telco Group
    719-332-0818 (cell)
    720-528-6073 (denver)
    Robert Patrick <[email protected]> wrote in message
    news:[email protected]...
    The issue is that WLE does not yet support the RMI/IIOP standard (since itdoes not yet support
    Objects by Value) not that the RMI/IIOP support in WLS 5.1 (as of SP3)does not support
    bi-directional communication.
    Papaya Head wrote:
    so, you are saying bi-directional communication is not supported... can
    you tell me what
    rmi/iiop is for?
    Thanks.
    Maffy Finnerty wrote:
    Okay, found a work around thanks to Deepak Sharma (THANK YOU,
    DEEPAK!!) in the BEA
    East office.
    What my customer is going to have to do for now - until, as Will Lyonspointed out, the
    bi-directional
    communication is supported - is to build a Java "client" process onWLE that communicates
    with the
    RMI/EJB/Servlet process on WLS.
    Deepak suggested that the best way, since they are a CORBA shop tryingto move to Java,
    would be to have the C++ client talking to a CORBA/C++ object on WLEthat calls
    a CORBA/Java object on WLE that acts as a client to WLS and accessesthe services of the
    Java object on that server.
    Another option would be to have the CORBA/C++ object on WLE use theJNI API to call a Java
    object
    on WLE that acts as a client to WLS and accesses the Java servicerunning there. There may
    be better
    performance from CORBA/C++ to CORBA/Java, though, so that was Deepak'sfirst choice.
    Maffy
    Papaya Head wrote:
    you can also find an example in the WLS5.1 docs that includes a code
    segment from C++
    client of the RMI-IIOP hello example.
    Will Lyons wrote:
    The example application with C++ CORBA objects calling EJBs on a
    Java Server refers
    to C++ CORBA objects on the WLE T-Engine calling EJBs on the WLET-Engine. That
    interoperability capability is supported, but it is not possibleto call the J-Engine
    from the T-Engine in WLE 5.1. The primary usage model assumed inWLE 5.1 is calling
    the WLE T-Engine from the J-Engine (or from WLS).
    Will
    Papaya Head wrote:
    my understanding of your question is: you want some feature that
    allows CORBA
    objects to talk to EJB objects on WLS.
    WLS5.1 has a new feature: RMI/IIOP, it's probably the featureyou want.
    before WLS5.1, CORBA components couldn't talk to EJB componentsdirectly, but you
    could make it happen by building a bridge from CORBA objects toEJB components on
    WLS. that's probably what the references you read are talkingabout...
    Maffy Finnerty wrote:
    We haven't even gotten that far yet, re: transactions. Right
    now the issue is
    having an
    in-house client (C++) connected to WLE but accessing services(EJBs) on WLS.
    No talk
    of transactions has occurred, yet.
    However, I just found some conflicting information. I found areference to
    building the
    simpapp application to connect C++ objects on a CORBA serverto EJBs on a Java
    Server,
    which, if I'm reading it correctly, translates to WLE to WLS.However, I also
    found a
    reference to bidirectional interoperability that said that,for now, the
    T-Engine could not
    (WLE) could NOT invoke services on the J-Engine (WLS) but thatservices on the
    T-Engine
    (WLE) could BE invoked from requesters on the J-Engine (WLS).So, color me
    confused.
    maffy
    Papaya Head wrote:
    the first question that comes to my mind is:
    can transaction run across components on WLE and components
    on WLS? I don't
    think it can...
    Maffy Finnerty wrote:
    I have a client who is looking to attach a C++ client to
    their WLE
    system, and, since
    they now have WLS and WLE thanks to v. 5.1, they want tostart moving
    EJBs to the
    WLS platform. The issue is this.
    What if any are the issues regarding communicating betweenCORBA objects
    on WLE
    TO EJBs on WLS? I noticed that the illustrations alwaysshow the
    communication coming
    from the WLS side to the WLE side, but this client will beconnected
    directly to the WLE
    platform, and wanting to access services on WLS.
    Any issues, directions to documentation, or other adviceregarding this
    issue?
    Thanks in advance,
    Maffy

  • Poor perfomance CORBA and EJB in Oracle 8i

    Here are the perfomance results of methods invocations
    (1000 invocations of empty method in an loop)
    Oracle 8i CORBA ~100ms per method
    Oracle 8i EJB ~100ms per method
    Jonas EJB server ~5ms per method
    Java RMI ~3ms per method
    Why Oracle 8i is so slow, even compared with noncommercial
    EJB server Jonas? Is there any way to speed this up? Source codes of perfomance testing programs available upon request.

    Oracle Jserver is quite fast and scalable. Nevertheless, there exists an important overhead in calling a CORBA or EJB method, so you should desing "heavy" functions in your EJB/CORBA objects. Instead of calling 10 times little methods, call one time a hevay one, and you'll find that JServer perforns very fast and reliably.
    Best regards

  • Need help if you run Windows 7 and McAfee

    As I posted to other thread, I was not able to do auto-updating of CS5 since CS5 was installed.  The problem seems to be related to firewall settings.
    I am running windows 7 and McAfee Security Center.   I turned off Firwall from McAfee.  But I am getting the same error.
    As shown in the top figure, it show Firewall was turned off by McAfee (see red arrows).
    When I opened windows firewall, it described that these settings are managed by McAfee (see below).
    What I see is that Under domain Profile, windows firewall is off (red arrow).  But Firewall in both  private and public profiles are on (see blue arrows in the above figure).
    What I want is to turn off McAfee firewall in order to perform CS5 autoupdating.
    Could someone help me with my problem?  
    Hummer

    What exactly is a firewall:
    at its basic level, a firewall is a barrior that is designed to keep threats out.
    Some firewalls do a better job then others but ultimately its the "people" behind the firewall that is responsable for security.
    Many firewalls have both incoming and outgoing rules to help keep PC's safe.
    McAfee intigrates into the operating system, thats why it changes the windows firewall rules and why you see the windows firewall is no longer manageable by normal means. it may even hook in a use portions of the windows firewall and expends windows built in security from that point.
    Before you attempt to uninstall it, I highly recommend you put everything back to its normal running state, then after uninstalling from add remove programs also use their removal tool to insure all registry enteries are also removed. This "should" put everything back to factory default settings for windows firewall rules.
    http://service.mcafee.com/FAQDocument.aspx?id=TS100507
    I am of the opinion that McAfee, in its quest to secure its "customers", customers PC's with the least amont of end user interaction, it became blind to the fact that sometimes you need to reset everything back to factory default and simply start over, It may even be there but its not easly found or wasn't last i used it. Even their virus scanner is difficult to disarm once activated. They hook into many aspects of the operating system in an effort to keep you safe weather you like it or not.
    An old saying comes to mind, Freedom comes with a Price.
    I'll not say McAfee software is bad, I think they lost touch with the end user is all, They are more interested in the dollar then the end user. The ISP's line their pockets and are their real customers, you didn't really think the software was free did you? What the big ISP's want in there for security is what they tend to put in there. Almost all ISP's in the states provide free McAfee or Nortons security with their service plans and every new PC has either one in there "free"
    I would personally try to uninstall McAfee completly, if that fixes the issue you can always put it back if you choose or some other security suite.

  • Want to run servlets, jsp and ejb

    Hi there, I have just installed Oracle9iAS on my PC and want to check how to use OAS with servlets, JSPs and ejbs, so can any one tell me where can I find some worked examples and step by step deployment process, any help would be appreciated, regards, Shabbier

    If you have installed Oracle9iAS, you should be able to get to the welcome page at
    http://<machine_name>:7778/
    You can see J2EE demos off that page.
    Also, you can find info about oracle9iAS and documentation
    at http://otn.oracle.com/products/ias/content.html
    OC4J info can be found at
    http://otn.oracle.com/tech/java/oc4j
    -Prasad

  • CORBA and EJB

    Hi, I have problems when I make a Corba bind from an EJB session stateless : Corba object not found.
    The object is found when I make a Corba bind from a java class and not from an EJB.
    I use JDK 1.2, JBuilder 1.4 to develope EJB and Corba aplication and Weblogic 6.1 to deploy EJB.
    If it isn't possible to make this, con you suggest another solution ?
    Regards

    Add this to ur code before initializing the ORB
    System.setProperty("org.omg.CORBA.ORBClass", <ORBClass name here>) ; System.setProperty("org.omg.CORBA.ORBSingletonClass",<ORBSingletonClass name here>) ;
    System.setProperty("ORBdomain_name", <ORBdomain_name here>)

  • Please help how to run System commands and batch files thru java program

    Sir,
    I want execute OS commands like dir,cls..etc and batch files,.exe filesthru java program.
    I have tried it sofar thru Runtime.getRuntime().exec("execute.bat");
    but it is not working.anybody knows about how to run the system commands thru java please give me the code.
    thank you,
    regards,
    j.mouli

    I've seen other posts with this questions, and answers. Unfortunately I didn't pay much attention. But the basic idea is to exec command.com and pass the specifc batch or command as an argument.

  • Help with Logic Set Up - Loops and samples

    Hi all
    I am a new Logic user so apologies if this question is very newbie...
    I am just installing and setting up my program. I installed the full Logic with all the included sample content on my boot drive. Subsequently I bought a drive that I want to be a dedicated drive for sample libraries.
    My question is, how do I locate all the sample content and Apple Jam Pack content that Logic has already installed in order to move it to the new drive, and how do I make Logic aware of the new location of the libraries?
    If it weren't an eight hour install, I might just run the installer again, but hoping there would be an easier way.
    Thanks!!
    Message was edited by: V Silly

    There is no need to uncheck remote and testing. Previewing locally should work exactly the same as it did in CS3.
    Are you using a server-side language? If so, expand the Files panel by clicking this icon:
    Then make sure that the Testing Server icon is selected.

  • Every time I open iMovie, the program doesn't respond. The Wheel comes up and I have to force quit. Can anyone help me figure this out so I can work on projects? if it helps, I'm running OS 10.5.8

    Hi, My iMovie program stops responding upon opening.  I can't figure it out.  I haven't really used it in the past but I would like to start.  My Mac is one of those aluminum Macbooks that look like a macbook pro and were on the market for a little bit.  I'm running OS 10.5.8 and its on the most recent update for the operating system.  I don't know how to correct the glitch. Any help would be great! Thanks
    -E

    OK, you have iMovie 08, which is also known is iMovie Version 7.1.4. It has been a few years since i used this version, so this is based on memory.
    The only components you must have in the Library/QuickTime folder are the AppleIntermediateCodec.component and the AppleMPEG2Codec.component.
    All the others could potentially be causing problems. I would drag the DivX components, the Flip4Mac components, and the Google Camera components to the Desktop temporarily, so nothing is left in this folder except the two Apple components.
    Then restart your Mac and start iMovie. If it works, yay!
    If you still need these other components for some other app, you can probably get updated DivX components for free at Perian.org.
    You can get updated Flip4Mac components by running WMV Player and updating. It should prompt you to update automatically.
    I am not sure about the Google components, but if you are running something that needs them, it should prompt you to install the current versions.
    If none of that works, post back.

  • On my macbook pro I have a message on my homepage telling me that certain items want to use my keychain. I've pressed cancel the message will not go. The mac is now running very slow and iphoto and safari are not working. Can anyone help?

    On my macbook pro I have a message on my homepage telling me that certain items want to use my keychain. I've pressed cancel the message will not go. The mac is now running very slow and iphoto and safari are not working. Can anyone help?

    What version of Mac OS X?
    What home page?
    What browser?

  • Help!!!!! I need to get iphoto lib off of hd which is running really slowly, and clicks rather more loudly than usual, how do i do this, im even on my iphone asking this!

    Help!!!!! I need to get iphoto lib off of hd which is running really slowly, and clicks rather more loudly than usual, how do i do this, im even on my iphone asking this! Computer also runs inly marginally faster in safe boot mode! Could the apple store help?

    It certainly sounds like your harddrive is dying.  I would Immediately backup your harddrive to an external USB or Firewire harddrive Before doing anything else.  It just may save your data in time before you lose it all.
    Hope this helps

  • My 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help.

    my 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help. What can I do?

    Under CPU: 3.5% user; 5% system; 91% idle; 441 threads; 90 processes.
    Under System: out of 2GB - 54.7MB free; 530MB wired; 603MB active; 862MB inactive; 1.95GB used.
    Is too much of the system memory tied up? If so, what can I do to free some up?

  • I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help

    TS1368 I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help.

    Hello alankilner,
    And welcome to Apple Discussions!
    Using Proxy: Yes
    Try temporarily disabling this setting by following the steps outlined in this Apple support document.
    http://support.apple.com/kb/TS1490
    B-rock

  • Need to seperate data aray into samples of 100 at a time to run through kurtosis and plot

    Hello,
    I am trying to build a vi that will take in a file and build an array (this part done) from it. from the array, I need to take samples of 100 and run kurtosis on and build an array of results for entire data set and possibly plot kurtosis values. any ideas? I have attached what i have so far. I keep getting errors for the kurtosis VI, not sure what the problem is.
    Thanks,
    Attachments:
    TqKurtosis Test Version.vi ‏15 KB

    Your program does not make a lot of sense. Why use a while loop that chops through your data in nanoseconds (=way before you have a chance to press the stop button!) and runs out of data equally quickly, leaving you nothing at the output tunnel. Why is your kurtosis indicator EXT datatype???
    The number of segments is exactly known, so the loop must stop after a known number of iterations. Since the number of iterations is size/100 (possibly rounded up), you need a FOR loop, or even easier, reshape the 1D array to a 2D array where each row is size 100 (see attached).
    Now simply loop through your segments and built an array of results at the output tunnel.
    Here's a quick draft example (LV 9.0), modify as needed. Since you did not include the subVIs, I skipped them and faked some data instead. I added some extra graphs for troubleshooting. Delete them once you are happy with the code.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    TqKurtosis Test VersionMOD.vi ‏21 KB

  • I recently spilled liquid on my computer, but it is up and running, it loads and brings me to the safe boot screen where I need to type my password, but It is not recognizing it, help! How do I get passed it or fix it!

    I recently spilled liquid on my computer, but it is up and running, it loads and brings me to the safe boot screen where I need to type my password, but It is not recognizing it, help! How do I get passed it or fix it! I have tried holding the apple key and "s" and then type in the code to reset the password, but my keyboard is not letting me use the numbers or any keys that are accessed by holding shift! Please help me get passed this screen

    Fluids and electronics do not mix.
    You have caused some serious damage to parts of your computer, and likely voided the warranty until Apple completes a repair and re-certifies it.
    Step one is to turn it off and do NOT (did I say do NOT yet?) turn it on again yourself.
    Take it to an Apple store and be prepared for a large repair bill.
    Sorry, but that is the truth.

Maybe you are looking for

  • 7.1, 6.1, 5.1, 2.1 whats the differan

    OK i have a 400 watt sony stereo and it has a left and a right input. I have it plugged in the back of my sb audigy 2 zs sound card on the third jack. My stereo has 2 side speakers and a subwoofer. Now what happens when i go into the creative audio c

  • Can't create a DVD project in imovie

    Each time I try to create an imovie while I'm in imovie, it tells me that it must have idvd 4 or above. I have idvd 5. I've reinstalled my software but it keep doing the same thing. Can anyone help me on this? The movie's are finished in imovie, I ju

  • Prefrences for Mail has limited options

    i want to change my font style and size for all outgoing e-mail. In mail help it says go to prefrences. But in my mail prefrences I only ahve the ability to add accounts, then mailbox behaviors which is send, delete, trash etc. and advanced ahs more

  • Passwords in Finder

    Hi, A few days ago, I must have enabled something that I didn't mean to. All of a sudden, I am now getting password requests when I am moving things into the trash, moving in and out of folders, etc... I have looked under Finder prefs and system pref

  • Elements 9 and Premiere Elements 9 Installation Q

    I just got a new computer and when I installed my Premiere Elements 9 I noticed I have both Elements 9 and Premiere 9 installed,( my pictures are going to both versions) Should I uninstall the Elements 9 version? thanks