views:

234

answers:

2

If i have an applicataion requesting a service, is it possible for the web service to determine the name of the application or does this have to be sent within the request?

+1  A: 

You can use the UserAgent header of the HTTP request if the application sets it.

Think Before Coding
+1  A: 

This would have to be sent in the request, or in the headers, as the above post suggests.

There is no Internet standard as to what an "application" is, so there's certainly no standard for "application name".

John Saunders