Please help me to develop EJB project on BEA Weblogic Platform 8.1.

Hi fols ! I am Vishal.
I want to develop EJB project using BEA Weblogic Platform 8.1 with Weblogic Server.I wih to know entire procedure to create ,deploy,test EJb using Java application,web application etc.So send me detail tutorial of it on my email id [email protected]
Thank you!

Buy a good book ... that way you will get your development up-to-speed fast.

Similar Messages

  • Developing plug-ins for BEA Weblogic Studio

    Can anyone provide pointers on documentation on developing plug-ins for BEA Weblogic Studio (e.g like this one https://beajunitplugin.projects.dev2dev.bea.com/ )
    Regards,
    -N

    film leaders clips can be downloaded online if you dig around a bit ... Peter Wiggins has a nice Motion Template clock he offers for free (which is a bargain by anyones reckoning)
    easy enough to create your own film leader style countdown with a few back to back text generators separated by clock wipe transitions
    color bars can already found in your fcp video generators bin
    color bars and a film leader style countdown can also be auto generated during output (print to video and edit to tape)
    distort faces and license plate like they do on tv? ... ok i give up, what do you mean? if you mean you want to disguise them (Mosaic, Blur etc) then you can have a bash with my Region Blur plugin
    Message was edited by: Andy Mees

  • Using swing to develop EJB project

    Hi, Folks
    I am using jbuilder7 to develop swing connect to ejb project, one requirement is that i should doing control with the editable table. That requirement make me to tied with JBuilder component JDBTable. However the development time would become remarkable long. does anybody have experience of using fancy swing and EJB in the same project?
    thansk in advance.

    forget to tell you I am using JDBTable already. the problem is that how
    could i serlize the dataset to EJB in a easy way? ok, you don't need to serialize your dataset to trasmit to server side. Class com.borland.dx.dataset.DataSetData implements Serializable interface already, so you can send your dataset to server and do not care about serialization. But what to do with this DataSet on server side is very interesting question ;). As for me, it's not very handly to pull out your data from Dataset on server side (DataSet "looks" like client-side class). But, of course, it's up to you.
    unfortunlly I should doing add, delete, edit from my table. So its
    pretty complex to deal with this sort of issue.Why complex? I don't think so. For example, you may set 2 buttons: "Set" and "Delete" under your Jtable view and just "to fish" data client entered in your Jtable string, pack this data in your own serializable model and send this data to server session facade. As for me that's very handly and fast. And there is no complexity...
    Regards.

  • Please help me to develop a shopping cart in java

    I want to develop a simple shopping cart application where a particulart owner can add the items, and the user have to select the item code and the quantity he needs. These are the things i need.
    Implement a shopping cart with following features.
    1. Create items with required attributes.
    2. Define shopping cart parameters
    3. define stock values
    4. Create an order
    5. add to cart
    6. Copy cart
    7. remove item from cart
    8. Check out
    9. Print history.
    i'm so cunfused. Please help me.

    /* This program will add the product code,name,and the price of the items
    import java.io.*;
    import java.util.*;
    public class AddingItems
         public String code,name;
         public static float price;
         LinkedList olist=null;
         public AddingItems(String code,String name,float price)
         this.code=code;
         this.name=name;
         this.price=price;
         public Object getUserInput()
         System.out.println();
         GetInput gi=new GetInput();
         int number=gi.getInteger(" Enter the number of items you want to add to the system : ");
         System.out.println();
         System.out.println();
         olist=new LinkedList(); //declaring the array length according to the user input
              for(int i=0;i<number;i++)
                   System.out.println(" **** Enter The Product Details *** ");
                   System.out.println();
                   GetInput gicode=new GetInput();
                   code=gicode.getString("\t Enter the product code : ");
                   GetInput giname=new GetInput();
                   name=giname.getString("\t Enter the name of the product :");
                   GetInput giprice=new GetInput();
                   price=giprice.getInteger("\t Enter the product price in Rs. :");
                   // creating an object of the AddingItems class
                   AddingItems items=new AddingItems(code,name,price);
                   // the value input from the user to the system is now assigned to the array created with the length given by the user
                   olist.add(items);
              return olist;
              public void display()
              System.out.println();
              System.out.println("\t\t\t*** These are the products in the system **** ");
              System.out.println();
              System.out.println("\t\t\t Product Code \t\t\t Product Name \t\t\t Price in Rs.");
              System.out.println();
              for(int i=0;i<olist.size();i++)
              AddingItems items=(AddingItems)olist.get(i);
              System.out.println("\t\t\t "+items.code+"\t\t\t\t "+items.name+"\t\t\t\t "+items.price);
              System.out.println();
              /*public void addItemsToCart()
              System.out.println();
              GetInput input=new GetInput();
              System.out.println();
              String selection=input.getString("Do you want to continue adding the products to your shopping cart ? [y]es,[N]o : ");
              System.out.println();
              switch(selection.charAt(0))
                   case 'y':
                   case 'Y':
                   System.out.println();
                   System.out.println("Enter the products and the quantities you want to add to your shopping cart :");
                   System.out.println("........................................................................... ");
                   LinkedList myList=null;
                   break;
                   case 'n':
                   case 'N':
                   System.out.println();
                   String message=" You are about to log off from the system: ";
                   System.out.println(message);
                   break;
                   default:
    public static void main(String[] args)
    AddingItems items=new AddingItems("code","name",price);
    //AddingItems[] additems=(AddingItems)items.getUserInput();
    items.getUserInput();
    items.display();
         /*GetInput input=new GetInput();
         System.out.println();
         String selection=input.getString("Do you want to continue adding the products to your shopping cart ? [Y]es,[N]o : ");
         System.out.println();
         switch(selection.charAt(0))
              case 'y':
              case 'Y':
              System.out.println();
              System.out.println(" Enter the code of the product and the quantity you want to add to the shopping cart ");
              String code=null;
              int quantity=0;
              double total=0.0;
              LinkedList myList=new LinkedList();
              GetInput itemc=new GetInput();
              String itemcc=itemc.getString();
              //GetInput list=new GetInput();
              Scanner sc=new Scanner(System.in);
              System.out.println(" .............. Enter the code and the quantity you wamt to add to your shopping cart");
              System.out.println();
              System.out.println();
              //while(sc.equals(item.code))
              Scanner c=nextString();
              //GetInput list=new GetInput();
              //AddingItems items=new AddingItems("code");
              //String listcode=list.getString("Enter the item code :");
              if(listcode==olist.contains(true))
              myList.add(listcode);     
              GetInput list2=new GetInput();
              //int listquantity=list2.getInteger("Enter the quantity :");
              //myList.add(listquantity);     
              System.out.println("Do you want to continue ");
              break;
              case 'n':
              case 'N':
              System.out.println();
              String message=" You are about to log off from the system: ";
              System.out.println(message);
              GetInput select=new GetInput();
              System.out.println();
              String need=select.getString("Do you want to proceed ? [o]k ,gnore : ");
              case 'o':
              case 'O':
              System.exit(1);
              break;
         default:
              //GetInput input=new GetInput();
         //code=
    this is i did using the linked list to add the items to the shopping cart but now i'm so stuck that i can't search for the product code where the user adds is there in the list which is added by the owner. pls help

  • PLEASE HELP ME ...Final Project ... How to fill a Listbox on runtime

    Can anyone help out ? Does anyone knows how to fill up a listbox on runtime ...like when you click on refresh F5 on the web browser is there any event called up? when you use a SessionBean binding the listbox to a variable,thats only god for initialization, what can i do to refresh the listbox and keep it up to date?
    PLEASE HELP ME
    regards, DMS

    I believe that you will have to populate the listbox option values by your java prog. You can include a "refresh" button/event to help you achieve this.
    hope this help

  • How to setup and run JSP project in BEA Weblogic

    i am trying to run my JSP project located in c:\project. i am actually running it in Tomcat webserver, this time i wanna test it in bea weblogic server, i have downloaded a version 8.1, before purchasing the software for development use, i wanna know and test first BEA's integrity and use... my question is how can i set up the base document path that i have in tomcat in bea, so i can just point it to such directory and run it directly using port 7001 for bea weblogic server..
    can anybody help me get tru it step-by-step??
    help please...

    Jason Combras napisa?(a):
    how can i set up the base document path that i have in tomcat in bea, so i can just point it to such directory and run it directly using port 7001 for bea weblogic server..
    can anybody help me get tru it step-by-step??
    help please...Jason,
    Simplest way "in my opinion":
    1. start weblogic Server. You can use Server with examples. This domain
    is already configured, so You will not need any domain configuration tasks.
    2. open weblogic administration console using browser
    http://localhost:7001/console/. Log in.
    3. On the left side choose Deployments -> Web Application Modules
    4. Click "Deploy a new Web Application Module"
    5. Find folder with Your application. Mark it and click Target Module.
    6. Define Application name and click Deploy
    7. If deployed successfully, Your application should be accessible at
    http://localhost:7001/YourApplicationContextRoot
    Best Regards,
    KArol Muszynski

  • Please help with "Error writing the project file. The specified module could not be found." error.

    I am a student.  I've been trying to install and use Visual Studio 2013 Professional for three weeks now and I cannot get it to work.  I am now two weeks behind in my Visual Basic class.  I've installed, uninstalled, ran the repair option... 
    I've tried everything I know how to do.  I just spent 45 minutes on the phone with Microsoft, was transferred four times and finally told I will have to use the forums to find an answer.  I'm almost completely out of patience with this.
    I got the software through the Dream Spark program as a student.  I installed it with the web installer and it appeared to install fine.  When I try to create a new project, I get the error:  "Error writing the project file.  The
    specified module could not be found."
    When I exit the application, I also get:  "The automatically saved settings file 'c:\users\user\documents\visual studio 2013\Settings\CurrentSettings-2015-02-02.vssettings' is not available for write.  You can change this file on the 'Import
    and Export Settings' Tools Options page."
    Please tell me you can help.

    Hi,
    could you please try the points mentioned here:
    http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/0376db8f-4761-4ae5-9af2-98c53216318a#VS_IDE_unexpected_problems to eliminate the possible cause of your issue?
    Please update the result in the forum after you try the method above!
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Please help me with this weird project.

    Dear all:
    I've got this project to make a chm file. The project consists of five child projects, and some topics within the master project itself. (see the first figure below) I didnt do anything to the project, just want to generate it. But after i generate the project and open the generated CHM file. It looks nothing like the TOC in the project. (see the second figure below). The CHM file has a bunch of contents that are not shown in the TOC, and none of the child projects are included.
    As i check those "bunch of contents", they are actually the topics in the master projects under the HTML files folder.
    So can anyone help me with these problems? I'm using RH8.
    p.s.
    1. The project seems like a combination of old version of RH and FM. Outside the folders of robohelp project files, there are some **.fm and **.book files.i'm not sure how they are related to what i need to do with the project.
    2. I open the project in the following weird way:
    a. Extract the rar file of the whole project files. Open the project by double clicking the "**.hhp" file.
    b. By doing this, I got the "**.xpj" file. But the original TOC becomes blank. The "HHC" file is 0kb.
    c. So i re-extract the files, the new HHC file replaces the blank one.
    d. Open the master project by doule clicking "**.hhp" file. And the TOC is shown, as in the figure above.
    Thanks!

    Thanks a lot for your reply.
    To answer your questions:
    1. "I am assuming there was no XPJ otherwise why use the HHP"
    Yes, i only see HHP file. Any consequence by opening the project with this? Well, the consequence so far i see is the blank TOC.
    2. "This was all done previously in RH? "
    I'm not sure and i dont think so. The following softwares are needed for the project before. So can you explain to me anything i have to pay attention to?
    - Adobe FrameMaker 7.0
    - WebWorks Publisher 7.05
    - Microsoft HTML Help Workshop 1.3
    - Adobe Acrobat 4.05 or later
    - Microsoft FrontPage 98 or later
    3. "Maybe you have generated to other folders and not placed copies all in one folder."
    I did what you say, and get the right result.
    One thing that i'm quite curious is that besides the child projects, there are some topics in the parent project that are not shown in the project TOC but in the generated CHM file, like "Apperance" shown in the figure within my first post.

  • Please help-converting 7 to 8 project

    Can you convert a Captivate 7 project to Captivate 8 seamlessly? My videos will not play in Captivate 7 in the HTML browser but work when I tried in in Captivate 8. I''ve built the course in 7 and don't want to ruin anything converting to 8

    So you converted your CP7 project and saved it in 8 and had no issues? I opened my project up in CP8 (not realizing I was in CP8) and it worked flawlessly. My worry is that since I built the project in 7, converting to 8 would cause more issues.

  • Is my drive saying good bye, please help.....project due

    I have 5 Lacie BDextreme 500 externals daisy chained togather. Yesterday number three in line decided to not show up on my desktop and stayed in its blue blinking state. I restarted and everything booted fine.
    Today, same problem. So I restarted and no drive again, the Lacie just stayed in a blue blinking state. I shut down and plugged into the front FW400 and also changed its power cord adaptor and it showed up fine.
    I am now not working out of total fear and have a huge project due.
    My plan is to order a G-Tech 1TB raid and do a transfer friday. I am not thrilled with Lacie of recent and think this may be a sign.
    Any advice? Any thoughts on the G-Tech raid 0.
    Im waiting for the Pro but its not available.

    Michele,
    I don't know what to tell you about the G-raids, I've never used them myself. If you need to get your drive back wher your mac will see it again, try a program called "Disk Warrior". I use it to pull my 3-Lacie 500's back from the edge of death once every couple of months. It's not a permanate fix, but it'll let you get your data off so you can zero out the drive.
    James
    Dual 2Ghz G5   Mac OS X (10.3.9)   2 Gig Ram, Final Cut Pro 4.5

  • Please Help me Xdoclet CMP EJBs weblogic 8.1

    Hi all,
    I am new to both xdoclet and weblogic.
    I have confusion about foriegn-key-column and key-column in @weblogic.column-map tag for many to many relationship
    I have many to many relationship between Order EJB and Item EJB. join table name is OrderLine.
    In Order EJB I have cmr method
    public abstract java.util.Collection getItems();
    which one @weblogic.column-map tag is correct? is foriegn-key reference from Order table to OrderLine table or OrderLine table to Order table. My impression is it is from OrderLine table to Order table. Just want to confirm it.
    1)
    public abstract class OrderEJB implements EntityBean {
    * @ejb.interface-method
    * view-type="local"
    * @ejb.relation
    * name="OrdersItems"
    * role-name="Order"
    * @weblogic.relation
    * join-table-name="OrderLine"
    * generate="false"
    * @weblogic.column-map
    * foriegn-key-column="order_itemId"
    * key-column="orderline_item_id"*
    public abstract Collection getItems();
    Or
    2)
    public abstract class OrderEJB implements EntityBean {
    * @ejb.interface-method
    * view-type="local"
    * @ejb.relation
    * name="OrdersItems"
    * role-name="Order"
    * @weblogic.relation
    * join-table-name="OrderLine"
    * generate="false"
    * @weblogic.column-map
    * foriegn-key-column="orderline_itemId"
    * key-column="order_item_id"*
    public abstract Collection getItems();
    My second question is suppose I have composite foriegn-key, in that case how will I define @weblogic.column-map tags,
    will it be something like this?
    public abstract class OrderEJB implements EntityBean {
    * @ejb.interface-method
    * view-type="local"
    * @ejb.relation
    * name="OrdersItems"
    * role-name="Order"
    * @weblogic.relation
    * join-table-name="OrderLine"
    * generate="false"
    * @weblogic.column-map
    * foriegn-key-column="fk_col1"
    * key-column="pk_col1"*
    * @weblogic.column-map
    * foriegn-key-column="fk_col2"
    * key-column="pk_col2"
    public abstract Collection getItems();
    Thanks in advance

    Create a web application, put you JSP in the web application, put the web application in the server. And Robert is you Father's Brother.

  • Please help need advice with planned project!

    Hi, im not sure if this is the correct forum to post this (there are so many!) just move it to the correct place if it isn�t.
    I need some advice on the correct way of coding a feature that is essential to my dissertation project.
    Basically the project is going to be a particle effect tool that works in a similar way to the particle flow tool works in 3DSMax if anyone has used it, if not here is a screeny:
    http://www.artificial-studios.co.uk/DumpingGround/partview01.png
    It allows you to visually represent your particle system by joining components together and linking them with connecting lines.
    Now my questions is what would be the correct way to implement this in java? I am currently using a series of JSplitPanel's to split the main frame up then using a JPanel for the main area and other JPanels for the individual elements that you can move around and link up, here is a screeny:
    http://www.artificial-studios.co.uk/DumpingGround/partview02.png
    My problem is that when i add a new element via a right click menu I have to call revalidate on the main panel, this causes all the elements to return to their default position. The same thing happens whenever you move one of the JSplitPanes as it called revalidate.
    So im wondering if im doing this the correct way, i see that there are many other kinds of panels provided with SWING and wondering if any of the others are perhaps more suited to my requirements?
    I know that its definitely possible as Poseidon UML was coded entirely in Java and it has many of the features i am looking for:
    http://www.artificial-studios.co.uk/DumpingGround/partview03.png
    As this will be my first large GUI application i wasn�t sure where to turn so if anyone can me any advice whatsoever it would be greatly appreciated. Also if anyone can point me to any books or reading material concerning professional GUI design so that i may be able to code applications that look as professional as Poseidon or Netbeans it would be greatly appreciated.
    Thanks,
    Mike

    Do you know about Data Access Object(dao)?
    Assume you want to add hydrogen molecule to a panel, you create a new object with the class(class Molecule) representing a new molecule( H2, O2 or H2O).
    You can also create a dao for this object of Molecule
    class MoleculeProperty
               private int xLocation, int yLocation, ZLocation;
               public void setYLocation(int tempYLocation)
                           yLocation = tempYLocation;
               public int getYLocation()
                           return yLocation;
               public int getZLocation()
                           return zLocation;
               public void setZLocation(int tempZLocation)
                           zLocation = tempZLocation;
               public void setJustUpdated(boolean tempInput)
                       justUpdated = tempInput;
               public boolean getJustUpdated()
                       return justUpdated;
    Either within your method paintComponent(Graphics g) or your panel for drawing molecules or method paint(Graphics g), it reads MoleculeProperty of Molecule and it can draw it in proper location.
    After you have created a new Molecule, dao.setJustUpdated(true) . At the last line of method paintComponent(Graphics g) or paint(Graphics g), dao.setJustUpdated(false);

  • Please help me to undeploy web applications without starting weblogic.

    My colleague deployed his web application to my weblogic domain. However, the domain cannot be started after deployment. How to undeploy that application without starting the weblogic?
    I use weblogic 10.3.3. His application uses servlet and jsp and tests that application in weblogic 10.3.2

    Delete the application from the deploy directory. The domains/base_domain/autodeploy is the directory for auto deployed applications, which get deployed when server is started. Or, the domain's InstallDir directory.
    Edited by: dvohra16 on Jan 22, 2011 4:43 PM

  • I have ID, use a Mac, have Yosemite 10.10.2 - have not used ID for awhile but have a project but cannot open it because I need Jave SE6 runtime and cannot download it. Do I need an upgrade? Please help I have a project

    I need to download Java Se6 runtime in order to use InDesign but cannot download it. Please help as I have a project that must get done. If I need an upgrade please let me know.

    There is a Java update for Yosemite that includes what you need.

  • I Can't SAVE my project, please help!

    For some reason when I go to save my project or during the auto save, I get an error message which reads: "Operation Not Allowed"
    Any idea why I am getting this message?
    I've made number of changes and I don't want to lose my work, please HELP!

    Create a new project with same settings, copy and paste the troubled project's content onto the new sequence and try to save giving to it a unique name.

Maybe you are looking for

  • Error message when I insert a div tag: Couldn't commit the changes made in Live View. Refresh the Live View and try editing again.

    According to a web and support forum search, myself and another person, Chloe in the Dreamweaver Club forum, have ever reported this. Trying to follow along a Lynda.com tutorial, and the instructor isn't getting this error. Can't imagine why it's hap

  • Oracle 9i & Application 9i Enterprise Edition

    Can Oracle 9i & Application 9i Enterprise Edition Rel 1 be used on a single machine. Thanks in advance Zulqarnain R. Habib

  • TS3920 Date and Time display

    The smaller time in the header of my iPad4 is accurate, but the larger date and time in the background at the top is wrong. I think it may be the date I bought the iPad. The calendar app is correct as well as the date and time in settings. How do I c

  • Photo stream questions

    Everyone in my family has an iPhone five, however, when I take a picture, it ends up in not only my camera roll, but the photo stream that, for some reason my sister has access to on her device, and vice versa. We both find this bothersome, and are w

  • Photoshop asking me to "license this software"

    Hi I just signed up for Adobe Creative Cloud and downloaded PS CS6 and installed it but when I try to open it, I am asked to license this software. I'm not sure how to do that with Creative Cloud. Thank you, Nate