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

  • SEARCH
  • Home
  • 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 7878671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:43:23+00:00 2026-06-03T03:43:23+00:00

I’m learning WebAPI (and REST in general) by converting an existing WCF service to

  • 0

I’m learning WebAPI (and REST in general) by converting an existing WCF service to WebAPI. In the process, I’m becoming confused as to the best way to handle the non-CRUD operations. Here is my Service Contract:

[ServiceContract]
public interface IProxyHelper
{
    [OperationContract]
    List<ProxyInfo> GetUsersCurrentUserCanActAsProxyFor(int positionId, int appId);

    [OperationContract]
    void DeleteProxy(int id);

    [OperationContract]
    List<ProxyInfo> GetProxyData(int appId);

    [OperationContract]
    bool CanPositionProxy(int positionId, int appId);

    [OperationContract]
    void AddProxy(
      string userRacf,
      string proxyAsRacf,
      int userPositionId,
      int proxyPositionId,
      string requestedByRacf,
      int appId);

    [OperationContract]
    int GetPositionIdByRacf(string racf);

    [OperationContract]
    string GetRacfByPositionId(int positionId);
}

Some of the methods, like DeleteProxy, and AddProxy I can easily move to a CRUD-based methodology.

The questions arise around:

GetProxyData – The proxy system is used by multiple applications, and though I could do api/Proxy/1, I feel that’s “cheating” because that should be for getting ProxyId 1, not Proxies for Application 1.

GetUsersCurrentUserCanActAsProxyFor – This one is confusing on multiple levels for me. How should I handle multiple parameters? And it’s not falling neatly into the CRUD method, either.

Does this mean I should abandon the WebAPI conversion? If not, how should I tackle these non-standard methods?

  • 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-06-03T03:43:26+00:00Added an answer on June 3, 2026 at 3:43 am

    I think you’re confusing RESTful services with CRUD. The two are not the same, although the point is clear that converting CRUD to REST is quite straightforward (both the resource and the verb have a clear mapping).

    The greatest differentiator of a RESTful architecture is that it is resource oriented. The second is that you leverage the transports (HTTPs) protocol to act on those resources – in the case for REST that’s GET, POST, PUT and DELETE.

    Moving to your example, it seems as though your biggest trouble is deciding on the URI scheme to use in support of this service. May I suggest that for hierarchical information this should be straightforward. For example, application proxies:

    /application/<id>/proxies

    And the users current user can act as proxy for:

    /user/<id>/proxy-users or depending on your style /user/<id>/proxy/users

    Or something similar. You think of the relationship and underlying resource. Many URIs can point to the same resource.

    Note though that as @dtb mentions in his comment the URI and/or (less preferably) cookies contain all needed information in every request. So CurrentUser is a bit of a hack.

    You may also find this interesting reading as you progress in your conversion: Non-CRUD operations in a RESTful service

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have thousands of HTML files to process using Groovy/Java and I need to
I am using Paperclip to handle profile photo uploads in my app. They upload
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text

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.