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
1
vote
0 answers

apache-cxf client works with exec-maven-plugin, but not from outside

I am having problems triying to create a WS client in java. The libraries I'm using is apache-cxf 2.12. This is an old version but I want the web service to be added to a JBoss application that is already running and uses Spring 2.5.6, so this…
ibonso
  • 31
  • 5
1
vote
2 answers

Upload videos to youtube from asp.net app without API

I just wanted to know It is simple to upload videos to youtube in c# but i want to do that without using their API. I am going to create a webpart for office365, so i can't use any external dlls. Only the .NET framework's assembly i can use.
1
vote
1 answer

How to convert a zip file into an octet stream

I am working on SOAP web services. I have been given a third party WSDL URL for which I need to generate client code. I need to pass a zip file which contains a bundle of XML, for which the passing parameter should be type octet stream. I don't know…
Joseph Martin
  • 76
  • 1
  • 3
  • 12
1
vote
1 answer

Error accesing https webservice after disabling http port in the server

I was trying to access an operation from a https site after disabling http port in the server. It throwing the below error. When http is enabled its working fine. Then i am able to request using https .. Please find the code for enabling…
hashique
  • 357
  • 4
  • 11
1
vote
3 answers

problems cxf with websphere

I want to call a web service by JaxWsProxyFactoryBean. I tested in tomcat 6 and everything was OK, but when I deployed on WAS 7 it didn`t work. My problem is: when I call factory.create() method of this code: JaxWsProxyFactoryBean factory = new…
farhad
  • 373
  • 2
  • 14
  • 28
0
votes
1 answer

Calling webservice with complex parameters from c# client

Hello, Here is a class ... public class Authentification { private string userField; private string passwordField; public string user { get { return this.userField; } set { …
0
votes
1 answer

Invoke method in COM component exposed webservice throwing error

I am basically a .NET guy.I don't have much knowledge in VB (COM components). Now,I come across a project where i need to expose a COM dll as a webservice and consume the same in my Asp.NET application.I hosted the webservice on my local development…
0
votes
2 answers

is there any Java API to catch request and response SOAP envelops?

I can uses Web service client classes to obtain the result but instead of the text result i want complete SOAP message in my JavaSE program. How can I do that? Any Idea?
Azfar Niaz
  • 1,516
  • 4
  • 13
  • 21
0
votes
1 answer

Weird XML exception when sending SOAP request

Have an application which publishes XML data across webservice using SOAP. The data is pulled directly from an Oracle database and parsed into XML but for some reason the data being pulled out of the DB is throwing the following invalid XML…
timothyclifford
  • 6,799
  • 7
  • 57
  • 85
0
votes
1 answer

iPhone web services NSURL

hi I am working on an application which takes data from a website and it displays it in table. I have been sucessful in making like an RSS feed (made like a twitter feed so I think it is an xmlparser) but now I want to get data from a website which…
Tushar Chutani
  • 1,522
  • 5
  • 27
  • 57
0
votes
2 answers

CXF directory must be set in global preferences SOAP UI

I'm using IntelliJ on Mac OS to create the stub from SOAP UI. After entering the WSDL url, output directory as "/Users/kaushik/Desktop" and package, when I try to generate the stub, it displays an error in a dialog box "CXF directory must be set in…
Kaushik
  • 177
  • 2
  • 3
  • 13
0
votes
2 answers

How to add security header parameters to SOAP Request in java

Default header is empty and I have to add security header to Soap request as below:
0
votes
1 answer

Access MySQL tables from BlackBerry app

I want to create a BlackBerry app for OS 4.7 that connects to a remote MySQL database and fetches all rows from a table and displays them in the app. I searched and some say that I can use PHP as a middleware for the app on the device to talk to…
developer
  • 5,178
  • 11
  • 47
  • 72
0
votes
0 answers

How do I use the web service classes generated with Eclipse from WSDL file?

I used eclipse Oxygen to create a Web Service Client for consuming an axis 1.4 web service. It generated 3 packages: 1 - datamodel. 2 - Message and Response Structure. 3- Service. 1 & 2 are fine I have no issues with these. Inside service package…
Neil Suri
  • 1
  • 1
0
votes
1 answer

Calling webservice with JqueryMobile won't work

Can you tell me where the problem is in this code: $('#callAjax').live('click', function (event) { // $("#resultLog").html("Working...."); $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url:…
bp581
  • 859
  • 1
  • 16
  • 47