Tagged Questions
0
votes
0answers
14 views
How to define contracts for JSON request/responses. Especially the extenisble ones
I am working on a REST service, which supports both XML and JSON requests/responses. There will be multiple clients, some will use XML and others JSON. Clients may be written in Java, Objective C, ...
0
votes
1answer
32 views
How send and receive soap+xml in RESTful services in C#
I want write the RESTful web service for Enterprise Mobile Device Management in C# to post the request show below which is defined by Microsoft:
POST REQUEST INFO:
**Header:**
POST ...
0
votes
1answer
30 views
How to read XML file and send it as a response in restlet
When a get request is invoked to my server, I'm trying to send an XML file as a response.
@Get
public Representation getRootDeviceXML() throws IOException {
File xmlFile = new ...
0
votes
0answers
52 views
Unable to verify xml against an xsd
I have converted an xml file to xsd using trang and I'm attempting to verify its structure is correct.
Here is the code I'm using to verify its structure :
Driver.java :
import ...
0
votes
1answer
11 views
Oodle PHP XML request returns nothing
I have found very little documentation on this API so I have came here with the hopes that someone knows how to use this thing. When I try this nothing shows up. For now I am just trying to display ...
0
votes
1answer
10 views
What kind of script/app to build for REST service over HTTPS
I am tasked by my manager to build a simple app/script that retrieves data from a network appliance that has an exposed REST service over HTTPS. The data I need can be simply retrieved using a secure ...
0
votes
0answers
32 views
JSON ReSTful service namespace issues
I have a ReSTful service up. I now want to expose another service which reuses the same Request/Response POJOs used in the first XML-based service, but has a JSON Request/Response.
Now, i have these ...
0
votes
1answer
31 views
Call an URL and send parameters as POST using PHP
I know this is maybe a very dummy question, but I'm facing a requirement with PHP, I've made some very simple things with it, but now I really need help.
I have this scenario:
I invoke a Java Rest ...
0
votes
1answer
55 views
How to avoid a marshal exception
I am getting this error
The server encountered an internal error (javax.xml.bind.MarshalException - with linked
exception: [com.sun.istack.SAXException2: A cycle is detected in the object graph. ...
0
votes
1answer
33 views
Java, Jersey, xml substitution for @Path annotation
I have a project with RESTful services
Root classes must use @Path("/mylink") annotation
But I need to make some different ears with the same war, and path for root classes must be different
Best ...
0
votes
0answers
47 views
XML to JSON Serialization NewtonSoft General Data Format JToken Value
I'm using NewtonSoft to convert XML to JSON data.
With the following XML:
<NewDataSet>
<Student>
<ID>1</ID>
<Name>Alex</Name>
</Student>
...
0
votes
1answer
24 views
how do i output an xml file using rest
i have an xml file called articles.xml that i am trying to access with a rest service.
what i want to do is get all the articles in the articles.xml file and display them using a rest service.
i have ...
0
votes
0answers
33 views
what is type of this Response type ? (it's no json, or xml)
I am familiar with json or xml response format/type.
JSON :
{
"status": "success"
"code": "10"
}
XML :
<status>
success
</status>
<code>
10
</code>
...
1
vote
2answers
55 views
How to insert XML into another XML file ( REST API )
I need to pass to an application which uses REST API parameters in following XML file
paramValue = "<tag><stillonetag>value</stillonetag></tag>"
xmlIn = '
<?xml ...
0
votes
0answers
41 views
Namespace in XML request/response in REST
My XSD has some namespace defined like
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0"
...
0
votes
1answer
52 views
transfer xml file to a URL using powershell script
I have an xml document that needs to be uploaded to a url for processing by the webservice, I have limited resources so I'll have to use a powershell script for this task, ver 1.
No, I cannot upgrade ...
1
vote
2answers
124 views
WCF Restful post Services returns BAD REQUEST(400)
I am trying from few days to consume wcf restful service but it is giving me bad reqeust. Please Help me out.
Here is my configuration file
<system.serviceModel>
<bindings>
...
0
votes
1answer
65 views
FOSRestBundle output wrong xml
My XML output looks wierd when I request for xml..
Controller:
use FOS\RestBundle\Controller\Annotations as REST;
class RestController {
/**
* @REST\View
*/
public function ...
2
votes
1answer
85 views
Node.JS Odd Behavior Receiving Post Data
I am sending XML data in a post request to my node.js server. The server is setup to accept post and have been running tests without an issue through CURL. Now I am attempting to get this same data ...
0
votes
0answers
18 views
REST Utility for getting JSON/XML from one site, munging, posting to another site
My company is switching task managers, and I'm looking to get all of our old tasks copied over to the new system. Both the old and new systems have REST APIs for reading & writing tasks, but ...
0
votes
0answers
86 views
Bad Request when using ContentType “text/xml” and predefined XML in WCF REST
I need to write a REST service that accepts XML documents from a client application. I don't have access to the client application and it cannot be changed.
It sends documents using a HTTP POST with ...
0
votes
0answers
45 views
Parsing REST XML
Im currently at the point of my project where I have a large string containing all the information of an xml call.
The file I'm getting is apparently in REST format rather than RSS. I am SOOOO new ...
2
votes
0answers
128 views
How to exclude properties when requesting from struts-rest-plugin?
I am working on struts-rest-plugin index method to return list of my Fruit objects in xml or json format. It works really well.
Model class:
class Fruit {
private String name;
private ...
1
vote
2answers
78 views
WCF Rest Change name of root return element
I have
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Xml,
RequestFormat = WebMessageFormat.Xml,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = ...
0
votes
0answers
29 views
Web Service transfer (XML) examples
I'm doing a research about WS-Transfer through XML. I was looking for different XML implementations that are used for WS-Transfer but i can't find that much info about it. Is there an overview of XML ...
1
vote
2answers
94 views
Best practice - REST URI Design for resource identified by two names
A REST resource should be identified by two names. What is the best practice for this?
My ideas:
.../{id1}-{id2}
.../{id1}/{id2}
An id can consists of numbers, letters and special characters.
...
1
vote
1answer
79 views
Not show XML element if setter in JAXB Model was not executed
The following JAXB Model is given:
@XmlRootElement(name = "Customer")
@XmlAccessorType(XmlAccessType.FIELD)
public Customer {
@XmlElement(name = "Name")
private String name;
...
0
votes
1answer
57 views
RESTful URL for the properties of an entity (How to)
I am designing some restful urls, but I am undecided on how to retrieve an entity of my domain.
At a lower level I have a database with many-to-many and one-to- many relationships.
Let's suppose ...
0
votes
3answers
72 views
How to read the StreamReader response from Client?
I am new to REST webservices. There is an existing REST service that I need to consume in a C# console application. I am getting the XML response in the following line.
readStream.ReadLine();
How ...
0
votes
1answer
38 views
How can I parse an Axis XML file?
I am having a bit of a problem trying to parse an XML file generated with Axis Java Web Service in C#. The file has the following format:
<ns:getAcctsDetailResponse ...
0
votes
0answers
36 views
how to post xml to rest server from client and how to extract xml on server side from request in java
I am working on following project in java where trying to build Rest server which will take Request along with xml sent from client which needs to be extracted from post method which I need to ...
0
votes
0answers
22 views
symmetric v/s asymmetric XML encryption [closed]
which is better symmetric or asymmetric XML encryption for web services.
Advantages and disadvantages of each.
0
votes
0answers
72 views
How to pass variables from rest console to bonita user experience?
I'm new to Rest . I'm trying to pass variables(department ,name) from rest console to bonita user experience. I've created a form that will take two input arguments in bonita studio and exported the ...
0
votes
0answers
78 views
How to Fetch Data From XML Output From a REST service? [closed]
I am trying to fetch data from the output(in my case its in XML format) and store it in arrays of class Objects such as in this article.
Instead of using SOAP(used KSOAP2 just fine in other apps)..I ...
0
votes
1answer
50 views
XML parsing returned from a URL query
I am working on LinkedIn APIs where I make a query using URL. The result of the query is returned in XML and I need to display it to the user. Does simplexml_load_file() call supports this fetching ...
0
votes
1answer
905 views
A message body writer for Java class java.util.ArrayList…and MIME media type text/xml was not found
Im using Jersey to build a REST Service and want to return a Collection<String> as XML.
@GET
@Produces(MediaType.TEXT_XML)
@Path("/directgroups")
public Response ...
1
vote
0answers
92 views
WCF Rest : DataContractSerializer - serialize an object whose name contains a colon
Hi to all I need to Get XML Custom from my WCF/REST but the name of my property is not serialized as I wish because it contains a colon.
My DataContract for an error response
[DataContract(Namespace ...
2
votes
1answer
62 views
Provide a GET method in JSON and XML
I'm developing REST services using Jersey.
So, if I have an object of User type (which contains information about a User), like:
User userObj = new User();
And I want to provide that information ...
1
vote
2answers
106 views
Store xml in C# class field
I have a requirement like i need to write an entity class in C# which can hold xml data.
I want to avoid overhead of checking the well-formedness of saved xml.
I have a corresponding column with type ...
0
votes
1answer
104 views
Get method returns XML and JSON
If i do this:
@GET
@Path("/users")
@Produces("application/json")
public String users()
{
String users = null;
ArrayList<User> userList = new ...
0
votes
1answer
44 views
Jersey REST sign xml
I implemented my REST services using jersey. The communication layer is secured with ssl.
On the client-side i got the requirement that i should sign the xml before i call the services and verify the ...
1
vote
0answers
38 views
Light description language of restful web services
i need to describe my restful web services, so i can process it easily. I tried with wsdl 2.0 and now trying with wadl, but i am curious if there is a language that use JSON instead of XML?
thx for ...
1
vote
0answers
53 views
Using XPath to Extract and Use Data from a GET response
Here's the scenario...
I perform a GET to retrieve an XML. I want to extract a value from the XML to use in a subsequent test. For example, I do a GET to retrieve an Order XML. I then want to ...
0
votes
0answers
79 views
SOAPUI: Change Dynamicaly the field value of an XML Body in REST POST request
I defined a new POST REST request in SoapUI and would like to change dynamicaly a field value the XML Body.
Let's say I send the following XML body:
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
53 views
PHP Luracast Restler adding namespace attributes to root element
Been having some trouble with this. How do I add namespace URL attributes to the root? I s that even possible? Any workarounds are welcomed. I have to use some of the definitions from Dublin Core, and ...
2
votes
1answer
51 views
Different REST-ful representations of the same Entity and content negotiation
Given the REST-ful web service
/product/{product-id}
that returns Product XML documents of the Content-Type
x-esvc/product+xml
I also need to support
x-esvc/prices+xml
(x-esvc is a custom ...
1
vote
0answers
160 views
How to get Spring MVC output using XStream to convert JSON to XML
I have a web application using Spring MVC (3.0.5) that outputs JSON using the HttpMessageConverter when the application/json is passed in Accept header. I want to output XML using XStream, but instead ...
1
vote
3answers
91 views
Is there a Java library for exposing API in different formats like XML, JSON, CSV?
I want to expose certain services through web accessible API. I want to provide the client the option to choose the response format.
Something like this: ...
0
votes
1answer
57 views
Desired perl REST-API output
I am using the Perl Apache2::REST module and the standard way of returning data is to issue $resp->data() and assign a value. I have something like this
my $text = {
'tag1' => 4,
'tag2' ...
-1
votes
2answers
380 views
Get a particular xml tag from Curl Response(a rest api) [duplicate]
Am getting a curl response like this,
<result>
<term>ve</term>
<rhymes>
mckie, mcnee, mcphee, mcphie, mcree, mcvea, moree, mt, musee, nabil, mckey, mcghie, mcghee, macphee, ...




