Questions tagged [webservices-client]

A web service client is a consumer of a defined web service, based on its contract (the service API) and constraints (i.e. security).

A web service client is a consumer of a defined web service, based on its contract (the service API) and constraints (i.e. security).

Web service clients can be automatically generated (based on a given contract and via technology related tools) or developed using the given service API and a technology of choice.

234 questions
4
votes
2 answers

Web Services client using Java NIO (Netty?)

I have written a simple client to test my Web Service, but I am investigating the possibility of using the JBoss Netty framework, rather than blocking sockets, in order to increase the number of concurrent connections I can make to the Web…
trojanfoe
  • 120,358
  • 21
  • 212
  • 242
4
votes
0 answers

Is there another way to get WebServiceTemplate in Spring Boot than WebServiceGatewaySupport#getWebServiceTemplate()?

Spring provides the org.springframework.ws.client.core.support.WebServiceGatewaySupport class, which is according to the Spring documentation a convenient super class for application classes that need Web service access. The class is apparently…
Honza Zidek
  • 9,204
  • 4
  • 72
  • 118
4
votes
3 answers

Issue while generating a service proxy from WSDL with invalid SSL Certificate

I'm trying to write a small app that accesses a webservice, but the webservice has an invalid SSL certificate. I've got no control over this fact as it's governed by a third party. I've tried accessing the site via IE (As administrator and as my own…
Omar Kooheji
  • 54,530
  • 68
  • 182
  • 238
4
votes
1 answer

Connect to AXIS 1.4 Webservice through a proxy

I am using AXIS 1.4 to generate the subs for my webservice. The generation works fine as it is, but I am facing a problem to connect to the webservice though a WebProxy. I use the axistools-maven-plugin to generate my axis classes. …
Marc Giombetti
  • 819
  • 1
  • 8
  • 20
4
votes
2 answers

Cannot find symbol constructor Service(URL,QName,WebServiceFeature[])

I am trying to make a maven module web_service_client with parent maven module ism-maven. This module contains generated WS classes. I did not change anything. I am using IntelliJ IDEA 11.1.2. This is my pom.xml of web_service_client.
user1554427
  • 225
  • 7
  • 12
4
votes
1 answer

Unable to read the SharePoint List using java

Here i am trying to read the list of sharepoint. For this i have done the following: I have downloaded the WSDL file which i got from The URL like: sharepointsite.com/_vti_bin/Lists.asmx?WSDL. and i have executed the following command to generate…
3
votes
1 answer

Passing objects to a JAX WS

I am highlighting one scenario in which a web service’s method with a java.lang.Object as a parameter can’t be invoked. I am using Netbeans 7.1 with Tomcat 7. For creating, deploying and accessing the web service, I followed the steps given at…
Kaliyug Antagonist
  • 3,512
  • 9
  • 51
  • 103
3
votes
3 answers

Generating client stubs from WSDL

I am starting on a new project with commercial vendor. I need to write an integration module in our application to consume commercial vendor's web service. So, WSDL is not controlled by us. I think the general approach is to do a "Contract First"…
tapasvi
  • 322
  • 1
  • 7
  • 15
3
votes
0 answers

JAX-WS client causes Jetty EofException

I am using an embedded Jetty server to provide Web Services (using Jetty-JAXWS2-SPI to allow Jetty to serve the requests) and I am seeing the following errors when a connection terminates from my JAX-WS test client (generated by…
trojanfoe
  • 120,358
  • 21
  • 212
  • 242
3
votes
4 answers

Calling service from Html

i want to call asp.net web service from java script and pass the parameters to it .is there any code sample or demostration that will help me to acheive that?? thanks in advance
Shoun
3
votes
1 answer

unable to hit the webservice using soapUI after proxy setting

Due to change in server configuration, in my project. We apt to proxy server while calling the webservice which is axis2. But the problem, here is we cannot able to access the the endpoint through the soapui(After configuring the proxy configuration…
ramesh027
  • 796
  • 1
  • 10
  • 27
3
votes
1 answer

Form Based authentication support for RestEasy webservice client

I am trying to create a RestEasy client for services host in JBPM server. The service url is always redirecting to a form based login screen which expects j_username and j_password. I need to login to the service and also have to store the cookies…
Rahul
  • 111
  • 2
  • 7
3
votes
1 answer

Basic authentication in a Spring Ws Client

Could anyone guide me on how to add Basic Http authentication when using Spring WS , namely the WebserviceTemplate class for writing a Web Service CLient? Thanks
user1611418
  • 99
  • 3
  • 11
3
votes
2 answers

How to Digitally Sign a SOAP request BODY in ColdFusion?

New one for me: I need to digitally sign and encrypt the body of SOAP request from a ColdFusion client application using a provider-issued certificate. I also need to decrypt the response in order to process it. I have searched for days an have…
3
votes
1 answer

SOAPFaultException: "None of the policy alternatives can be satisfied" , when running webservice client (ApacheCXF)

I am implementing webservice client throught the given 3rd-party wsdl, I wanted to ensure that I am able to send the SOAP request directly, so I generated request using soapUI, sent 2 parameters:
rekinyz
  • 6,576
  • 2
  • 29
  • 32
1
2
3
15 16