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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:55:12+00:00 2026-05-23T13:55:12+00:00

I have a Silverlight application that needs to get the label of an OptionSetValue

  • 0

I have a Silverlight application that needs to get the label of an OptionSetValue attribute from the Activity entity. The attribute logical name is activitytypecode, and I have the following extension method to retrieve an attribute metadata:

    public static void RetrieveAttribute(this IOrganizationService service,
        string entityLogicalName, string entityAttributeName,
        Action<OrganizationResponse> callback)
    {            
        var retrieveAttributeRequest = new OrganizationRequest()
        {
            RequestName = "RetrieveAttribute",
        };

        retrieveAttributeRequest["EntityLogicalName"] = entityLogicalName;
        retrieveAttributeRequest["RetrieveAsIfPublished "] = false;
        retrieveAttributeRequest["LogicalName"] = entityAttributeName;

        service.BeginExecute(retrieveAttributeRequest,
            result =>
            {
                if (result.IsCompleted)
                {
                    var response = service.EndExecute(result);

                    callback(response);
                }
            }, null);
    }

And I use it as follows on my SoapCtx that has already been initialized:

SoapCtx.RetrieveAttribute("activitypointer", "activitytypecode",
    orgResponse =>
    {
        if (orgResponse != null)
        {
            // examine orgResponse
        }
    });

I am able to debug the procedure but it fails on the line var response = service.EndExecute(result); in my extension method. I get the following Exception message:

The remote server returned an error: NotFound.

Here’s the StackTrace if you will find it useful:

{System.ServiceModel.CommunicationException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
   at System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
   at System.Net.Browser.BrowserHttpWebRequest.<>c__DisplayClass5.<EndGetResponse>b__4(Object sendState)
   at System.Net.Browser.AsyncHelper.<>c__DisplayClass4.<BeginOnUI>b__1(Object sendState)

I appreciate any help or guidance, thanks!

  • 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-23T13:55:13+00:00Added an answer on May 23, 2026 at 1:55 pm

    Aside from the anonymous method the following worked for me. Please note MetadataId

        private void StartGetAttributeMetadata()
        {
            OrganizationRequest request = new OrganizationRequest() { RequestName = "RetrieveAttribute" };
            request["EntityLogicalName"] = "activitypointer";
            request["LogicalName"] = "activitytypecode";
            request["MetadataId"] = Guid.Empty;
            request["RetrieveAsIfPublished"] = true;
    
            IOrganizationService service = SOAPServerUtility.GetSoapService();
            service.BeginExecute(request, new AsyncCallback(EndGetAttributeMetadata), service);
        }
    
        private void EndGetAttributeMetadata(IAsyncResult result)
        {
            OrganizationResponse response = ((IOrganizationService)result.AsyncState).EndExecute(result);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Silverlight application that needs to display data in both English (feet,
I have a silverlight application that needs to talk to a rails app to
I have a Silverlight application that reads its content from an XML file. The
I have a Silverlight application that needs to scroll some data (like stock information)
I have a Silverlight application that needs Drag-And-Drop functionality because I allow the user
I have a Silverlight application that is using a DataGrid. Inside of that DataGrid
I have a silverlight application that I am embedding in an existing ASP.NET web
I have a Silverlight application that I use the Beta2 T4 Self tracking entities
I have a silverlight application that contains Bing map. I want when the user
I have a WCF service and a Silverlight application that work just fine when

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.