EJB With Web Method : Web Services « EJB3 « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Book
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
SCJP
Java » EJB3 » Web ServicesScreenshots 
EJB With Web Method


File: jndi.properties

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost:1099


File: Main.java

import javax.naming.InitialContext;

import bean.EmployeeServiceRemote;

public class Main {

  public static void main(String[] athrows Exception {

    EmployeeServiceRemote service = null;

    // Context compEnv = (Context) new InitialContext().lookup("java:comp/env");

    // service = (HelloService)new
    // InitialContext().lookup("java:comp/env/ejb/HelloService");
    service = (EmployeeServiceRemotenew InitialContext().lookup("EmployeeBean/remote");

    service.doAction();

  }

}


File: Employee.java

package bean;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.PostRemove;

@Entity

public class Employee implements java.io.Serializable {
  private int id;

  private String firstName;

  private String lastName;

  @Id
  @GeneratedValue
  public int getId() {
    return id;
  }


  @PostRemove
  public void postRemove()
  {
     System.out.println("@PostRemove");
  }

  public void setId(int id) {
    this.id = id;
  }

  public String getFirstName() {
    return firstName;
  }

  public void setFirstName(String first) {
    this.firstName = first;
  }

  public String getLastName() {
    return lastName;
  }

  public void setLastName(String last) {
    this.lastName = last;
  }
}


File: EmployeeBean.java

package bean;
import javax.ejb.Stateless;
import javax.jws.WebMethod;
import javax.jws.WebService;

@Stateless(name = "EmployeeBeanEJB")
@WebService(serviceName = "EmployeeBeanWebService"
            targetNamespace = "http://www.java2s.com/ejb3/credit")
public class EmployeeBean implements EmployeeServiceLocal, EmployeeServiceRemote {

  public EmployeeBean() {
  }

  @WebMethod(operationName = "CreditCheck")
  public boolean validateCC(String cc) {
    return true;
  }

  public void doAction() {
    System.out.println("Processing...");

  }

}


File: EmployeeServiceLocal.java

package bean;
import javax.ejb.Local;
import javax.ejb.Remote;


@Local

public interface EmployeeServiceLocal{
  public void doAction();
}



File: EmployeeServiceRemote.java

package bean;
import javax.ejb.Stateless;
import javax.jws.WebService;


public interface EmployeeServiceRemote {
  public void doAction();


}




           
       
EJB-EJBWithWebMethod.zip( 4,488 k)
Related examples in the same category
1.Turn Ejb To Web Service
2.Web Method With Return Type And Parameters
3.EJB Tutorial from JBoss: turn EJB to web service
4.EJB Based Web Services
w__w_w___.___java__2_s_.co___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.