0
votes
0answers
29 views

choice in wsdl jax-ws web services example

How to make choice in jax-ws web service? this is code @XmlElement(required = true) private String defaultPhone; @XmlElements(value = { @XmlElement(name="ClientB",type = ClientB.class), ...
0
votes
1answer
22 views

Legacy app made accesible in the same server or via ws

In our system we have a legacy standalone java application which we are trying to made available for new webapps we are developing all together running in a server (f.e. Tomcat) In order to made ...
1
vote
1answer
44 views

EJB + WebService on GlassFish with Netbeans enabling HTTPS

I have to enable HTTPS for webservice which is inside EJB application. My environment is Netbeans 7.2 + GlassFish 3.1.2.2 OpenSource Server. In EAR project there is no WebApplication, so I try to add ...
0
votes
0answers
51 views

Marshalling Error: failed to lazily initialize a collection of role (…), no session or session was closed

I`m using Eclipse RCP with EJB exposed like WebServices. My services beans looks like follows @Override @SuppressWarnings("unchecked") public List<Author> listAll() { final Query query = ...
0
votes
0answers
21 views

Deploying ejb and application as library

i have some problems with weblogic.. as i said, i need to deploy my webservice which is ejb packaged ( http://docs.oracle.com/cd/E19798-01/821-1841/gipnz/index.html ). This webservice uses a library ...
0
votes
0answers
46 views

EJB Call WebService Error

I perform in the main method no problem. But in EJB calls I get an exception. my server is weblogic. javax.ejb.EJBException: EJB Exception: ; nested exception is: java.lang.NoClassDefFoundError: ...
0
votes
1answer
64 views

What's the best way to deal with JAX-WS proxy objects for EJB JPA entities that are Lazy Loaded?

Unfortunately we are stuck using JPA 1.0 and Java EE 5 (SAP implementation). If it matters, we are using an Oracle DB. We have an entity class that is basically a database description for a file type ...
0
votes
0answers
76 views

JBoss WebServices and EJB

My application should show a list of stuff over RESTful WebServices. This list of stuff is generated via an EJB which is deployed in JBoss AS 6 in a .jar. My question is, how do I get this list of ...
0
votes
0answers
78 views

Annotating exception as @WebFault and @ApplicationException

I develop EJB-backed web-services, so my bean is annotated as @Stateless and @Webservice. But some methods of my bean throws exceptions. So it's possible to have only one exception class annotated ...
1
vote
1answer
126 views

How to access EJB services from a grails standalone client

I've been having problems to access to my EJB services from a standalone client i've developed on grails 2.0.3. The EJB services are deployed on a glassfish server (Java). I tested this code on a ...
0
votes
1answer
171 views

Web Service Client in a Stateless Enterprise Bean

What is the correct way to implement a stateless EJB 3.1 for invoking a web service. My client works as a Servlet, but I want to move the invocation into a EEJ bean. I have to add username and ...
1
vote
1answer
178 views

EJB as WebService context-root gone

I'm working on a project with JAX-WS. When I annotate my endpoint class with @WebService the WSDL is marked in console like .../<context-root>/XXXService?wsdl When I add @Stateless on those ...
0
votes
2answers
84 views

Distributed Computing with Java and Spring should I use Messaging, Web Services or EJB?

I am working in a firm that is new to java and I am the only java programmer and I need to write about 10 systems within a few months.. The firm has 2 other programmers that know basic java. Not ...
0
votes
0answers
36 views

Generating Session Bean WebServices from a WSDL file

Anyone know a way to generate (directly) Session Bean WebServices from a WSDL file (not from EJB)? The Ant Task: WSDLC, generates the Impl class, then I could modify the Impl class for add EJB Tags ...
1
vote
1answer
102 views

Is it possible to call a Restful web service from an EJB2 client

I have been looking around for examples of how to call a Restful service written in Spring 3 from an EJB2 client. If i understand REST correctly, it should not matter what technology/language the ...
0
votes
0answers
83 views

Silverlight and Java with spring on Tomcat server

I have got the following problem. My friend wrote java application which gets data from database and shares it using SOAP webservice. I have got test environment running on tomcat server. Web service ...
2
votes
0answers
103 views

Deploy independent EJB in WebLogic 12c

I want to deploy a EJB module that i develop in Netbeans. The EJB contains web services using JAX WS library and Stateless Session Beans... The Session Bean class use a remote interface that is in ...
1
vote
0answers
187 views

How deploy an ejb independet in WebLogic 12c, which was created in GlassFish 3.1

Good day, I want to deploy an EJB Application Project which contains a class Session Bean and WebServices using JAX-WS library, and the Session Bean uses a remote interface that is in another ...
0
votes
2answers
846 views

Extracting whole SOAP message with JAX-WS

I have an EJB stateless bean web service and would like to get access to the whole SOAP message, not just the SOAP Body as I'm currently getting in the parameter. I want to submit the message to a ...
0
votes
0answers
26 views

Remove dependency of ejb 2 project

I have two project one is in EJB2(contains business logic) and another is Web project. Currently i am including my ejb2 project in bulid path of my web project to user bean of my ejb2 project. ...
0
votes
1answer
112 views

What mean JAX-RPC-based web service endpoints (in context of EJB)?

I read Beginning Java EE 6 platform with Glassfish 3 from Antonio Goncalves. In chapter about EJBs he wrote that some features of EJB may be deprecated in next releases of JEE. None of the ...
1
vote
0answers
38 views

architecture: Services against ManagedBean

I have been working with JSF like front-end and EJB to Business Model. I ve heard about another kind of architecture, where web services are used instead of EJB and these are called through ajax ...
1
vote
0answers
184 views

Secure SSL Webservices under Glassfish

Hello I'm deploying a webservice (ejb) under Glassfish, I just follow this steps without any result ...
0
votes
0answers
89 views

JBoss 4.2 webservice not deployed

I have an ear with 3 ejb modules. In every ejb module I've some ejbs exposed as a webservice. I use jboss 4.2. When I start the server everything is ok. 08:20:33,261 INFO ...
3
votes
1answer
434 views

@RunAs for @WebService EJB

I have an anonymous WebService EJB - webservice calls are working poperly. Now I want the WebService to RunAs as a specific SecurityRole. At the Webservice I have following Annotations: @Stateless ...
1
vote
1answer
134 views

how create an ejb-jar file to deploy in Glass Fish server v3

I would like to know how deploy an EJB application? that also has web services with jax-ws... I read this link ...
0
votes
0answers
208 views

Using @EJB annotation in CXF web service

I am trying to understand why I can't use @EJB annotation in CXF web service? If I use it I always get a NullPointer exception. If I want to inject a bean which is deployed in the same application ...
0
votes
1answer
628 views

Android communication with EJB server

Android has a built in library for JSON and I was wandering if anyone has any experiences on EJB with JBoss backend. Is there possible to integrate a session bean with a web service sending and ...
1
vote
1answer
86 views

Should the Entity Manager be closed by ourself in EJB?

I am new to EJB. I want to know that the EnityManger should be closed by ourself (em.close() )of a stateless or statefull sessionbeans in EJB 3.0 ( may be inside a method where @preDestroy annotation ...
1
vote
0answers
175 views

Webservice cannot be stateless?

Can someone explain the following? Setup: basic webservice in a Dynamic Web Project with tomEE+. index.xhtml as testsite. @Stateless @WebService... public class MyWS implements MyWSInterface ...
0
votes
1answer
105 views

Webservice declaration with static vars not possible?

when creating a Webservice, can I somehow use static String vars? @WebService( portName = Util.PORT, serviceName = Util.SERVICE, targetNamespace = ..., ...
0
votes
0answers
162 views

How to call an EJB 3 Webservice in JBoss from EJB 2.0 in Weblogic?

I have exposed an EJB as a web service in JBoss via annotation as following: @WebService(endpointInterface="com.test.HelloWorld1",serviceName="Greeter1",portName="GreeterPort1") @Stateless ...
0
votes
3answers
1k views

How to inject EJB in java web service SOAP

i'm triyng to develop a simple web service in Java that used an EJB, with EJBs in jar file and WebServices in war file, both packaged in one ear. We use EjB 3.0 on JBOSS-AS 7.1. Here my EJB class ...
0
votes
1answer
94 views

Inject generated beans

Let's i have simply @Stateless session bean. (EJB 3.0) @Stateless public class SomeBeanWS implements ISomeBeanWS { // ... } And I have many WebServices (that are beans ...
0
votes
1answer
945 views

How to inject EJB with @WebServiceRef from Web-module

I have a JEE6 application, with an ejb and a web-module, running on a GlassFish 3.1.1 Now I wanted to access a WebService (JAX-WS) by injecting it (as a Session Bean) into several Managed Beans. ...
0
votes
0answers
55 views

Maintain Session / Object Pooling

I have a scenario as follows @Stateful public class statefulBean implements statefulBeanRemote { int var; public statefulBean() { var =0; } public int changeVar() { var = var +1; ...
0
votes
1answer
198 views

When to prefer EJB over WebServices?

When to use EJB and WebServices? How I understand, EJB used for abstracting from implementation (realizations details), because it exposes only interface and it can be injected (using @EJB). ...
0
votes
4answers
132 views

Domain object construction responsibility: Should I use domain objects in service layer interface?

When designing a service layer, should I use my domain objects in the interface contract? For example: public void registerUser(String username, String realName) VS public void ...
2
votes
1answer
595 views

Glassfish port unification causes web service deployment exception

After applying port unification to my glassfish domain using the following commands asadmin create-protocol --securityenabled=false http-redirect asadmin create-http-redirect --redirect-port 8181 ...
4
votes
3answers
1k views

Is still useful to implement EJB with RMI when you can implement Web Services (SOA/REST)?

This might sound similar to this, but it's not. I kind of understand EJB and RMI, and I have been working with web services under SOA for a while. I want to know why is useful to work using EJB ...
1
vote
0answers
400 views

Howto get Glassfish to honor endpoint-address-uri definition?

It seems like Glassfish 3 deploys my Java EE 6 webservice to the wrong URL when I am using an endpointInterface definition and I am not able to figure out why. This is what I have go so far: I have a ...
3
votes
2answers
3k views

How to expose an EJB 3.1 as a REST Web Service?

I discovered a new feature in java restful when using EJB 3.1 while reading an article at Adam's Bein blog. The thing is that Stateless and Singleton beans can be exposed as root resources. But how? ...
0
votes
1answer
46 views

What is a faster way to log events using Webservices

I have an application that must log all events that the user does in a remote database, so,I´ve choice to use the webservice format (the application call the webservice with the event parameters). ...
0
votes
1answer
851 views

javax.ejb.Stateless class undefined

I am currently trying to implement a web-service assignment given by my college. My Assignment is.., Consider a case where we have two web Services- an airline service and a travel agent and ...
2
votes
1answer
162 views

Is it possible to define a servlet filter for a stateless ejb webservice, on GlassFish 3.1

I want to export a Web-Service which was implemented as a stateless EJB. I know that these WebServices were hanled by the EJB Container, when they are annotated as @Stateless + @Webservice. Is it ...
0
votes
1answer
272 views

Stateful Webservice vs. (Stateful Bean + Stateless WS)

I have a system module in my design which must maintain its state. On the other hand I need to provide a public access to it through a web-service. What is better to do in such a situation. Create a ...
5
votes
1answer
4k views

Glassfish: EJB Container initialization error

I wrote a small webservice and when i try to deploy it to glassfish i get this error: Error occurred during deployment: Exception while loading the app : EJB Container initialization error. Please see ...
2
votes
1answer
1k views

Enable https for java ejb Webservice

i'm developing a webservice with ejb 3 and glassfish 3.1.1. I'm using Netbeans 7.0 and would like to know, how to enable https on port 8181 for this webservice. I dont need any authentication ...
0
votes
1answer
243 views

Authentication for Hospital Management system

I am implementing a Java EE based Hospital Management System that has a web service and two clients are to be connected to it, a Java Swing App and a JSP-based web project. The web service is to be ...
0
votes
2answers
104 views

What is best recommended way to call an external web service from Web Application in java?

I am creating a web application in eclipse (via dynamic web project wizard). the Main job of this web app is to call an External web Service's Methods. to accomplish this task should i make an EJB ...

1 2