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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:22:17+00:00 2026-05-12T08:22:17+00:00

I have a set of web service methods returning a ActionResult class holding the

  • 0

I have a set of web service methods returning a ActionResult class holding the following properties:

object returnValue
bool success
string message

the returnValue is used to hold different types of return values depending on the web methods used.

The problem I have on the client is that if a web method is returning an internal class in the returnValue I can’t cast it due to the client don’t recognize the type.

I can fejk methods to be able to expose the class “Issue” I need.

Ex:

Issue ExposeIssueType()
{
    return null;
}

But isn’t there any other way?

  • 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-12T08:22:18+00:00Added an answer on May 12, 2026 at 8:22 am

    While I’m waiting for your answer to my comment, I’ll tell you that this is a very bad web service design. Each web service operation should return the data it is meant to return. There is no point in creating a class that can hold all possible return values.

    Additionally, you should not be using a string message to return errors from a web service. The SOAP protocol has a “SOAP Fault” mechanism for that purpose.

    Since you’re using WCF, you have complete support for SOAP Faults. Example:

    In the service contract:

    [FaultContract(typeof(GeneralFault))]
    [OperationContract]
    int Divide(int a, int b);
    

    In the service:

    public int Divide(int a, int b)
    {
        if (b == 0)
        {
            throw new FaultException<GeneralFault>(
                new GeneralFault {Message = "Attempt to divide by zero"});
        }
    
        return a / b; // Note - operation can focus on its job
    }
    

    Data contract for the data returned in the fault:

    [DataContract]
    public class GeneralFault
    {
        [DataMember]
        public string Message {get;set;}
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently I have a web service (WCF) that exposes methods that are set to
I have a Web service set up using Zend_Soap, and some public methods in
I have an WSDL / Web Service and I need to generate an set
My question is motivated by the following problem. I have a set of web
I have created objects that are interfaces to a web service. One typical object
I have an autogenerated class from importing a web service containing something like this
I have an ASMX Web Service set up to use the HTTP GET method.
Suppose I have the following (rather common) model Client invokes web service request ->
I have a web-service that returns a custom object, but now I want to
I have a set of WCF web services connected to dynamically by a desktop

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.