Questions tagged [jbossws]

JBossWS features include many specifications / standards implementations as well as additional features, options, tools to improve ease of use, endpoint management and monitoring, etc.

JBossWS features include many specifications / standards implementations as well as additional features, options, tools to improve ease of use, endpoint management and monitoring, etc.

81 questions
1
vote
1 answer

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: bindingProvider.getRequestContext().put("org.jboss.ws.timeout",…
Vadzim
  • 24,954
  • 11
  • 143
  • 151
1
vote
1 answer

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, and how does it fit with the client request -…
user984233
  • 11
  • 3
1
vote
1 answer

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 been delivered to me as a jar file and looking…
rainyday
  • 75
  • 1
  • 2
  • 10
1
vote
1 answer

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 xsd-files. I then add necessary anottations to the…
aksamit
  • 2,325
  • 8
  • 28
  • 40
1
vote
1 answer

WildFly: Quick Way to Determine Which Version of JBossWS Is in Use?

What's the quickest way to determine which version of JBossWS is in use in a WildFly installation? I have a WildFly 10 installation, and when I search various files for version numbers pertaining to JBossWS, I see different things depending on where…
1
vote
0 answers

Jboss webservice error using topdown approach

I started creating a sample webservice using top-down approach in jboss4.2.2 GA. From the wsdl, i generated stubs using wsconsume I created a new java class: SalesTaxImpl implementing the interface in the generated stub. Configured @WebService with…
user309281
  • 3,025
  • 2
  • 18
  • 18
1
vote
1 answer

JBossWS change wsdl url

I have a web application deployed on JBoss 5.1.0 with a couple of webservices. When i use the JBossWS console to see the registered service endpoints, all my webservices follow the same URL…
Socram
  • 165
  • 1
  • 6
1
vote
1 answer

WebServiceexception "No Content-type in the header" when trying to consume JBoss hosted webservice with a console application

I have a small assignment where I have to consume a webservice hosted with JBoss using a console application. I have 2 projects in the same workspace, The DynamicWebApplication that I used as a webservice that is hosted using JBoss and a console…
Drahcir
  • 12,311
  • 19
  • 63
  • 76
1
vote
1 answer

How to enable JBossWS' LogRecorders globally?

I'm using Wildfly 8.1.0.Final. I have RecordingServerHandler configured, it does get triggered by web services' messages. The problem is, LogRecorders are disabled by default. The Records management article says: Default processors are not in…
Vsevolod Golovanov
  • 4,068
  • 3
  • 31
  • 65
1
vote
1 answer

JBossWS & Stateless WebServices, OutFaultInterceptor being ignored

We are tying to use a WebService OutFaultInterceptor as per this blog post and it doesn't seem to work in JBoss 7.x. The problem is simple in that it just ignores the @OutFaultInterceptor annotation. I tested this by putting in a erroneous…
drone.ah
  • 1,135
  • 14
  • 28
1
vote
1 answer

Amazon EC2 and jbossws

I've deployed a webservice to a Jboss instance running on Amazon EC2. The webservice works fine locally, but when I deploy on EC2, and go to the /jbossws/services page the Endpoint Address for the webservice is the private DNS of the ec2 instance…
avjaz
  • 41
  • 4
1
vote
0 answers

CXF AddressingPropertiesImpl cannot be cast to JBoss AddressingPropertiesImpl

I am using SLSB as a webservice with @Addressing annotation and @HandlerChain of type org.jboss.wsf.common.handler.GenericSOAPHandler (jbossws-common) My client uses WSAddressingClientHandler to BindingProvider Like: customHandlerChain.add(new…
1
vote
2 answers

Webservice in JBoss doesn't find xsd

I try to implement a first Web service running in JBoss AS 7.2. I use the wsdlLocation-Property to link my service with a predefined wsdl file: @Stateless @WebServiceProvider(wsdlLocation = "classpath:wsdl\\prototype.wsdl") public class…
boskop
  • 609
  • 5
  • 23
1
vote
1 answer

Configuring different auth-methods for different "folders" in a single .war

I would like to create a single .war that contains both a web based FORM login for a web GUI AND BASIC authentication (in this case, for a web service interface.) /index.html (unsecured welcome page) +---/interactive (folder containing web pages…
Chris Nava
  • 6,614
  • 3
  • 25
  • 31
1
vote
1 answer

Is it possible to handle User Defined Exception using JAX WS Dispatch API?

I'm performing dynamic webservices call using following code snippet: JAXBContext jc = getJAXBContext(requestClass, responseClass, jaxbContextExtraClasses); Dispatch dispatch = service.createDispatch(portQName, jc,…
snowflake
  • 1,750
  • 2
  • 17
  • 40