JBossWS features include many specifications / standards implementations as well as additional features, options, tools to improve ease of use, endpoint management and monitoring, etc.
0
votes
0answers
40 views
how to bootstrap Spring in a JbossWS-CXF web service deployed in jboss AS 7.2
TLDR at the bottom:
As per the JBossWS-cxf user guide, for a web service, the web.xml should contain the following
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
...
1
vote
1answer
113 views
Why do I get a webservice to be published in two different addresses using JBoss AS7?
As an exercise to get to know something about JAX-WS and CXF I decided to implement a small service that calculates BMI.
It is based on this tutorial.
I would assume that only the address I specify ...
0
votes
0answers
47 views
error in intializing json natural configuration with jboss 7.1.1 (jbossws-cxf-4.1.1)
I am trying to access REST webservices for which json is also a type of input. I am using jaxb annotations on the pojo classes for webservices. While posting request following error is thrown.
...
0
votes
1answer
52 views
How portable/compatible is JBossWS-CFX?
How portable or compatible is JBossWS-CXF? My impression is that it is a "hybrid" because of a statement on the JBoss web site that states that it supports "almost all" of the features of CXF. If ...
0
votes
0answers
191 views
JBossWS + CXF + Spring configuration issue
I am currently developing a web service application using JBoss 7.1.1 as container which uses CXF 4.1.1 + Spring (version packaged with CXF). In my application, I have one service which is being ...
0
votes
0answers
30 views
Creating test cases for a JBOSS ESB in .Net?
I am just beginning the process of learning how to use a recently installed JBOSS ESB. I would like to create a proof-of-concept in .Net to publish and consume a message to the ESB but I'm not sure ...
0
votes
1answer
141 views
install jbossws-cxf-3.4.0.GA on jboss51.GA and deploy webService
After upgrading to jbossws-cxf-3.4.0.GA on Jboss 5.1GA I can't deploy any webService applications on this Jboss;
java.lang.NoClassDefFoundError: org/jboss/wsf/common/KernelAwareSPIFactory is ...
0
votes
1answer
29 views
JBOSS WS regex ampersand
I'm new to web-services and I encountered a problem. There is a web-service running on JBOSS 6, when on client side we send data with '&' we encounter such error 'The entity name must immediately ...
0
votes
0answers
73 views
Installing jboss-ws to jboss as 6.0 final
hello I tried to install jbossws-cxf 3.4.1 GA in to jboss aplication server 6.00 Final using apache Ant.I modified relevent properties in the ant.properties file as
...
0
votes
1answer
475 views
Unable to call JAX-WS client deployed on JBoss 7.1.1
I have a generated jax-ws web service client that runs fine when I run it as a java standalone project. However if I add it to a web application (war) deployed on JBoss 7.1.1 and call the web service ...
0
votes
1answer
139 views
How does WS-addressing create “Stateful” Endpoints (JBossWS)
So reading JBoss administration guide I see that WS-addressing is used to create "stateful endpoints."
I understand that WS-addressing creates a standard for specifying the messaging routing data ...
0
votes
1answer
199 views
WS-Security: @EndpointConfig not working
I want to build a simple example webservice that is protected by username and password.
As a starting point I used: https://docs.jboss.org/author/display/JBWS/WS-Security
The problem: every client ...
1
vote
2answers
255 views
JBossWS vs JAX-WS
This might be a trivial question, but it's been confusing me and I couldn't find a direct answer from google and through online searching.
What is the difference between JBossWS and JAX-WS?
Is ...
0
votes
0answers
88 views
JBoss WS Authentication Features
I'm building this web service client that first needs to get the authorization token, then for each request after that, pass the authorization token in the header of the SOAP envelope.
ie
...
0
votes
0answers
136 views
Can we deploy Jboss WS on tomcat server
Can we deploy Jboss WS on tomcat server
I tried doing it on tomcat 7 , after including the jars for Jboss Ws , i got the error org/bboss/kernel/Kernel class not found exception , then i added a jar ...
0
votes
1answer
497 views
Getting “HTTP Status 403” in JBoss AS 6 after securing web services console
I want to web services console could be access only after user authentication. Here is what i changed in JBoss:
1. Common/deploy/jbossws-console.war/WEB-INF/web.xml - uncommented section with "A ...
0
votes
0answers
139 views
jboss-ws vs spring-ws [closed]
I've been searching online. Haven't been able to find a good article comparing the advantages and disadvantages of Jboss Web Service vs Spring Web Service.
What are your views on JBoss-ws vs ...
0
votes
1answer
246 views
Developing a Java based web service client
I have a couple of web services running on JBoss 5.1.0 GA with JBossWs native stack (shipped with JBoss 5.1.0 GA binary)
These web services are simple POJO services. Many of the WebMethods exposed by ...
0
votes
0answers
93 views
Authentication for intranet web services BASIC Auth or CLIENT_CERT
I have 2 web applications say A and B running on same intranet network. Application A is used only by intranet users while Application B is also connected to internet. My web services are deployed on ...
1
vote
3answers
905 views
Sending custom objects with kSOAP
i am using ksoap2 (ksoap2-android-assembly-3.0.0-RC.1-jar-with-dependencies.jar) to communicate my android app with soap service which is set up on jboss 7 (jboss-as-7.1.1_Final & ...
0
votes
0answers
159 views
Issue in web serivces while calling returns socket write error
Getting following error, while calling webservices.where I am working jboss As 6 with jbossws, I am getting following error after i added a servlet to set log4j property at run time for my application ...
0
votes
1answer
317 views
Creating webservice and client with JBossWS using Complex objects as arguments and return types
I am developing a WebService and Client for it using JBoss 5.1.0GA. The JBossWs stack was already preinstalled with the binary that I downloaded and as I understand it is JBossWs 3.1.2GA
I have ...
0
votes
1answer
1k views
SOAP Object Serialization in Java
I am using JBoss AS 7.1.1 and JAX-WS 2.0.
In my application, I need to pass a Map<String, Map<String, String>> to a service. I made a custom complex type which extends TreeMap. While ...
2
votes
1answer
812 views
Prevent Enum in Java XML Web Services
I love Enum for the type safety and also it makes code much more readable. I always make use of Enum whenever I get the chance.
Problem started when I need to expose these codes as web services. For ...
0
votes
3answers
2k views
Class cast exception when invoking a web service in Jboss 4.2.3 GA
We have created a web service in Netbeans 7.1 which is running fine on glassfish 3.1.1. Now I have to move my service application to Jboss 4.2.3 GA-JDK6. There is no problem found when deploying the ...
2
votes
1answer
116 views
Implementing push kind of technique with a Java Client and JBoss Webervices
This question is more based on design details rather than a specific programming problem. I hope that people on SO don’t mind such a question.
I am working on designing an application which has two ...
1
vote
0answers
337 views
org.jboss.util.NotImplementedException Not able to call web service with jboss as the application server
I am facing a issue while calling the webservice. The exception that i am getting is shown below. I tried too many solutions available on the web like replacing the saaj jar etc but no success. Here i ...
3
votes
3answers
4k views
Use native Java SE 6 JAX-WS implementation instead of JBoss WS stack
JBoss 6.0 Final is shipped with JBoss WS (Apache CXF stack by default), I know that I can replace the default implementation with the respective JBoss WS Native or Metro versions from JBossWS ...
0
votes
1answer
298 views
JBoss WS Temp file saved incorrectly
My problem from yesterday is say sorted. Not solved though.
The NPE I had was triggered by a FileNotFoundException that was hidden until I switched to TRACE logging ...
0
votes
1answer
731 views
Using spring together with jbossws-cxf on jboss 6
I want to use spring together with jbossws-cxf. Is this possible?
First I tried using jbossws-cxf.xml with bean definitions of spring. The warning message [DescriptorDeploymentAspect] Spring not ...
0
votes
1answer
767 views
Install CXF in Jboss5.0
Today i tried to install Apache CXF in JBOSS-WS.
I followed the instructions from https://community.jboss.org/wiki/JBossWS-Installation.
I am using jbossws-cxf-4.0.0.GA . I am getting an exception ...
1
vote
1answer
309 views
JBossWS 3.3.1 upgrade client returns HTTP 404 Not Found exception
Web service - Service is on WAS v7. Client is on JBoss v5. We recently upgraded to JBossWS 3.3.1. Since then the client is unable to communicate with the service on WAS.
Without any changes to code, ...
2
votes
1answer
399 views
Log response from webservice
I am using Jboss and jax-ws.
How can I gent a similar effect to the
System.setProperty("com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", "true")?
Thank you!
Have a nice day!
0
votes
1answer
896 views
Separate connect and read timeouts for JBossWS
Can anyone give a hint how to set separate connect and read timeouts when calling external webservice from JBossWS-Native client?
All I've found so far is how to set a single timeout:
...
-1
votes
1answer
2k views
Intermittent javax.xml.ws.soap.SOAPFaultException: Unqualified {http://schemas.xmlsoap.org/soap/envelope/}Client fault
We are using JBossWS - Native (version 3.1.2) (Standard JBoss EAP 5.1 installation) and we are intermitently getting the following exception..., anyone got a clue?
If I test with a few calls to the ...
0
votes
1answer
1k views
Web services on Jboss ESB
I am looking for a bit of clarity around JBoss ESB and JBoss WS. I have been asked to build an ESB solution using web services (SOAP/http(s)).
What advantages does using ESB over JBoss WS give me, ...
0
votes
1answer
1k views
Get IP address in JBoss Web Service
I developed a java class with an only method and turned into web service (JBOSS) using JBossWS. I would like to get the IP address of the client who started the request. (I'm not using jsp)
public ...
2
votes
1answer
415 views
Not able to create client for web service in java
`I am using JBossWS as runtime environment and server configuration as JBoss AS 4.2
As I click on Finish button for creating client , I get teh following error:
java.lang.NoClassDefFoundError: ...
2
votes
1answer
4k views
“org.xml.sax.SAXParseException: Premature end of file.” while parsing schema
I'm writing a webservice client running on Linux JBoss 5.0.1 / JBossWS Native 3.1.1 which is calling a service running on a Windows Tomcat 6.0.29 / Metro Stack.
The WSDLs and the referenced XSD ...
1
vote
0answers
149 views
Jboss ws, auto decode soap message from utf
I've done servlet and deployed it into jboss. Servlet is working as web service. All is working correctly. But, when my client send SOAP message on server. Jboss decodes this message from utf to ...
1
vote
1answer
975 views
Spring configuration in JBossWS
I'm trying to expose a web service using JBossWS (native stack) and also take advantage of Spring's dependency injection. Here is a scrubbed down version of my code:
web.xml:
<?xml version="1.0" ...
1
vote
1answer
3k views
How to have a HashMap as @WebParam with JBossWS 3.1.2
I am trying to develop a web service with JBossWS 3.1.2 that has a HashMap as one of its arguments. I am using this version of JBossWS because that is what is distributed with the version of JBoss ...
0
votes
1answer
425 views
non http request and response in servlet
i'm running a simple servlet in eclipse using jboss
while i'm deploying i got the following errors
where i 'm doing wrong please tell me
09:34:29,062 ERROR [[ServletExample]] Servlet.service() for ...
0
votes
1answer
189 views
jbossws webservice endpoint
I have developed a simple webservice implementation using top-down approach, created a war and deployed in jboss4.2.2GA, in windows environment.
I am able to see my webservice having registered end ...
1
vote
1answer
624 views
How can I exclude jbossws libs (in Jboss 5.1.x common/lib) from being loaded by my project?
I am using JBoss 5.1.0GA which has the jbossws jars in the common/lib folder. My project relies on a connection to a 3rd party system (via web services). The Encryption and Decryption handlers have ...
2
votes
2answers
1k views
org.apache.cxf.BusException: No DestinationFactory was found for the namespace http://schemas.xmlsoap.org/soap/http/
In a wsdl-file I have the following line:
When I deploy the webapplication (on JBOSS 5.1.0) and try to access the wsdl I get the following exception:
org.apache.cxf.BusException: No ...
1
vote
1answer
2k views
How to deploy JbossWS CXF within a web-application
When I deploy my webapplication on a JBoss app-server it fails to deploy the webservice. I am using the top-down approach and generated the necessary files with wsconsume.bat from my wsdl- and ...
10
votes
3answers
17k views
IllegalAnnotationException: Two classes have the same XML type name
I am developing web service under JBoss 5 and Java 1.6. What could possibly cause this exception? Below is my simplified web service code.
@Stateless
@WebService()
public class AccountWS {
...
0
votes
2answers
265 views
Calling web service from another ejb on startup
Using jboss-esb 5.1.0.GA
I have a web service that an EJB that I have makes calls on when it is started. This EJB may be installed in the same JBoss instance as the web service. If I start JBoss, ...
2
votes
1answer
690 views
Jboss ws wsdl issue
I have wsdl in which multiple port names and binding are defined, like below:
<wsdl:service name="NPCWebService">
<wsdl:port name="NPCWebServiceHttpEndpoint" ...
