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)

-1
votes
0answers
8 views

how to call java webservice with empty soap action from .net without adding service contract

I am developing an application in .net. In my application I have to update some fields from another server on client side. Client has provided me with web services to get values. web service location ...
0
votes
1answer
16 views

xml output from asp.net webservice

I want to see below format as output of my webservice but it is return empty, would you mind help me to how figure it out? I am using asp.net2 I would like to receive out put like below: <LIST ...
0
votes
1answer
18 views

PHP able to read Object list of a webservice generated by Asp.net C#

I wrote a webservice in asp.net C# that return a list of a class, Now I want to check that a program that wrote in PHP can read my object or not, If your answer is yes, would you tell me how and if ...
0
votes
0answers
7 views

Getting NullPointerException when calling androidHttpTransport with Ksoap2 3.0

I'm trying to send a location object with Ksoap2 3.0 library to my Jax-Ws WebService for a week already but i still get a NullPointerException at "androidHttpTransport.call(SOAP_ACTION, envelope);". ...
0
votes
1answer
10 views

Is there a website which will send you an email notification when it is visited?

Well, I am not a developer and what I want is to find a already existed website(e.g. mail.com). When I visit the webpage: wget 'mail.com/[email protected]', the server will send a email(any content is ...
0
votes
0answers
4 views

Android/Java - Load tff file from server at runtime

I'd really like to download a font file (tff) from my server and load it at runtime as opposed to prepackaging it with the app. That way if I choose later to update, add, or remove a set of font files ...
0
votes
1answer
11 views

PHP SOAPClient WCF Error sending parameters

I'm working on a Webservice using PHP SoapClient. The webservice url is: http://web.abaseguros.com/AutoConnect/ACCatalogos.svc?wsdl And here is my code: <?php ini_set("soap.wsdl_cache_enabled", ...
0
votes
0answers
12 views

Send http request via post from android to my web service in localhost

How can I send a request via POST from android to my web service? The web server is running on my desktop PC in localhost:9995. Web-service(Java): @POST @Path("/anyString") ...
0
votes
0answers
15 views

MongoDB - Update collection hourly without interrupting normal query

I'm implementing a web service that needs to query a JSON file( size: ~100MB; format: [{},{},...,{}] ) about 70-80 times per second, and the JSON file will be updated every hour. "query a JSON file" ...
0
votes
1answer
10 views

Do I need to Axis to create web service using J2EE?

I want to create a simple web service to store client request in DB?? and what is Axis used for?
-1
votes
0answers
32 views

Optimizing a C# application with Visual Studio [closed]

We're planning to do some optimization on a fairly complete, fairly large C#/WPF application. Multithreading, Webservice client, MVVM, local database, a few third-party libs, etc. etc. Any ...
0
votes
3answers
19 views

Upload/Download File using REST or Web Services

Is it possible to Upload/Download a file using REST or any other Web Service and send HTML code? This has to be possible using: PHP, Java or ASP.
0
votes
0answers
6 views

SoapObject cannot be cast to java.util.List in Ksoap with Android and Java Webservice

I have a Java Webservice that returns an array created from a List and this array must be showed in an Android client been casted to a Java List, but I'm getting this exception: Caused by: ...
-1
votes
0answers
10 views

How to use (and configure) Jetty web server for JavaSE JAX-WS Endpoint? [closed]

I use Endpoint.publish("url", wsobject) I better trust Jetty to be the http server handling the requests of my ws endpoint. I use JavaSE 7 and I prefer version 9 of jetty. The right answer will ...
0
votes
1answer
9 views

Accessing ortStub.h classes SOAP web-server with gsoap

I am trying to set a simple SOAP client with gsoap. I am new to those stuff and in c++ in general so be patient :). I will post some codes generated by soapcpp2: ortCurrencyRatesSoapProxy.h : ...
0
votes
0answers
4 views

SOAP over HTTP and SOAP over JMS

I have a requirement where a web service has to be exposed both as SOAP over HTTP and JMS. How would be the bindings for both in a WSDL at the same time ? Also what all extra care(compared to a simple ...
0
votes
1answer
21 views

Connecting to web-service without metadata

I want to connect to this web-service https://training-api.temando.com/schema/2009_06/server.wsdl I have tried to both of "Add Service Reference" and "Add Web References", but in both cases got this ...
0
votes
0answers
8 views

PHP loading C# wsdl keep getting InvalidSecurity error

Fatal error: Uncaught SoapFault exception: [a:InvalidSecurity] An error occurred when verifying security for the message. in C:\xampp\htdocs\product.php:12 Stack trace: #0 ...
0
votes
2answers
14 views

how can I add login through other sites

I saw that in this site you can login through many websites: google- yahoo-facebook... This would be realy helpful for new users. So can you teach me how to do this. If not at least a hint.
-2
votes
0answers
10 views

Setting up Global HTTP Server [closed]

I am running Red Hat Enterprise Server 6. It has Apache Server (httpd) installed and running on boot by default. My document files are kept in /var/www/html/web and I can access them on my computer ...
0
votes
0answers
5 views

Unable to send the data to Openbravo ERP through HTTP POST

In HttpPost httppost=new HttpPost(url); what should be the url in case if I'm trying to access a module in Openbravo-erp which is in localhost:8080.
0
votes
1answer
10 views

Should REST be used in a service that only has Service Operation Calls?

I am working with another team that is providing me a web service to call. The web service has a few methods that I can call and it gives response values. I recently found out that they are coding ...
1
vote
1answer
18 views

how to get the 1 million-th click of a website

I often heard this question coming from different sources, but never got a good idea of the technologies to achieve this. Can anyone shed some lights? The question is: you have a website which has ...
0
votes
0answers
13 views

Android soap client - parsing errors

So here is my problem. I want to create SOAP client on android device which will talk with server i made. I Have found out that the only possible and the easiest way to do so is to use kSOAP2 ...
0
votes
2answers
19 views

Spring + rest + mysql

Hi friends,         I am new to spring frame work, please help me to create simple web serice application using spring frameWork+ Mysql database+restFul web services ...
0
votes
0answers
6 views

Axis2 posts to wrong url

I am trying to implement a web service client, with a given wsdl file, using Axis2 (1.6.2). The service creation looks successful, however, the final POST operation seems to be done to a wrong url. ...
0
votes
1answer
21 views

Nodejs REST without express

All the tutorials I see for creating rest apis use express. While I'm sure this is a fine solution, I would like something with less overhead and as few dependency modules as possible. What are some ...
1
vote
1answer
16 views

How to consume .net asmx web services in php

web service url : http://www.domain.com/WebService1.asmx?wsdl Method name : Login params (username,password) web service developed in .NET I am call this web service with soap library. The data ...
0
votes
1answer
14 views

How to generate the logical URL that is used in Rest

I see every time that when we have a Rest web service the URLs are logical and not physical. Eg you see a POST request to a myServer.com/user/id and never for example a .php extension or whatever ...
0
votes
1answer
21 views

EXTJS getting the right call

I am making a combobox in EXTJS which should be populated by a REST service. Like this example: http://docs.sencha.com/extjs/4.2.1/extjs-build/examples/form/forum-search.html I want to make a call ...
0
votes
0answers
4 views

IIS 6 'A redirection to a url' not working with webservices

I have the following situation: One webservice defined in IIS6 like http://cartao2.xxx.com.br/.... Some systems (websites) that points to this webservice But I need to redirect this webservice to ...
0
votes
1answer
19 views

WS Client with Proxy and Autentification

I know this isn't exactly the correct way to ask a question, but I'm having a problem: I have a wsdl stored locally, and I need to create a Web Service Client to call that Web Service. The problem is ...
0
votes
0answers
7 views

Openbravo rest web services

I'm starting a project that consists in OpenBravo integration via the Restful WS Layer (may be json) That kind of integration is simple in the beggining because just consists in a rest web service ...
0
votes
2answers
16 views

Set timeout on JAX-WS (weblogic)

I have a JAX-WS that invokes another WS (the client has been build using JAX-WS). My goal is to set a timeout on the invocation. I know that I can use: BindingProviderProperties.CONNECT_TIMEOUT ...
0
votes
0answers
19 views

File Upload fails, but jqXHR returning status 200 in IE8

I am using the jQuery File Upload plugin to call a web service and upload an image to the server. The image uploads fine, and I've added some validation to the web service that throws an exception ...
0
votes
1answer
18 views

login form with mysql calling soap webservice in android 4.0

I have to develop an one android application. Here i have using following code. public class MainActivity extends Activity { String status; EditText username,userPassword; ...
0
votes
0answers
31 views

REST based web app architecture

I need help for the design of my web app. I want to do a REST web service that needs authentication, and a web app that access this web service to get the data. All the users are stocked in an ...
0
votes
0answers
3 views

Didn't find specified return QName for optional return parameter

When calling a web service with axis1, I get the error "'Didn't find specified return QName'", although return parameter is set to optional. Is this a bug in axis ? because everything seems to be ok ...
-1
votes
1answer
17 views

Service for assisting an ASP.NET MVC application

I am developing a MVC Web Application which isn't something special (basically displaying information from the DB). However I want to have an additional service running with the application which will ...
0
votes
1answer
25 views

Calling rss feed with plsql

I'm trying to call a webservice from plsql. I have the following code (which works): CREATE OR REPLACE PROCEDURE WEBSERVICE AS v_xml XMLTYPE; BEGIN v_xml := XMLTYPE(UTL_HTTP.REQUEST(URL => ...
0
votes
0answers
12 views

Creating a SOAP service which can be deployed as war on JBOSS

I am totally new to SOAP services. I wanted to know how to create a SOAP service using Axis/CXF (anything is fine), but the end-product should be a WAR file which i can deploy on JBOSS 7. I tried ...
0
votes
0answers
8 views

Nusoap : array in array Complextype

What I want is to return multiple arrays with the NuSOAP library, at this moment I have this code : $server->wsdl->addComplexType( 'test', 'complexType', 'struct', 'all', ...
1
vote
0answers
9 views

Android connecting to soap web-service with digest authentification using ksoap

I am having problems to get the Authorization headers from a PHP soap web-service with DIGEST authentification. (PHP client works correctly with the web-service). I get error 401, but I cant find the ...
0
votes
0answers
9 views

Using Google's FinanceApp class in JQuery

I want to get information about companies using JQuery from Google Finance. Currently, I can get values using the following URL - http://finance.google.com/finance/info?client=ig&q=LNKD, but I ...
0
votes
0answers
9 views

Best practices to reverse a work done by Web Service

I have a very common scenario: 1) Client machine connects to a server machine using WCF (https web service) 2) The code in the client could be something like this: var ...
1
vote
1answer
40 views

Logical and Physical URLs

This question is as an extension to my previous question here: "Is this web service Restfull" to an attempt to better understand the concept of a Rest Web Service. I read almost everything there is to ...
0
votes
0answers
25 views

Unable to create package structure

I am new to Web Services just starting to learn not to java. I am creating a simple web service which adds two numbers and returning the value. I tried to put the web service class in a package and ...
0
votes
0answers
17 views

How to get Resources from different url contexts?

I'm developing an Admin Panel and i want to access from a file in admin to a resource (javascript file) which is in the root of webapp and it is used by other non admin jsp's webapp -- js -- ...
0
votes
0answers
10 views

Wpf connect with another web services

i have a wpf application and that want to connect with several another vendors application services. what will be the best way to connect them? I want to send and receive data with that services. ...
0
votes
1answer
11 views

Consume ASMX webservice in PhoneGap

How Can we use ASMX web service in Phonegap ? Is connsuming ASMX web service support all mobile OS like Android,Windows Phone and iOS ?

1 2 3 4 5 590