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
1
vote
1 answer

Is this possible to block all requests ends with a specific url in apache

Is this possible to block a requests ends with a specific url in apache, for example i have to block all the requests end with ?wsdl.
Bright
  • 50
  • 1
  • 9
1
vote
2 answers

How to prevent a user access to a website using server.domain.com but allowing thru the vip.domain.com?

We setup our website to run on the play framework. It is running http on 9000. We can access the site by going to http://servername.domain.com:9000 where servername is the name of the webserver. We also setup our F5 loadbalancer to redirect all…
Classified
  • 163
  • 2
  • 6
1
vote
3 answers

Tips on using Apache .htaccess?

First off, there is a plethora of great material on .htaccess on SO. However, some of it is advanced and it mostly spread across multiple questions. Today I found a tutorial with a number of good tips, which will be in an answer. Community wiki.
casualcoder
  • 380
  • 1
  • 4
  • 13
1
vote
0 answers

How to stop IIS parent website taking priority over virtual application

I have a simple setup. I have a wordpress website setup at the root of a subdomain api.website.com. This will act as documentation for an API. I then have the API itself, built with asp.net and i want this to be a virtual application so that a user…
Dan Hastings
  • 706
  • 1
  • 13
  • 24
1
vote
0 answers

How best to secure a Java web service via Jetty that we are now making public-facing?

We have a web service that currently runs only internally within a network and there is no access outside the network. This web service is written in Java and runs through a Jetty servlet engine. It is a bare bones web service and there is little to…
1
vote
0 answers

Server responds with HTTP error 400 ("bad request") in a multipart request

I have a problem with a 3rd party application and my WCF web service that always returns a HTTP 400 ("bad request") error when connecting with the 3rd party application. The WebService is implemented via .NET, runs on MS Windows Server 2012-R2 and…
xmashallax
  • 111
  • 2
1
vote
2 answers

Using IIS With Visual Web Developer

I am trying to launch a web service from Visual Web Developer using IIS. When I open the .asmx file in a web browser, I get an error that I do not have permission to access that page. I am using windows automatic authentication in SQL Server…
Bryan
  • 149
  • 1
  • 3
  • 10
1
vote
1 answer

Accessing Localhost Port Over a Local Network

Both localhost and 192.168.0.199 both resolve to the same page in my web browser (they both redirect to localhost/xampp/ and 192.168.0.199/xampp/ respectively). But when I try not to access my web service,…
Bryan
  • 149
  • 1
  • 3
  • 10
1
vote
1 answer

Domino Offers SSL3.0 instead of TLS for Outgoing connection to WebService

I have problem understanding Dominos behavour to offer SSL or TLS for outgoing connections to WebService. We have an agent that access a WebService. The WebService only accepts TLS 1.0 From time to time the connection crashes and I turned on…
Stefan K
  • 11
  • 1
1
vote
1 answer

Including Port number in HTTP HOST header causes Service Unavailable error

We have a WebService running on HTTPS. If I use SOAPUI and make request at: https://testservice.mydomain.com/WcfService.svc, it works fine. However the client reported they are getting 503 Service Unavailable error. In their HTTP HOST header I see…
1
vote
0 answers

How to SOAP over a proxy server I own(configuration)?

I have a server called http://SERVER-A.com which sends a SOAP request to a third-party address. Also I have another server called http://Server-B.com which I want to configure as a proxy server. I want to send my SOAP requests from A to the…
1
vote
1 answer

JBoss webservice behind Reverse Proxy, https to http

I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and…
1
vote
1 answer

Max connection on a specific Application

I've an application ( that contain some Web Services ) deployed on a Server in a WAS 7 environement. That server host a many application; what I'm looking for is a way to limit the number of connection for a specific application and not for entire…
Stefano R.
  • 141
  • 2
1
vote
1 answer

Windows Server Blocking Web Service?

I have a program that uses a webservice that connects to a server to get software licenses. This is blocked in Windows Server 2003, 2008, 2008 R2, 2012, 2012 R2 by default. However, in Windows XP, Vista, 7, 8, 8.1, 10 it works just fine by…
Peter
  • 309
  • 2
  • 11
1
vote
1 answer

Glassfish with Webservices on non default port

I have a simple web service that I created that deploys perfectly on a default Glassfish V2.1 install on both a windows and a linux system. HOWEVER, In the production environment, Glassfish has the default port for the domain changed from port…
Rick
  • 203
  • 2
  • 9