Tagged Questions
A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
0
votes
0answers
3 views
SOA service registry and dependency tooling
The company I work for is at the start of large project to transition a monolithic desktop application to a SOA architecture. Part of this project will require a service registry to be created.
I've ...
0
votes
0answers
20 views
Web Reference vs Service Reference for Fedex Tracking
I've been experimenting with moving a web service from the old fashioned asmx technology to the newer WCF, and I think I'm missing something fairly basic about how to reference it.
When I choose, ...
0
votes
1answer
19 views
Web Service Authentication - PHP
I'm creating a simple web service in PHP to serve data to some of our internal applications.
My question is around authentication/security, the implementation of the actual web service isn't a ...
0
votes
0answers
32 views
Unable to Upload Image to Server ios
Hello I am trying to upload Image From my IOS device to server.
And Here Is my code to upload the Image
- (IBAction)btnUpload:(id)sender {
if (self.imageViewGallery.image == nil) {
...
-1
votes
1answer
21 views
A message body writer for Java type, class myPackage.Sample, and MIME media type, application/xml, was not found
I am using Jersey RESTful webservices. I wrote client as below but it throws above exception which i mentioned in the title.
public class MyRestClient {
public static void main(String[] args) { ...
-1
votes
1answer
17 views
Passing a parameter in url Restful service?
I am using Jersey RESTful webservices. I have below method.
@PUT @Path("{id}")
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
@Produces({ MediaType.APPLICATION_JSON, ...
1
vote
1answer
20 views
Restful API design with composite DTOs
I get the simple Restful design following one type of object:
GET /users
GET /users/123
POST /users/new
POST /users/1/edit (or PUT)
POST /users/1/delete (or DELETE)
...
Follow a Relationship from a ...
1
vote
1answer
34 views
Invoking a web service in a Web API Project…in which layer to invoke? [on hold]
I am using Microsoft ASP.NET Web API 2 and one of my end points has to internally invoke a legacy non-Microsoft web service (not asmx or svc) .
Which layer should I invoke this in?
I currently have ...
4
votes
1answer
22 views
Invoking a web service - asmx - through a Microsoft Web API end point?
I am using Microsoft ASP.NET Web API 2 and one of my end points has to internally invoke a legacy asmx web service.
Is this the correct way?
...................................................
...
2
votes
2answers
47 views
Web API - Event Notification
I need a way for clients (C# applications) of a ASP.NET Web API to be notified of certain changes via the Web API. They don't even need to know what the changes are, just need to get a notification ...
0
votes
0answers
19 views
Why Can't I See Classes in .net 2010 Web Service?
In .net 2010 I have a fairly simple class with 1 function I need to expose through a web service. It uses several basic custom classes which the consumer would, in theory, populate with data and send ...
-5
votes
2answers
49 views
Webservice c# comunication with c++ project [on hold]
I made a Webservice in C # with a method (public IList getObj(int id)) that returns a list of objects IList .
Now I have to communicate the WS with a c++ application.
I can access without problems ...
0
votes
0answers
9 views
let a webService start a process in jBPM 5.4
I want to write a webservice (SOAP based) that runs a bpmn2 process in asynch manner.
So for instance you call http://foo.bar.com/ServiceSOAP/ActionStart, pass in SOAP message with full bpmn process ...
0
votes
0answers
6 views
Soap 1.1 endpoint already registered on address test/myService
I have cxf and jwx published soap webservices, for which i wanted to integrating them into apache camel . I was trying to run a simple example to get routEntryPointService in as my entry point for ...
0
votes
0answers
30 views
Is there a way to reference a web service from a .net 2.0 app without using a config file?
In a .Net 2.0 COM application I am referencing a web service.
In COM components I want to use the Constructor String to store my end point address and deploy my component without any config file.
...
0
votes
1answer
36 views
Calling a web service from android - NullPointerException
I am trying to use the code from here http://www.ibm.com/developerworks/webservices/library/ws-android/index.html?ca=dat- to call a web service. I keep getting the exception thrown at the following ...
-1
votes
1answer
26 views
How to add custom SOAP header in web service generated dynamically? [on hold]
I am working on a project where I need to make a call from .NET platform to non .NET Web service. I am making web service call using some methods where I can generate SOAP request to access web ...
-1
votes
0answers
34 views
MVC based php framework which can also work as web services [on hold]
I would like to make one website and desktop application. My web application is based on PHP and the desktop application is based on C#.
How can my desktop application interact with the server?
Is ...
0
votes
1answer
22 views
Java AXIS2 web-service client
I am trying to write a code to consume a web service found at:
http://www.webservicex.net/ws/WSDetails.aspx?CATID=12&WSID=64
I've used Axis2's WSDL2Java.bat tool and had two Java files generated:
...
0
votes
1answer
27 views
JAXWS exception when generating wsdl
i'm new to using jax-ws
i have got some error on generating web service WSDL file
from newService button
i'm using java ee 6 and jdk 1.6
and i have recently created wsdl for java class that ...
0
votes
1answer
14 views
generate soap fault when required parameter is not passed
In soap API, I have set few parameters as required by adding minOccurs="1".
is it possible to generate soap fault if I am not passing required parameters in Soap CALL.
0
votes
0answers
29 views
SOAP based webservice in Android
I am trying currency converter in Android using SOAP web service. Everything working fine. But, when i am clicking the button for conversion, application crashes and following errors coming out.
Can ...
0
votes
0answers
6 views
What is Proxy that is created at the client side
This is the Documentation from Oracle Docs. I want to clarify certain jargon based questions.
On the server side, the developer specifies the web service operations by defining methods in an ...
0
votes
0answers
24 views
Web service - REST to SOAP architecture
I work on a .NET project where I have a web service (ASP.NET project) with a REST architecture. The user can call three functions with the help of IIS on these URLs:
127.0.0.1:8080/api/function1/
...
0
votes
1answer
5 views
Adding Targets to Target Lists using REST API with SugarCRM
I'm trying to add targets to target lists in Sugar via REST service calls. I'm getting a positive response from Sugar but records are not added. The service method I'm using is *set_relationship*:
...
0
votes
2answers
32 views
Reading the first 100 lines
Please have a look at the following code:
wcmapper.php (mapper for hadoop streaming job)
#!/usr/bin/php
<?php
//sample mapper for hadoop streaming job
$word2count = array();
// input comes from ...
0
votes
0answers
15 views
What type of transfer mode in my binding to use?
I am uploading bytes via a web service from my C# desktop application.
What transfer mode should I use? At the moment I am using streamed. What is the most optimum to use? My uploads are frequent ...
0
votes
2answers
24 views
how to disable WebService call from other domains
i want to avoid the others to access my webservice.
I have Web Service called WebService.asmx, which is hosted in www.xyz.com
and we know that we can access the service like
...
0
votes
0answers
40 views
Calling a SOAP service from a RESTful service
I'm using the Apache CXF framework with Spring to create a RESTful API for my project. Now, i need to call a SOAP service from withing my REST service.
I have generated the java code and a client ...
-2
votes
3answers
32 views
Best way to load images on Android Client from Server [on hold]
Should we load images on Android Client directly using the URL
OR
Do we fetch Images via a Server Side APP/or a webservice(Passing a image name appended to URL) .
Which way is better.
0
votes
1answer
38 views
Why webservice not work in php?
I am using web service from HERE
but i am using php code for accessing
> <?php $user="[email protected]"; $pass="anl@123"; $result='';
> try
> {
> $client = new ...
1
vote
0answers
17 views
org.xmlpull.v1.XmlPullParserException: Unexpected token (position:TEXT CONS_REF|BILL_MT…@691:1 in java.io.InputStreamReader@41222188)
I have developed an android application through which I am downloading data in textfile from website using .net webservice. Now, since my data contains only 690 rows so reaching row 691 it is giving ...
-2
votes
0answers
11 views
create contact in autotask using php api [on hold]
we have found php api to get contact from Autotask but still we have not found any
api function or example to create contact in autotask, so can we get any example in php to
create contact in ...
0
votes
0answers
22 views
Hibernate running on two separate JVM fails to read
I am implementing Hibernate and WebService to write/read data into database with an issue described below. Any assistance is appreciated.
Issue
One code enters a data via JVM-1 (e.g., a JUNIT class ...
0
votes
0answers
11 views
How to deal with oAuth callbacks to non webservers?
I'm currently building an oAuth2 server so that external clients/devices can access data from my service without having to send over user credentials with every request. I've finally grasped how oAuth ...
-1
votes
1answer
31 views
Calling a web service via the WSDL
I have been following a tutorial to publish a web service which i have completed successfully
The wsdl can be found here - http://hotornot-hnwebservice.rhcloud.com/TomcatHotOrNot/messages?wsdl
The ...
0
votes
0answers
20 views
Custom node in SOAP request
I use Visual Studio 2010 for creating a web service.
One of its web methods looks like:
public List<UserProgress> GetProgress(int clientId, string[] users){ ... }
Accordingly the XML request ...
0
votes
1answer
20 views
Kendo grid and asmx web service
I'm hoping to get some help - I'm trying to send a request to my .asmx web service from Kendo grid. I have a version working without parameters, but I have not been able to pass in parameters to my ...
0
votes
0answers
54 views
Hashmap not supported
I'm trying to generate webservice that type Hashmap but I'm getting the following error :
hashmap that is not supported by the jax-rpc
my code :
public String insertTest(HashMap<Integer, ...
1
vote
0answers
14 views
How to convert self-hosted WCF service to IIS 7
I currently have a self-hosted WCF service running in a Windows service. I have been asked to host the WCF service in IIS 7. It seems that all of the MSDN suggestion require me to implement a wrapper ...
1
vote
3answers
28 views
getJSON in phonegap application not working
I have looked through the older posts regarding this problem but did not find the solution to my problem.
I have 2 REST services on my computer, 1 for login and 2nd for sending a list items.
I am ...
2
votes
1answer
27 views
Running a SOAP API through WCF while running a RESTFul service in parallel
I have a handful of SOAP .svc endpoints that are hit currently, but I need to add RESTful endpoints to my project while still maintaining the old endpoints.
Everything is currently hosted through ...
1
vote
3answers
33 views
How can I send parameters for ASP.NET webservice
I have an university project where I should implement a java powered website that uses web services: some that will be created as servlets and others that should be created as .NET "servlets". I ...
0
votes
0answers
18 views
change upload path in symfony project
I am working on customizing a symfony project called qdPM available at qdpm.net Its open source project management system and I am trying to configure it to use within my small back office management.
...
1
vote
1answer
21 views
How to view my classes from asmx web service
I have one ASMX webservice with C#. In this WebService I use some classes with properties. The Class is in the same namespace as Service1.asmx.
Code of my Web Service:
namespace NewWebService
{
...
0
votes
1answer
28 views
how to get data back from onPostExecute
I have a class which is implementing FilterQueryProvider and having an inner class which is extending AsyncTask. I am using this inner class to call a REST API and getting data successfully in ...
0
votes
0answers
30 views
consume .Net web Service in ios 7 xcode 5.0.2
I have created a .net web service that accept a parameter (int DishId) and returns an XML file with the attributes:
<Dish xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
2 views
Using Bigrocks VPS
I have exposed Spring REST Web-services and from android application I need to use that web services.
For uploading these services over the web I have purchased Bigrocks.com VPS with C-Panel and I ...
0
votes
0answers
17 views
Class Loading Code i.e. working with Eclipse not Working in LISA
My issue is the follwing code
ClassLoader myClassLoader = ClassLoader.getSystemClassLoader();
Class myClass = myClassLoader.loadClass("com.Calculator.add");
//com.Calculator is the package name.. ...
2
votes
1answer
25 views
unable to create wsdl request
while trying to send request to soapui using java code i had written the code for wsdl request
WsdlRequest req = op.getRequestByName("Req_"+soapVersion+"_"+opName);
it is showing exception like
...