A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.

learn more… | top users | synonyms (3)

0
votes
0answers
6 views

Action Compositon Play2 Java

I'm currently developing a web service with Play2 and I have a problem with action composition. Here is one of the methods available for my web service : @Authenticated(Secured.class) ...
0
votes
2answers
22 views

ASP.Net web service large URL

We have to send a large packet to an ASP.Net web service through the URL. We cannot use POST for certain reasons, so we are URL encoding an XML package and we make a GET request to the service. ...
-2
votes
0answers
17 views

Webservices do not work when hosted in IIS

I searched a lot in the Google for this, made intensive debugging for weeks, yet with no solution. No web service work in my project since we changed server. I have many web services in many forms, ...
1
vote
0answers
12 views

Axis2 and interfaces

Consider this scenario: public interface MyInterface { } public class MyClass1 implements MyInterface { /* some stuff */ } public class MyClass2 implements MyInterface { /* some stuff */ } public ...
0
votes
0answers
38 views

Returing a json string using a webservice in c#.net

I developed an androidapp communicating with a .NET web service using soap messages. But I don't know how to write a web service which returns a json string that will be used to return some values to ...
-3
votes
1answer
21 views

Inserting into 000webhost Database [closed]

I am doing android programming, and i need to send the latitude and longitude value to remote database.And I am planning to use webservices for that.000webhost.com is my free hosting and database ...
0
votes
0answers
5 views

c# Consume Web Service with Certificate exception keyset does not exist

I am having trouble with configuring Service cert and client cert to establish connectivity to a outside service. service is on JAVA web service consuming by .NET client Service Call method ...
0
votes
1answer
19 views

Eclipse Web Service Client wizard and CXF

I'm trying to create a Web Service Client using the Eclipse Juno SR2 wizard. The service is correctly deployed and running on a Glassfish 3.1.2 server and I can see the WSDL file or create the client ...
0
votes
0answers
21 views

Ajax Request for Web Services

I'm trying to make a Ajaxon JSON request to a web service, but in Chrome, the log would show a arrow with a RED text saying similar to CHECK or something and then it would show the url with ...
0
votes
1answer
17 views

Using Session State in Web Service to preserve data sent via AJAX with no proxy

I have a web service which I am trying to use to create a shopping cart. The data is held ona separate domain to the website displaying it. I have set up the service as follows: ...
0
votes
0answers
9 views

Wss4jSecurityInterceptor giving exceception

I have developed one web service which is working fine with soup-ui but when when i am calling it with client it is giving me Null Pointer exception. If I remove security interceptor from both end it ...
0
votes
0answers
9 views

web service call reducing rate trading

Actually i am doing a iOS application which is about Trading. the thing which i want to know is "Time reducing Rate" we are aware of shares...getting down and ups. Here when we call a service like ...
0
votes
1answer
5 views

Calling a back-end web service with IBM Message Broker

I was trying to deploy a back-end web service to IBM Message Broker. Then create a Java client to call Broker, which in turn calls the back-end web service. If the Java client can call Broker, then ...
0
votes
0answers
14 views

Creating Maven Web Service on Tomcat

I created a Maven web application which name is "aa3" on Netbeans. I choose Tomcat server which Netbeans installed. And then I added a web service class. A warning appeared, it says: I choose Yes. ...
0
votes
0answers
21 views

Webservice returned HTTP417, then HTTP 403

So, I've been stumped for a couple of days on this now. First, to put you all in context : I took over software development for a company where software was handled remotely, so I have no access to ...
0
votes
1answer
20 views

Deletion of multiple resources in JAX-RS Service jersey implementation

I am new to restful services and willing to get some ideas from the experts. The application which will be accessing my service is having a datatable-grid (each row of the grid represents an Employee ...
0
votes
0answers
41 views

Why can I not retrieve a JSON file generated by a webservice using jQuery Ajax?

I'm trying to call a webservice using Ajax. The webservice should return a JSON file. It works, when I enter the webservice url in the browser so: ...
0
votes
2answers
32 views

How do I handle multiple play2 WS calls for a Set of objects and then return the successful calls to view

Let say that in my Controller I have a set of Sms objects. For each one of those objects I would like to call a web service and then for all the successful calls return the sms objects to view. ...
2
votes
1answer
30 views

Http 1.1 protocol validation

Is there any service or library that can validate an http1.1 server? I implemented a simple http server, and over a year or so I've been extending it as I need to such that I've got a pretty complete ...
0
votes
1answer
19 views

mvc 4 connect to external web service

I am developing an asp.net application from scratch using mvc 4. One of the requirements that were given to me was to connect to a web service, and call 2 search methods from it, but they only ...
0
votes
0answers
23 views

I need an Asmx Service with Xml Serialization on Client Side

The Objective: Add a new asmx Service on my Service Reference folder serialized with xml. Using Visual Studio 2010. The problem I'm adding a reference of an asmx WebService, but I don't know Why is ...
0
votes
0answers
13 views

PHP Nusoap Session

require_once('soap/nusoap.php'); $soap = new soap_server(); $soap->configureWSDL('ClientSecurityService','http://localhost/sec/webservices/'); $soap->wsdl->schemaTargetNamespace = ...
0
votes
5answers
37 views

objective-c freezes after sending to web service

I have worked so hard to write an IPad app, it takes 3 photos and send them to a .net soap web service. It sends the photos properly, I can see them in my server. But the problem is when I click the ...
0
votes
2answers
25 views

json to android could not connect to database

i'm trying to parse the information of a json array into android. I use the below code, and i get info from a webservice, if i open the php file it's all ok, but in android i get could not connect to ...
0
votes
0answers
9 views

webservice flow, proxy and soap address

I am very new to SOAP webservice. Want to know few things.. 1. There is an URL (say, A) by which we can access the WSDL, then what the "soap:address" is used for. I have found a new IP address (say B) ...
0
votes
0answers
8 views

@SchemaValidation Not working in websphere

@SchemaValidation is not working in websphere for me. I downloaded jaxws-rt.jar. wrote the class import org.xml.sax.SAXParseException; import com.sun.xml.ws.developer.ValidationErrorHandler; public ...
-1
votes
1answer
17 views

How do you select multiple images from gallery use those in my app? [closed]

I want to select multiple images from the gallery and use it in my app to send it through a web service. I am using this code MULTI PHOTO SELECT as a reference to select multiple images. But this ...
2
votes
1answer
19 views

Validating path to nested resource

I'm using Jersey to implement a RESTful Service with some nested resources. This is a basic example of what I currently have: @Path("/sites") public class SiteResource { @GET ...
1
vote
0answers
11 views

Websphere Web Service Has Different Namespaces On Different Deployments

I have a java webapp that exposes several webservice endpoints that appear to be behaving slightly differently under different deployments. Were using IBM Websphere 6.1 in all environments. The ...
0
votes
2answers
18 views

Better way to loading Table with data coming from server.

I am implementing tableView which loads data from server. I got two scenario: Get complete data from the server and store in the array say 500 items. Now whenever I need those data I will call my ...
0
votes
4answers
49 views

Why this is not valid regular expression [closed]

I am facing following exception while parsing this '((([A-Z][,]+)+)([A-Z]?))|([A-Z]))' regular expression WARNING: Exception message: org.xml.sax.SAXParseException; systemId: ...
0
votes
0answers
21 views

Writing a (wcf) webservice that returns XML and an XSD / WSDL

I'm about to write a webservice in C#, which should return an XML document. I am planning on using WCF because MEX will allow people to easily build a client to interface with it. I'm a bit confused ...
0
votes
2answers
22 views

How do I share Service Reference Types Across Multiple Tiers using C# and Visual Studio 2010

My project is split into a service tier project and an implementation tier project. Both are written in C# using Visual Studio 2010. The service tier accepts a request object and passes it to the ...
1
vote
0answers
27 views

Software Engineering for REST APIs

At my last project we designed an issue documentation system component (like a bug reporting tool) which should integrate into different Client Applications (Desktop Applications, Mobile Apps and also ...
0
votes
2answers
15 views

objective-c send image to .net soap webservice

I am trying to send images to soap webservice from an IPad. I couldnt succeed yet. I know that I have to send base64binary for image I dont how to get the image and convert it to that format. there ...
-6
votes
0answers
44 views

fetch data from the web service c# [closed]

I have a web service and i need a programme that make me fetch my data from this web service this web service is and print it to the console :How can i do this . link{archive_number}.xml and the ...
0
votes
2answers
18 views

xcode send boolean to soap webservice

I am trying to send boolean value to .Net Soap Webservice from IPad application. I couldnt figure out how to send it. I tried true, @"true", 1. but they didn't work. has anybody tried it before? Would ...
0
votes
0answers
9 views

Android: EWS SyncItem Request Issue

I was trying to hit my exchange server with basic authentication in android to sync the mails in my phone. I am initially hitting SyncFolderItem Request with max count as 512, and i am repeating this ...
0
votes
0answers
7 views

Generating Loosely Typed wsdl in Siebel for dispatching the input to corresponding service

I have got a requirement to create a parent wsdl which direct to corresponding wsdl based on the request. This has to be handled because any change we make, it affects all other layers and the ...
-5
votes
1answer
23 views

Looking for some free web service to resize image by passing parameter in URL [closed]

Is there any free web service to resize image by passing parameter in URL likes: http://webservice.com/resize.php?src=http://example.com/demo.jpg&width=100&height=100 Thanks
1
vote
0answers
21 views

Database connection pooling for c++ recommendation engine

I am considering to implement a recommendation engine for a small size website. The website will employ LAMP stack, and for some reasons the recommendation engine must be written in C++. It consists ...
0
votes
1answer
21 views

Can not connect MySQL when client call method in server using webservice

I has a trouble with JDBC connection Webservice (Axis2) designed to return a list string (select from DB) @Webservice public ArrayList<String> loadDatabase(String txtSearch) { ...
0
votes
0answers
28 views

Using jQuery to CREATE a Web Service [closed]

This may not even be possible, but I thought I would ask anyway. I know how to consume web services with jquery/ajax, but in this case, I have a page of jQuery that makes several ajax calls to ...
0
votes
0answers
8 views

Upload service runs well in localhost, fails in server

I am doing this tutorial but it cannot execute if the server package is deployed into a server. The WSDL is available but the client complains about not seeing the service provided. Do I need the ...
-1
votes
1answer
18 views

How would I go about making a key distributor? [closed]

I want to create a application for my website in which a user will click a button, and receive a key, in this case, a betakey for my game. How would I go about having the distributor give out the ...
0
votes
0answers
12 views

What type of statistic or probability is this?

Let's say I go to 200 sites that are about suggested browser. Next, let's say that I track how many times I hear Chrome suggested, IE suggested, Firefox, etc... Looks something like this (** note: ...
0
votes
1answer
17 views

How to bind the content to restful service's body to post it to the server?

How do I send JSON as BODY in a POST request to server from my angular page? I found something like we need to bind it to the service body, but don't know how to bind? Any help? Thank you
0
votes
0answers
13 views

App architecture with multiple layers/nodes

I have a web site which I would like to split to layers Web server with python app to accept requests from users (more then one) Single internal server with all accounts, balances etc Basically when ...
1
vote
0answers
7 views

send zip file using ksoap2

I'm trying to send a zip file using ksoap2 as client... File is arriving but corrupted, I think is something in my code when I encode it in Base64 (I'm using commons code)... WS FileInputStream fis ...
0
votes
0answers
18 views

Call asmx web service with JQuery mobile .ajax

i have asmx web service that returns data from my server my web method code is [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public string GetFirstNineSubCategories() ...

1 2 3 4 5 576