Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4602004
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T23:54:53+00:00 2026-05-21T23:54:53+00:00

I have a web service with two operations. One operation uses GET and the

  • 0

I have a web service with two operations. One operation uses GET and the other uses POST. Please note that I am not a web service expert, so please feel free to point out anything I am doing wrong. Regardless, I have the following operations in my WCF service:

[WebGet(UriTemplate = "/GetPropertyValue/{propertyID}", ResponseFormat = WebMessageFormat.Json)]
public string GetPropertyValue(string propertyID)
{
  return RetrievePropertyValueFromDatabase(propertyID);
}

[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.WrappedRequest, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
public string SetPropertyValue(string propertyID, string propertyValue)
{
  return SetPropertyValueInDatabase(propertyID, propertyValue);
}

These two operations are being called by my Silverlight Phone application. This call has to use HttpWebRequest for performance reasons. In an effort to make this call, here is what I’m doing:

// Getting Property Value
string url = GetUrl(propertyID);
// url looks something like http://mydomain.com/myservice.svc/GetPropertyValue/2
WebRequest request = HttpWebRequest.Create(url);
request.BeginGetResponse(new AsyncCallback(GetProperty_Completed), request);

// Elsewhere in my code

// Setting property value
string url = GetUrl(propertyID, propertyValue);
// url looks something like http://mydomain.com/myservice.svc/SetPropertyValue/2/newValue
WebRequest request = HttpWebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.BeginGetResponse(new AsyncCallback(SetProperty_Completed), request);

My urls are being generated properly. However, only the GetProperty request works. When I copy and paste the GetProperty url in the browser it works. When I try to execute SetProperty, I receive a failure saying Endpoint not found. I understand that the browser always uses GET, so that would make sense. But, from the HttpWebRequest, I get an error that says “The remote server returned an error: NotFound”. What am I doing wrong?

Thank you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T23:54:54+00:00Added an answer on May 21, 2026 at 11:54 pm

    You forgot to declare the UriTemplate in the [WebInvoke] attribute. According to the sample URL in your code snippet it would have to be "SetPropertyValue/{propertyID}/{propertyValue}". This is why it comes back with a 404.

    Also, you certainly don’t want to use “application/x-www-form-urlencoded” as the request content-type. WCF doesn’t have a MessageFormatter for that one. Plus, you’re not even sending any content for this request anyways (WCF will use the UriTemplateDispatchFormatter). Hence, you can also remote the RequestFormat and BodyStyle properties. Leave the ResponseFormat property in there only if you really expect Json to come back!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web service that uses Python's SimpleJSON to serialize JSON, and a
I have a web-service that I will be deploying to dev, staging and production.
I have a web service that I created in C# and a test harness
I have a web service (ASMX) and in it, a web method that does
I have a web service that queries data from this json file, but I
I have a web service that is protected by requiring the consuming third party
I have a web service which has a generic function that returns a dataset
I have a web service class that the rest of the framework depends on
My colleague and I have a web application that uses Spring 3.0.0 and JPA
How does one change / modify the Result property of a web service operation?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.