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
0
votes
1 answer

How to retrieve Currency Revaluation transactions using SuiteTalk web service

One type of transaction in NetSuite is "Currency Revaluation" and there are examples of such transactions (e.g. see those with InternalIDs 3335, 3346 and 3347 in the NetSuite testdrive sample data, Honeycomb Mfg). I would like to know how to…
Klitos Kyriacou
  • 10,634
  • 2
  • 38
  • 70
0
votes
1 answer

Consuming Restful Web Services using C#

CA exposes Restful web services. My client wants to utilize C# to invoke these Restful web services. I have c# experience, but zero experience with web services with C#. Any pointers on where to start, and what good books (paper back or ebook) will…
John Squarry
  • 81
  • 1
  • 9
0
votes
0 answers

How to authenticate from Java client for Wildfly web service?

I want to implement a client application for an already deployed web-service. The web-service is deployed as ear on a Wildfly 8 server and running. I generated the stub classes by parsing the web service's WSDL file with wsimport. I created a small…
fachexot
  • 491
  • 1
  • 8
  • 24
0
votes
1 answer

How to set time out period for HttpDefaultClient?

How to set time out period for HttpDefaultClient? For the below code I want to set some time out so that it will not hang for more time. String methodName = "getResponseFromGlobalService"; logger.info(methodName + " started " + "with" + restUrl +…
Rasmita jena
  • 183
  • 2
  • 3
  • 7
0
votes
1 answer

WebService call without client code using java standalone

I am facing same problem. here is the my trace. Without web service client code, I am trying to form SOAP request xml using java and send request to web service endpoint. SEVERE: SAAJ0008: Bad Response; Cannot process the message because the content…
0
votes
2 answers

Sending java object to c# web service

I am working on one project in which i am developing a java client for .NET/C#. I want to send information of device to the web service. I have created one class which contains the device information. I want to send the information of the device to…
V__
  • 538
  • 10
  • 20
0
votes
1 answer

Redirect to Web Form from Web Service through Java Client in C#

I have created asmx web service, which is redirects to web form. I am able to redirect to web form using .net client and through web browser. Is it possible to fulfill through Java client? Here is my code: [WebMethod] public void start(string id,…
Nitesh Kothari
  • 890
  • 12
  • 27
0
votes
4 answers

Autowired Spring NullPointerException

I have a problem with my code trying to generate @Autowired. The Class: public class ConsultasMDMWSClientImpl implements ConsultasMDMWSClient { @Autowired ConsultasMDMWSPortype consultasMDMWSPortype; public ConsultarClienteResponseMDM…
Jesus Alvarez
  • 1
  • 1
  • 1
  • 3
0
votes
0 answers

Java web service client

I have created a stand-alone Java web service client using stub class files and it works fine when it is run from Eclipse. When I moved the client and class files from stub to a unix box where it is supposed to run from, I am facing an issue (by the…
Nitin
  • 65
  • 2
  • 9
0
votes
1 answer

Java Web Service(SOAP) Message format generic (name/value properties) nodes vs specific nodes

Need a suggestion on Java Web Service(SOAP) Message format. Thinking of two message formats. Could you please share your thoughts on these approaches. What would you recommend? 1) Specific Message Format Specifying the message nodes with the actual…
Peddi
  • 92
  • 1
  • 9
0
votes
0 answers

consuming webservices but not able to show data fetched from webservices in listview

created xml for listview order.xml consuming web services in Webservices.java class private static String NAMESPACE = "http://ws.admin.gaurav.in/"; //Webservice URL - WSDL File location private static String URL =…
0
votes
1 answer

How to add security header to apache axis web service request?

I want to add following security header through java code to web service request header. " DEFAULT Admin
vishal
  • 25
  • 1
  • 8
0
votes
1 answer

The 'Action', 'http://www.w3.org/2005/08/addressing' required message part was not signed

I am accessing an external java-based web service I have no control over from a WCF client, using dual certificates for encryption and signature as well as custom binding. I am getting a successful response from the server but WCF is throwing a…
0
votes
1 answer

Web Service Client(Console App) not working on Windows Server 2008 R2 Standard Edition

I am trying to consume an ASMX Web Service in a console app, its working fine in Windows 7,Windows Server 2012 Standard,Windows Server 2008 R2 DataCenter,Windows Server 2008 R2 Enterprise, But its not working in Windows Server 2008 R2 Standard…
0
votes
1 answer

Generating client web services from Onvif wsdl file

I'm trying to create the client web services from the Onvif standard wsdl file located here. After I pass through all steps in Eclipse wizard using Apache CFX, I get this output: Loading FrontEnd jaxws ... Loading DataBinding jaxb ... wsdl2java…
artaxerxe
  • 6,281
  • 21
  • 68
  • 106