Tagged Questions
0
votes
1answer
33 views
Get SOAP MTOM work on Glassfish v3
Interface:
import javax.jws.WebService;
import javax.jws.WebMethod;
@MTOM
@WebService(name="Webservice")
public interface IWebservice{
@WebMethod
public Collection<SomeValue> doSthg();
...
0
votes
0answers
114 views
jax-ws servlet client error while accessing jax-ws web service. Both are on localhost Glassfish 3.1.2.2
I am trying to access jax-ws web service through jax-ws servlet client. Both are on localhost Glassfish.
Getting some errors:
User [] from host 127.0.0.1 does not have administration access
And
...
0
votes
1answer
130 views
Cannot Deploy JAX-WS webservice on Glassfish
I have a problem running JAX_WS Webservices with Glassfish application server. Previously, i used to use Apache tomcat which works fine with it. But now, having Glassfish, this problem is preventing ...
0
votes
1answer
72 views
Glassfish v3 + SOAP, Existing WebService not launching
I didn't make the code, I'm just being asked to help find the problem. I know nothing of SOAP.
A WebService, generated from a WSDL, is running on an old Glassfish v2.
No problem, the service is ...
1
vote
3answers
376 views
Glassfish throws com.sun.xml.ws.client.ClientTransportException: The server sent HTTP status code 500: Internal Server Error
I have deployed jax-ws web service into glassfish 3.1.My client request for the service method which returns 5000 to 10000 list of objects.In between processing server throws ClientTransportException ...
1
vote
0answers
57 views
Java EE 6 and JAXRPCSecurity
I'am trying convert my Java EE 5 (GlassFish v2, Metro 2.1.1) application to Java EE 6 (GlassFish 3.1.2, Metro 2.2.1-1). I have problem with webservice client, which security is based on ...
0
votes
0answers
83 views
JaxWS authentication
My application is using the aikesommer authentication (http://code.google.com/p/authenticroast/) and extends FORM Authentication
public class CustomAuthenticator extends FormAuthenticator {
...
0
votes
2answers
400 views
JAX-WS implementation supporting java.util.List and Collections
I'm looking for an implementation of JAX-WS that supports java.util.List and java.Util.Collections. I need my web service to return and manage collections: I tried Apache Axis2, but it seems to non ...
1
vote
2answers
406 views
extending SpringBeanAutowiringSupport with GlassFish 3.1
I'm trying to expose my web service by extending SpringBeanAutowiringSupport. I'm using GlassFish 3.1 and Spring 3.0.5.RELEASE.
I'm following the tutorial here.
However, when I go to the URL of my ...
0
votes
1answer
207 views
Fast Infoset not working for JAXWS Glassfish Metro
We are building a high-throughput back-end system that will be sending and retrieving variably sized byte[], a cache service. The bindings are critical for this project so we have been testing SOAP, ...
0
votes
0answers
361 views
Create a dynamic client with cxf from session bean on glassfish
I've got a strange exception when using a dynamic ws client with apache cxf 2.6.2, jsf 2.0 (mojarra) and glassfish 3.1.
From a backing bean i want to create a dynamic client from within another ...
2
votes
1answer
189 views
Securing jax-ws service on glassfish 3. Good approaches
I have a jax-ws soap web service (implemented NOT like Session bean) generated in NetBeans from wsdl. Deployed on Glassfish 3.1.2. I want to secure access to it using mutual certificate authentication ...
0
votes
0answers
281 views
Deploy web service on Glassfish 3.1.2
I'm trying to deploy a .war archive to Glassfish 3.1.2. The application was developed and built using NetBeans 7.1.2. It contains a web service.
But I face the exception:
...
0
votes
1answer
1k views
Invalid Security Header when adding SSL to Web Service
We have a web application that is comprised of various web services that are exposed to our front end development team. We are a small shop so security has never been a concern for us, but we still ...
-1
votes
1answer
120 views
should we always use a EJB to implement a webservice? are there any other ways?
I was going through a Jax-ws sample tutorial, my question is why we should use a EJB to implement a webservice? are there any other ways?
2
votes
1answer
369 views
SOAPFaultException when deployed on Tomcat but works fine in GlassFish
Friends, I have been trying a lot and read many forums but unable to understand why this issue is coming up.
I created a Jax-WS WebService using contract first approach. Created WSDL & XSD and ...
2
votes
2answers
2k views
“Fix your application” Warning from glassfish when deploying war
I get this annoying warning and basicly error from glassfish (3.1):
"http://localhost:4848/management/domain/applications/application/websrvice-test-1.0" created successfully. WARNING: Command ...
3
votes
2answers
2k views
@EJB injection fails but JNDI lookup works in web service class in Glassfish
I have a @WebService class that injects an @EJB. The EJB is packaged in a .jar file which is in the same .war file as the web service classes. The @EJB injection always fails, but I can do a JNDI ...
0
votes
0answers
244 views
Thread safety on JAX-WS Web service (metro on glassfish3)
My business tier is impleted on glassfish3 with webservices ontop metro stack.
To handle easily transacations we using a logicalhandler that get's called everytime a single request is made, closed or ...
2
votes
1answer
1k views
JAX-WS Maven and NetBeans
I am using netbeans 7 very successfully with JDK6. I need to add a JAX-WS webservice[ws] interface to my application to consume EJB service already created in the app. Since I moved to maven2 I had no ...
1
vote
1answer
305 views
Is it possible to publish the original WSDL in the Glassfish 3.1 WebServices?
I started with a WSDL and used wsimport to generate the Java artificats. Then I implemented the WebService and deployed it to a glassfish 3.1. The glassfish takes the java elements and regenerates a ...
0
votes
1answer
2k views
Jax-ws java.net.ConnectException: Connection refused
I'm experiencing an odd networking problem connecting to a web service running on glassfish from a java client running on tomcat using JAX-WS (Metro). Here's the scenario...
Both servers are running ...
1
vote
1answer
573 views
Get Web Service Context Listner in JAX-WS?
When Web Service in loaded for the first time i need it to send a message(it contains the url to access this service) to one of my installed web applications. This web application is keeping track of ...
0
votes
1answer
556 views
wsdl bad url generation behind nginx haproxy
I am currently developing a webservice using jax-ws based on an EJB behind a nginx ssl offloader and a haproxy for the load balancing like :
@WebService()
@RolesAllowed("allowedOne")
@Stateless()
...
1
vote
1answer
673 views
Deployment secription of Basic Authentication with JAX-WS for EJB 3.1
There is good tutorial
Basic Authentication with JAX-WS
But it describe deployment description for web based application (war). Is it passable describe in ejb jar deployment description ?
For ...
2
votes
1answer
4k views
NoClassDefFoundError for com/sun/istack/logging/Logger in Glassfish v3
I have an application client which calls a SOAP service. I've used wsimport from the glassfish distribution to generate the ws classes, and everything works fine in Glassfish v2. When I run it ...

