Tagged Questions
The webget tag has no wiki summary.
13
votes
2answers
9k views
WCF ResponseFormat For WebGet
WCF offers two options for ResponseFormat attribute in WebGet annotation in ServiceContract.
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebGet(UriTemplate = ...
2
votes
1answer
64 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
82 views
c# string arguments in attributes
Is it possible somehow to move out the string value declaration in an attribute usage?
Specifically I have:
[WebGet(UriTemplate = "/myResource/{id}")]
But I would rather have something like:
...
2
votes
1answer
672 views
WCF: How to pass a variable number of parameters to a WebGet enabled service
We're trying to pass a variable number of key-value-pairs to our service by using the WebGetAttribute and the UriTemplate to expose a REST interface. What we want to do:
...
2
votes
1answer
377 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 ...
2
votes
2answers
555 views
Passing network path in URL
I am creating a WCF Service with a method
[OperationContract]
[WebGet(UriTemplate = "acl/f={fullFileName}")]
string GetACL(string fullFileName);
fullFileName is a full path to a network file, or a ...
2
votes
2answers
740 views
WCF WebGet and ICollection<>
I'm attempting to return a generic ICollection from a REST WCF service. Should the following be possible?
[ServiceContract]
public class WebConfigurationManager {
[WebGet]
...
2
votes
1answer
1k views
WCF WebGetAttribute vs WebInvokeAttribute
Is the WebGetAttribute just syntactic sugar for the WebInvokeAttribute with Method = "GET"?
Or is there an underlying difference?
1
vote
1answer
214 views
How to run WCF service method with WebGet attribute on the root of the host
I do have this WCF service contract:
[ServiceContract]
public interface IPolicyRetriever
{
[OperationContract, WebGet(UriTemplate = "/clientaccesspolicy.xml")]
Stream GetSilverlightPolicy();
...
1
vote
3answers
2k views
REST methods not accessible when hosting wcf service in IIS
I have a WCF REST service that exposes a method in class GreetService:
[ServiceContract]
public class GreetService
{
[WebGet(UriTemplate = "greet/{name}")]
public String GreetName(string ...
1
vote
1answer
4k views
OData and custom WCF WebGet methods
I've created an OData endpoint (using entity framework, WCF data service)
and added a custom test WebGet test method like so:
[WebGet(UriTemplate = "{text}")]
public IQueryable<string> ...
1
vote
2answers
1k views
Serializing data using IEnumerable<T> with WebGet
possible duplicate:
Cannot serialize parameter of type ‘System.Linq.Enumerable… ’ when using WCF, LINQ, JSON
Hi,
If my method signiature looks like this, it works fine.
[WebGet]
MyClass[] ...
0
votes
1answer
53 views
Force HTTPS(SSL) on a WCF WebGet method
I have a method like this:
[WebGet(UriTemplate = "/")]
[OperationContract]
public XmlElement All() {}
Is there a way to force clients to always use HTTPS? (deny HTTP and allow only ...
0
votes
1answer
851 views
Dataset bind to Gridview within WCF REST retrieval method and Linq to Sql
I used a WCF REST template to build a WCF service library to create PUT and GET calls. PUT method works fine sending my blob to a database.
On the GET, I want to be able to access the web service ...
0
votes
2answers
259 views
WCF Method that receive GET AND SOAP Requests
i created a WCf service with a method that can receive GET requests using WebGET attribute, i want the same method to receive Soap calls too (that when the programmer does a Service reference to the ...
0
votes
1answer
1k views
WCF RequestFormat for WebGet and WebInvoke
I have WCF services exposed using WebGet and WebInvoke that require the data to be wrapped in xml. I would prefer to be able to return raw data without it being wrapped in xml and also allow clients ...
0
votes
1answer
153 views
Ado.net dataservices BeginExecuteBatch call works on development fails on production server with Object does not match target type
We have an ado.net dataservices 1.0 call that is being passed to a [WebGet] service operation as a batch through BeginExecuteBatch.
Everything works perfectly on our development server - we have the ...