Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
2answers
807 views

How to merge common parts of WSDL and XSD from different services?

I have to interact with a set of web-services that each come with their own WSDL and XSD. The XSD are sometimes merged in a single file sometimes spread along multiple files (20-30). However, from ...
12
votes
3answers
7k views

Java Webservice Client (Best way)

I have a third party WSDL, I need to write code in JAVA for a web service client to invoke the operations in the third party WSDL. Right now, I have generated the client stub using the WSDL2JAVA tool ...
8
votes
5answers
784 views

JSON array type resolution in ASP.Net webservices

So I have worked out how to pass my custom objects into ASP.Net json webservices. Works a charm. Problem I am having is passing in straight arrays of my custom objects or alternatively passing in ...
6
votes
2answers
117 views

Share an enum between ASMX Web Services

I have a web service project with several web services. Two of this web services share an enum that is defined in a BL class, like so: public class HumanResourcesService { public ...
5
votes
2answers
251 views

How to use T4 to generate two files at the same time from one template?

I am having a case in which I need to generate two CSharp code files with pretty the same code but different namespace of the input and output types of the methods. In fact each file is for a specific ...
4
votes
2answers
132 views

Webreferences sharing classes

I wrote a few SOAP Webservices in Java, running on a JBoss 5.1. Two of them share a class, AddressTO. The Webservices are deploying correctly on my ApplycationServer and all went well until I try to ...
4
votes
2answers
224 views

Consume a web service in R

Here's the scenario: I have JBoss serving a web service with JBossWS providing me with a wsdl. I have connected and used it from both .NET and Java so far (and it has been quite easy once I figured ...
4
votes
2answers
1k views

Netbeans Basic Http Auth Jax-WS

how can I access a webservice through a basic http authentification? I am using the netbeans built in webservice client features. But when I try to access the webservice, I get an exception with a 401 ...
3
votes
3answers
401 views

How to consume SOAP/REST web services on Android (Service/Broadcast/Intent/etc)

Is there a common way to consume web services from Android applications (aside from the protocol)? What I need is a Service or Intent or Thread (or anything else) that is capable of: staying alive ...
3
votes
1answer
82 views

On the client side, how should I be using complex type objects returned by a CXF webservice?

I've just started using CXF 2.4 to expose some methods in an existing web application. One of the methods returns a complex type object - Employee which has an Address object as a property. The ...
3
votes
1answer
175 views

How to manage multiple classes with web service?

I am creating a web service in asp.net. I not getting which one is better way to manage multiple classes with web service. Two way in my mind but i am not getting which one is better. 1) Call all ...
3
votes
1answer
1k views

Decode XML returned by a webservice (< and > are replaced with &lt; and &gt)?

I'm calling a webservice which returns XML. If I'm using SOAP, all is fine, I get valid XML back. If however I use POST to get the return value, the XML arrives encoded as the content of the response. ...
3
votes
1answer
403 views

Can I set the SoapHttpClientProtocol Timeout property via a config file?

When I create the web reference for a web service, Visual Studio magically creates a Settings class which allows me to change the referenced web service URL via the application config. Very useful ...
3
votes
4answers
292 views

implement a callback between two sites - communicating between two sites

I have a web app in http://domain1/app1/called.html, and I want to embed that application inside http://domain2/app2/caller.html with an iframe (or a popup, it's the same) the user should be able to ...
3
votes
3answers
1k views

Generic WebService (SOAP) client library for C++

I'm looking for a simple C++ WebService Client Library that can be easily linked into my application. Preferably this library: can be used to access any SOAP WebService (so I can pass the URL, the ...
3
votes
5answers
323 views

Does calling a secure Web services (HTTPS) requires more setup?

I need to call a secured web service (https). using Java (or even any other prog lang). Do I need to do any extra steps rather than the usual steps to create a client for HTTP web service? EDIT: ...
3
votes
1answer
361 views

SSL Connection problem to web service from Java bean

I have written an application that connects to a SSL web service (including client certificate) through jaxws. For this to work I have a wstrust.jks that contains trusted root certificate for ws, and ...
3
votes
2answers
5k views

Using a C# Service Reference SOAP Client with different Endpoint URIs

I have a SOAP Webservice that is available on multiple servers, thus having multiple endpoints. I want to avoid adding multiple Service References (C# SOAP Port Clients) with different names just to ...
3
votes
2answers
1k views

Can anyone recommend a VIN decode service?

I'm looking to implement a VIN (Vehicle Identification Number) validation and decode for a site I'm working on specifically for Canada. We only want limited vehicle information Make, model and year. ...
2
votes
0answers
50 views

Generating WebService client from wsdl with slashes

My toolset consists of Eclipse, CXF 2.5.1 and OpenJDK 6. While generating a webclient from a wsdl I get errors referring to its name which contains a slash: 'soap/SomeService' is not a valid value ...
2
votes
1answer
54 views

Generation of JAXB based WebService Client(Stub) from WSDL

We have a requirement where we need to develop a webservice client based upon JAXB. We have only the WSDL url with us. Is there any such tool exist which can do this for us ? As of now we are ...
2
votes
2answers
118 views

Generate web service client stubs and transfer objects in SAP from a WSDL

is it possible with SAP to generate client stubs and transfer objects from a WSDL served by a .NET WCF web service? Or do I have to build my SOAP XML requests manually? To be more on the point. I ...
2
votes
0answers
75 views

How to persist SOAP Messages in MySQL Database - working with Axis Client

I am writing a java axis client, how could I persist raw xml into data base, till now I have found two ways of logging raw xml, but they are for console or to a file, but I need to persist each ...
2
votes
2answers
73 views

How setup java-first webservice client-jar in Maven?

Need some advice on how to setup maven-build of the client-jar for java-first webservices... Previously, I have been working with wsdl-first webservices, where you simply save the wsdl in ...
2
votes
0answers
198 views

Rampart Client throwing exception when trying to consume the service

I am trying to invoke a axis2 web service enabled with Rampart security. When I try to invoke the service through the client I am getting the following exception, (I have also included Jaxen Jar in my ...
2
votes
1answer
62 views

How to make jQuery consume a secured service?

i want to consume a web service which has certificate based security. is it possible to use the browser certificate (x509) store to consume such a service
2
votes
2answers
189 views

Writing a Webservice Client from a WSDL

I have a WSDL published on an application server somewhere. I would like to write a webservice client that uses the WSDL to send requests and recieve responses. I have not done this before, and most ...
2
votes
1answer
261 views

SOAPpy - how to pass a security Header?

Im currently developing a python webservice for an application which uses Axis2 WS-Security the simplified relevant code is from SOAPpy import SOAPProxy from SOAPpy import WSDL file = ...
2
votes
1answer
227 views

Accessing a SPNEGO authenticated webservice from C#

We have a web service that serves data over HTTP and authenticates users via SPNEGO (and single sign-on). We want to write a C# client for this web service. Is there any standard/provided way in ...
2
votes
2answers
831 views

Passing Arrays as Parameters to Soap Webservice in non-WSDL mode

I am using Zend_Soap_Client to query data from a webservice provided by SAP. Since the auto-generated WSDL file has a few flaws, I use the non-WSDL mode of the client. I managed to successfully call ...
2
votes
1answer
236 views

how to create a webservice to wrap a perl scripts or shell scripts

Our development is mostly on windows, VCS is ClearCase. We also use quite lot of scripts (perl, bash) on Linux to do code quality checks, regression tests etc. For example a script takes stream name, ...
2
votes
3answers
243 views

Consuming Web Services by AJAX directly

I'm currently developing a web-site for the public transportation system based on the Trafikanten API (http://reis.trafikanten.no/topp2009/topp2009ws.asmx) The site has several functionalities though ...
2
votes
1answer
242 views

PHP SOAP Function name must be a string?

Sorry about posting the whole error. Basically I have two functions that are running on the soap server and work great. I've added a third function 'getk' that does nothing more complicated that the ...
2
votes
1answer
591 views

How to read an xs:any response using CXF Generated Client?

When consuming a webserice with CXF 2.1.4 (the generated client) I am having problem getting the response based on the following XSD snippet in the WSDL. CXF Generates a List representing it, but when ...
2
votes
1answer
922 views

Define the custom namespace to package mapping of generated file from wsdl - Axis2 eclipse

I have wsdl file in Eclipse and I am generating the client via axis2 plugin. The files are being generated to a package called com.mycompany.stub in source folder. I would like to change the package ...
2
votes
1answer
554 views

Accessing Microsoft Exchange using Java - any better APIs

I have a requirement to access Exchange Server(2003, 2007) to send and receive mail, contacts, folders and calendar using Java API. Exchange Server 2010 supports this with Java webservices, ...
2
votes
1answer
906 views

WP7 consume a WCF Service

I have a WCF web service deployed on azure. When I consume it using WCFClientTest, I successfully get return data after invoking my methods. But when I try to consume it through WP7... it returns ...
2
votes
1answer
126 views

OpToSoapDomComv.TRefCache.FNodes contains references to non-existing XMLNodes

In our D2007 application we are using a Webservice, accessed with a THTTPRIO object. When the TDatamodule containing the THTTPRIO object is Destroyed an access violation occurs. This AV is raised ...
2
votes
1answer
2k views

How to pass a DateTime value to a WebMethod (ASMX)

I have a WebMethod with a parameter defined as DateTime. When I call that webservice, I get this error: at ...
2
votes
1answer
553 views

Optional Parameters not optional for Soap Calls using WSDL mode

I try to call a webservice provided by SAP to update customer data. I used SoapUI for testing the connection and the actual request that is needed. Everything worked fine, this is how the SoapUI ...
2
votes
2answers
2k views

How to get data from a json-rpc webservice : iPad /iPhone / Objective C

I'am working on a iPad project and this project needs to talk to a json-rpc webservices. The webservices is based on Drupal with module : cck and views 1)I need to push a json object into the ...
2
votes
1answer
497 views

Web service client stacktrace

my intention is not to spam SO with my stacktraces, but i appreciate help help on this one AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultSubcode: ...
2
votes
1answer
690 views

Making a Web Service client

i have to make a web service client from an wsdl file. I have followed tutorial to create and test the service client in the eclipse wizard, and (I thaught that I have implemented the code to call the ...
2
votes
1answer
3k views

Blackberry kSoap2 & Soap Header

Trying to specify a custom soap header. Not sure how the SoapEnvelope.headerOut propery is to be populated. My code so far? String soapAction = serviceNamespace + "/SearchCustomer"; SoapObject rpc = ...
2
votes
3answers
441 views

Problems POST-ing with pyCurl

i'm trying to POST a file to a webservice using CURL (that's what I need to use so I can't take twisted or something else). The problem is that when using pyCurl the webservice doesn't receive the ...
2
votes
1answer
847 views

How to use the webservice-client classes generated with Eclipse?

I used eclipse Helios to create a Web Service Client for consuming an axis 1.4 web service. It generated 2 packages: 1 - datamodel. 2 - client. Inside client package there are 5 classes: 1- ...
2
votes
1answer
667 views

How to set a Security Token in WCF?

I'm upgrading an application from .net 1.1 to 3.5. This app connects to a WCF service. Previously the web service client was configured to use a Security Token, like so: RegistrationWSWse ...
2
votes
1answer
421 views

Windows Service to upload files on SharePoint server. Some questions

I would like to upload some files on a server Share Point. My questions are: 1) I started developing my project as a Windows Service but I read several parts of this WebService. It's mandatory that ...
2
votes
1answer
426 views

NSMutableArray populated but data lost somehow

I start process of getting data from viewDidLoad and populate NSMutableArray with that data. But when I want to populate UIPicker I cant because there is no more data in that array. How did I lost ...
2
votes
1answer
175 views

Best architecture practice for multiple clients using one web service

I have a web service and multiple clients that will use it. A MVC 2.0 website, a winforms app, and potentially mobile apps. I understand that in the case of the mobile apps, each application will ...

1 2 3 4 5 7