Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
7k views

Optional query string parameters in URITemplate in WCF?

I'm developing some RESTful services in WCF 4.0. I've got a method as below: [OperationContract] [WebGet(UriTemplate = "Test?format=XML&records={records}", ...
9
votes
10answers
1k views

What is the best way to design a HTTP request when somewhat complex parameters are needed?

I have some web services that I am writing and I am trying to be as RESTful as possible. I am hosting these web services using a HTTPHandler running inside of IIS/ASP.NET/SharePoint. Most of my ...
6
votes
1answer
702 views

WCF Web API UriTemplate Elements Found in Multiple Methods

Let's say I am using the new WCF Web API to build a RESTful service and, in my service, I have a section of the URI that will describe the target resource, but is used on (nearly) all methods of the ...
4
votes
2answers
851 views

Is it possible to have “overloaded” uritemplates?

[OperationContract] [WebGet(UriTemplate = "/searchresults/{searchTerm}/{searchType}", ResponseFormat = WebMessageFormat.Xml, RequestFormat = WebMessageFormat.Xml, BodyStyle = ...
3
votes
1answer
84 views

Using query string parameters to disambiguate a UriTemplate match

I am using WCF 4.0 to create a REST-ful web service. What I would like to do is have different service methods called based on query string parameters in the UriTemplate. For example, I have an API ...
3
votes
1answer
970 views

WCF/Rest/UriTemplate variable length query string parameter list?

WCF will match this: http://localhost:8888/test/blahFirst/blahSecond/sdfsdf,wwewe to this: [OperationContract] [WebGet( UriTemplate = "test/{first}/{second}/{val1},{val2}" )] string GetVal( string ...
2
votes
1answer
58 views

WCF Web Api optional parameters in UriTemplate

How to declare optional parameters in UriTemplate in WCF Web Api ? For example : [WebGet(UriTemplate = "?culture={culture}")] HttpResponseMessage<IEnumerable<Contact>> GetAll(); I need ...
2
votes
1answer
375 views

Can't pass in “%26” to a WebGet UriTemplate variable in a WCF service?

I have a WCF service with this declared operation: [WebGet(UriTemplate = "Test/{*testString}")] public String Test(String testString) { return testString; } However when attempting to invoke ...
1
vote
1answer
29 views

WCF Interoperability with other services, content type is text/html

I am trying to create a WCF client that operates with an http rest endpoint not based on Microsoft technologies. My WCF-foo is pretty weak, so I don't understand what I am doing incorrectly... I've ...
1
vote
0answers
327 views

Optional path variables in Spring-MVC RequestMapping URITemplate

I have the following mapping: @RequestMapping(value = "/{first}/**/{last}", method = RequestMethod.GET) public String test(@PathVariable("first") String first, @PathVariable("last") String last) ...
1
vote
1answer
47 views

Is it possible to change the UriTemplate at runtime

I have the following WebInvoke Attribute: [OperationContract] [WebInvoke( Method = "POST", UriTemplate = "", BodyStyle = ...
1
vote
2answers
637 views

Passing a class as parameter in RESTful WCF Service

In my RESTful WCF Serice I need to pass a class as a parameter for URITemplate. I was able to pass a string or multiple strings as parameters. But I have a lot of fields are there to pass to WCF ...
1
vote
1answer
357 views

WebInvoke with UriTemplate with empty strings

How does the WebInvokeAttribute and UriTemplate resolver behave when supplied with empty strings in placeholders at runtime? The documentation doesn't seem to cover this. In some inherited code, I'm ...
1
vote
1answer
430 views

UriTemplateTable not distinguishing verbs

I have trying to design a REST service in .NET 3.5 with WCF REST Contrib. My service is nearly working fine, but I am facing a bizarre error. Basically, I have two methods: [WebInvoke(UriTemplate = ...
1
vote
1answer
764 views

WCF UriTemplate won't match a single string parameter with slashes (/'s)

Here is the scenario, I have a WCF service call that takes one string parameter and that string has slashes in it (e.g. "123/456.xml"). I want to setup a UriTemplate like this "/{file}" so that I can ...
0
votes
2answers
37 views

URI Template variable containing a path?

I have a question about URI template variables. I need to manage an URI with the form: http://netlocation:port/application_path/{variable} the variable can be a path itself, i.e. something like ...
0
votes
1answer
56 views

UriTemplate Wildcard to match Uri fragments with spaces in WCF WebGet method

I'm using a UriTemplate wildcard to match the whole URI string after the path to a WCF svc: [WebGet( UriTemplate = "feed/{*path}" )] However this only matches up until the ...
0
votes
1answer
133 views

Why do I get this WCF error when 'GET'ing?

I have written the method contract: [OperationContract] [WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Xml, UriTemplate = "TestEchoWithTemplate/{message}", BodyStyle = ...
0
votes
1answer
587 views

REST WCF Service - Consume QueryString Parameters

I have this REST WCF service. [WebInvoke(UriTemplate = "/GetNames/{Category}?order=asc", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)] public ...
0
votes
3answers
292 views

Getting Gibberish instead of Hello World from a service with webHttpBinding

Here is a trivial example that is supposed to return "Hello World" string. However, a browser displays something like SGVsbG8gV29ybGQ=. Which is the right way to return plain text from an ...
0
votes
2answers
442 views

Stop URITemplate expansion when using Spring RESTTemplate

I am using the Spring RestTemplate to make calls to a Apache Solr index. I form a request string manually and don't supply any intentional {variable_name} template expansion variables. Part of the ...
0
votes
1answer
68 views

Long complicated URIs

I have a webservice to give access to some resources on a network. The service has a method to look for the resource and returns the path of the resource. Another method, send to request to the ...
0
votes
2answers
500 views

WCF Rest Help Page

How can I update a WCF REST services UriTemplate to be www.mysite.com/... instead of the system name http://mysystem/... When I go to the service help page I see the system name and I don't want the ...