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 3425948
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:39:19+00:00 2026-05-18T06:39:19+00:00

I have an API in C# that won’t map to JSON-RPC due to the

  • 0

I have an API in C# that won’t map to JSON-RPC due to the fact that JSON-RPC is Procedurally oriented.
How in JSON-RPC would you represent an Object Oriented API?
I can of course use the JSON-RPC extensions so that the request would look like:

{ "jsonrpc":"2.0", method:"ObjectName.Method", "params":[], "id": 1 }

But it feels kinda hackish and also requires a lot of work to define.
I can also include it as a parameter but again it just doesn’t feel right.
Is there a best practice regarding working against an Object Oriented API using JSON-RPC?

  • 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-18T06:39:20+00:00Added an answer on May 18, 2026 at 6:39 am

    JSON-RPC is JSON Remote Procedure Call and by default procedure oriented.

    However if you work over HTTP you can see each RPC service as object. I.e. if you access /foo/bar and call beep over JSON-RPC over HTTP then you call beep method of foo service of bar object.

    Otherwise you may do it the way all OOP mapped over procedure calls:

    foo.bar(x1,x2) -> bar(foo,x1,x2) 
    

    Where foo is “pointer” to object, for RPC it may be object UUID. (That is how it is actually done in some RPCS).

    So you call

    f=new integer(0);
    f.add(10);
    f.add(20);
    x=f.get();
    delete f;
    

    Goes to:

    client:   new("integer",0)
    server:   return "23ab3cb45"
    client:   add("23ab3cb45",10);
    client:   add("23ab3cb45",20);
    client:   get("23ab3cb45");
    server:   return 30
    client:   delete("23ab3cb45");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an API that is dependent on certain state information between requests. As
I have an API that can be implemented by various vendors. I can send
So Google Analytics does not have an API that we can use to get
So, I have an API that I need to implement in to an existing
I'm developing a REST api. To simplify my question, I have an API that
I have a web API that returns python dictionaries or lists as a response
I have to work with an API that uses a lot of by-reference parameters.
I have an open-source iPhone API that I downloaded, and that is a standalone
I have a need to create a transactional process using an external API that
We have a moderate size (40-odd function) C API that needs to be called

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.