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

Should things like database performance be included in a healthcheck

I manage a webservice and it is very important for my company to detect and notify if any of the services is down, and also if any of the operations it does is taking too long to respond. Until now there was a separated web application (including…
namelivia
  • 105
  • 5
0
votes
2 answers

Ejabberd : Creating Custom Authentication with Webservice

Is it possible to create custom authentication on Ejabberd with .NET Webservice? I want to override the default authentication happening on Ejabberd. The version I would be using on Ejabberd would be the latest available. Any pointers / help…
0
votes
1 answer

Is there a reliable way to determine if a URL returns content or an error?

I've got a business requirement to run through a list of URLs and identify the ones that return an error. I've written a simple script that fetches the header for a particular url since I don't care about the content. I just want to know if there's…
Sol
  • 347
  • 1
  • 4
  • 12
0
votes
0 answers

Website redirect and DNS entry for website hosted on Windows Server 2008 R2

We have web application that is hosted on on premise Windows Server 2008 R2. We were previously accessing it via http://xx.xx.xx.xx/WebApp Just few days ago, we bought a SSL certificate issued to (XXX.XXX.ca) and installed it on the web server and…
0
votes
1 answer

IIS 8.5 throwing 400 Bad request in Production when calling REST WS using Post method

I've a strange issue. Let me explain in details below step by step: I've a vendor developed REST WS (Made using WCF) for synchronizing data with MS CRM. I've developed a windows service, which fetches batches of data to be synchronized from a…
S M Kamran
  • 125
  • 1
  • 8
0
votes
1 answer

Relay HTTP requests to multiple web server

We have our web server cluster in the AWS's US-WEST-2 region reading/writing to Postgres RDS in the same region. As per AWS's SLA a region can be down for 22 mins in a month. To mitigate this downtime of 22 min when ever it happens. I am setting up…
KunalC
  • 101
0
votes
1 answer

Alias for sublocations in nginx

I have a webservice using the following routes in nginx: /my/myservice/backend /my/myservice/frontend In addtion, I want the two urls /my/myservice /my/myname to be aliases or redirects to /my/myservice/frontend ow can I configure nginx to achieve…
mat
  • 548
  • 6
  • 20
0
votes
1 answer

Getting started with REST between two SaaS apps?

General form of the question : If you're planning to make 2 SaaS apps talk to each other, do most people try to make one of them initiate and control, or do they make (or buy) a 3rd party integration app? I have ServiceNow Express, with a…
mfinni
  • 36,144
  • 4
  • 53
  • 86
0
votes
1 answer

finding out list of web urls being served by apache or weblogic

Was never into web applications / middleware / but happen to took over a couple of webservers running apache and weblogic. q1) How do i find out what are the individual web instances/services (or virtualhosts i assume) and their default URLs path…
Noob
  • 363
  • 3
  • 7
  • 17
0
votes
1 answer

Sporadic slow network connection with Debian Jessie

My small Server with an i7 6700K Processor and 32Gb of RAM, running Apache 2.4.25 has some weird connection problems. It seems to depend either on connecting via IPv4/IPv6 or on the location of the user. When I try to connect from a friends house in…
0
votes
0 answers

Writing read/write AD Records via a web service

We are moving from Domino to hosted Exchange. We currently have 2 directories, Domino and AD. We are looking for ways to integrate the two, and some of our other systems. For example, users are created in our web-bases HR system, and some of the…
0
votes
1 answer

Deploy Java app to Azure over https behind proxy

New to Azure, I'm looking for a good way of deploying our apps. The situation is that we build our Java apps inside our network using Jenkins. Each successful build should be automatically published to the production environment on Azure. We cannot…
Johan
  • 756
  • 5
  • 20
0
votes
1 answer

Better way to conditionally call multiple webservices from MDT CustomSettings.ini?

I've got an MDT deployment which does things a little differently based on the network location. From one of the locations, I have two webservices I need to call. My initial failed attempt…
aggieNick02
  • 286
  • 2
  • 9
0
votes
1 answer

Windows server 2008 asp.net timeout

I developed a simple asp.net webservice that we install in our customers servers in order they can use a mobile app. I tested the webservice on a windows server 2012 and all was ok. Then I moved to the customer server who has a windows server 2008…
0
votes
1 answer

how to configure a URL rewrite without affecting Web services

I am trying to configure IIS 8.5 to redirect to SSL, without redirecting web services that come in on other ports. I have been reading about this for days on various sites, and found excellent instructions and tutorials for setting up the cert and…
htm11h
  • 170
  • 11