Questions tagged [web-services]

A web service is a software system designed to support interoperable machine-to-machine interaction over a network.

A web service is a software system designed to support interoperable machine-to-machine interaction over a network.

Typically, the service exposes an interface, often defined using WSDL (Web Service Definition Language), for users to be able to execute some function on the system that provides the service.

There are two broad types of web services:

  1. Arbitrary Web Services - in which the system exposes arbitrary operations
  2. REST-compliant Web Services - in which the primary purpose of the service is to manipulate representations of Web resources using a uniform set of stateless operations.

Messages can be passed between the service and it's clients in a variety of formats. Some of the most common are:

  • JSON-RPC
  • JSON-WSP
  • XML-RPC
176 questions
0
votes
1 answer

change route to website - Gateway timeout

My website has to connect to a web service, but sometimes it is receiving a Gateway Timeout, sometimes it works allright. I'm guessing the route it's going on is wrong. Right now, the traceroute is this one: user@user:~$ sudo traceroute -n -w 2 -q 2…
digao_mb
  • 155
  • 4
0
votes
1 answer

Unable to setup HTTP Server so that external clients can access

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 through http://localhost/web. I have forwarded 80…
easl
  • 101
0
votes
1 answer

Java web service works on http but not on https

I have SSL installed on my website. I wrote a java web service and deployed it in public_html/WEB-INF/service folder. Now I can access my service over http (like http://www.mydomain.com/services/myWebService?wsdl) but when I try it over https it…
AL̲̳I
  • 105
  • 1
  • 7
0
votes
1 answer

.NET webservice app and IIS 7.5 problems

I have installed a 7.5 IIS server and tried to install a webservice. But whatever i do i cannot get it to work. I just get 404 back and a blank page. Here is the log: 2013-03-14 08:17:41 ::1 GET /getservice/Login User=aaa&Password=aaa 80 - ::1…
Juw
  • 127
  • 1
  • 10
0
votes
2 answers

High latency issue for web service call from amazon aws ec2 to local server

We have a legacy web application that is running in our data center on premises located in Houston. We have a developed a new .net 4 based web application in order to provide new features to customers. The new web application is hosted in amazon aws…
SibzTer
  • 113
  • 2
  • 5
0
votes
1 answer

Capture traffic on web server

I have a web server that is accepting web service calls on port 8081 - I want to see the packets coming through. I tried using fiddler, but it doesn't see anything. I don't have access to the code, its precompiled. I was hoping to just install…
M.R.
  • 143
  • 1
  • 8
0
votes
1 answer

Strange 400 error with IIS 7.5 and a webservice?

Ok, this is a longshot. I have been pondering this for hours. I have no clue how to solve this. But maybe someone here can recognize the problem and point me to right direction. I have an IIS 7.5 server and a MSSQL database on a different server. On…
Juw
  • 127
  • 1
  • 10
0
votes
1 answer

Monitoring webservice in production environment

Possible Duplicate: What tool do you use to monitor your servers? We are running a .net webservice and need to periodically test that the services are still up and running. It will be easy enough to roll our own solution for this, but I'm just…
g.foley
  • 101
  • 1
0
votes
1 answer

Load balancing for PHP script on AWS

Possible Duplicate: How do you do Load Testing and Capacity Planning for Web Sites I hope this is the proper place to ask this. I put it up in webapps and it was closed without a recommendation on where to put it. Hopefully folks will be kinder…
0
votes
1 answer

Solaris 11 ldap client configuration

Im am trying to migrate some web services (like wordpress / dokuwiki), which are connected to our ldap for user authentication, from solaris 10 to solaris 11. In solaris 10, you had the possibility to configure the client not to request or check any…
embedded
  • 466
  • 2
  • 6
  • 19
0
votes
1 answer

TCP Window Scaling. TCP scale factor not supported due to dynamic TCP Frame Size on windows 2008 server

PROBLEM Calling an asp webservice hosted by an ISP from our WCF service hosted on Windows 2008 Server is showing timeout/no response from webservice. DIAGNOSIS Using windows network monitor to packet capture and isolate packets sent a webservice…
scott_lotus
  • 1,079
  • 3
  • 17
  • 29
0
votes
1 answer

Webservice caching Token

I am using a LAMP server. No matter what token the service call has, it's always showing me the same number. Right now it's 2147483647.I guess it changes if I reboot server. I have other values in the service call. All other are correct except the…
theLeo
  • 3
  • 2
0
votes
1 answer

Host an apache web server locally on Ubuntu machine

I want to host an Apache web server and want to upload files on it . can someone please give me a broad idea to getting started and basic mechanism behind local Apache server. Related links will be highly appreciated. PS: I am not an expert Linux…
0
votes
1 answer

How do I return custom content with an error response in IIS 7?

My API returns JSON content with some errors, such as 500 (Bad Request). Under IIS 6, this worked fine. In IIS 7, once I turn off detailed error messages it simply returns the text "Bad Request". How can I keep the contents of my response intact?
Keith Walton
  • 175
  • 1
  • 10
0
votes
2 answers

How to add persistent connection support to a load-balanced HTTP webservice

We are working on an HTTP webservice load-balanced using haproxy. The webservice is accessed via SSL. It is a RESTful HTTP service and simply accepts JSON, does some work, and returns JSON. There is no notion of a session. We have redundant…
jkndrkn
  • 105
  • 1
  • 4