Tagged Questions
0
votes
1answer
12 views
Restful service consuming WCF self hosted service
I am currently working with an application that is using a restful service. There is another application that has a self hosted WCF service running. I would like to consume the self hosted service ...
0
votes
0answers
8 views
Routing to an ASP.NET web service method?
We've got a jQuery widget which populates its contents from a cross-origin RESTful web service using JSONP. Unfortunately, due to various browser issues associated with HTTPS, JSONP and client ...
0
votes
1answer
24 views
What strategies exist to accomplish transactions over an OData service layer?
Consider the following example:
An OData service layer exposes Order and OrderLine resources. A consumer retrieves an Order and its related OrderLines. The consumer edits the Order, edits 1 ...
-1
votes
0answers
17 views
Design of a simple Service Oriented Architecture
I have to develop an internal application in order to automatize some of the business processes our company repeats each time handling projects and customers.
I do not have any constraint about data ...
0
votes
3answers
43 views
How to upload file into webservice [on hold]
How do I upload a file or image or video into a API REST service.
Do you have any tutorial, example or code.
Help me in understanding this concept.
1
vote
1answer
14 views
Can Authentication Be ByPassed in a Salesforce Rest Webservice Call
I was wondering is there any way to create a REST webservice in Salesforce which can be called from an external system without an oAuth token or session ID. It's completely bad practice and an ...
0
votes
0answers
6 views
how to return RESTFUL response from a JAX-WS WebService
I have a JAX-WS WebService running and I want to add a RESTFUL method in it to return HTTP response, without writing a new service.
Is there any way to do it?
Thanks a lot
0
votes
0answers
21 views
Converting JSON into multiple java DTOs in Spring REST webservice
I am getting JSON input to my Spring REST webservice which is of the structure (ignore syntax please):
{ "metaData" : {
"processingType":"sendMail",
"fileId":"1234",
...
0
votes
0answers
40 views
Rest web service Java Vs C# [on hold]
So I am going to develop restful web services in one of the projects I am working on.
I am now confused between the different approaches I may use to develop my application.
Will using to develop ...
1
vote
0answers
24 views
How to handle Jersey web services returning VO.?
Hello I am trying to implement restful web service using jersey. In which I want to set up connection to a remote database and do some DML operation. Here I am attaching my code. Please help me to ...
0
votes
0answers
14 views
Django library for consuming XML service and automatically mapping into Django model object?
Is there a jax-b equivalent in Django?
I would like to consume a few different xml restful services that other people have written (publicly available) and parse them into Django model objects, ...
-3
votes
0answers
21 views
Application somehow using REST Services.
Can you show a list of applications that are using in their work in any reason REST services? I have an application that exposing existing data sources for consumption as REST services and I need to ...
0
votes
1answer
29 views
File_get_contents returning null/invalid format. when webservice which is been called returns an object
I have a C#(Rest Service) web service which returns an object.
public object[] GetObject()
{
object[] arr = new object[3];
arr[0] = "String literal";
arr[1] = 3;
arr[2] = null;
return arr; ...
-1
votes
1answer
11 views
API to scan email?
I'm trying to make an app that involves scraping the email of a user to make recommendations. I understand that TripIt does this but somehow it seems to be too specific to travel. So any links or ...
-1
votes
2answers
31 views
What is the expected standard behaviour of integer/decimal 0 in a JSON web service response? [on hold]
In a web service JSON response,
When the integer value is ZERO (0), or a decimal value is ZERO (0), do you expect it to be returned as the following (see example below) or do you expect it to be ...