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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:08:29+00:00 2026-05-26T23:08:29+00:00

I am currently developing a WCF duplex service and I am trying to implement

  • 0

I am currently developing a WCF duplex service and I am trying to implement the callback method in my client app however there is a error of

'App.CallbackHandler' does not implement interface member IPostingServiceCallback.retrieveNotification(Service.Posting)' 

the service contract for my service are as follow

[ServiceContract(SessionMode=SessionMode.Required , CallbackContract = typeof(IPostingServiceCallBack))]
public interface IPostingService
{
    [OperationContract(IsOneWay = true)]
    void postNotification(Posting post);
}

public interface IPostingServiceCallBack
{
    [OperationContract]
    String retrieveNotification(Posting post);
}

I have generated the proxy and added into the project file of my client and adding the endpoint address into the app.config.

EDIT

The code I have in my client app currently is

public class CallBackHandler : IPostingServiceCallback
{
    public void retrieveNotification()
    {
        //planning to do something
    }
}
  • 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-26T23:08:29+00:00Added an answer on May 26, 2026 at 11:08 pm

    Your client application needs to implement IPostingServiceCallBack and define the retrieveNotification method.

    Say you have a client (not the proxy) that will be consuming your duplex service:

    public class MyClient : IPostingServiceCallBack
    {
    
        public String retrieveNotification(Posting post)
        {
    
           // Implement your logic here
        }
    }
    

    Note the above is a bare-bones example as a simple illustration. Your client will probably derive from another class as well (depending on whether it’s ASP.NET, WinForms, WPF, etc).

    Updated

    You’re still not implementing the method. Your callback interface is:

    public interface IPostingServiceCallBack
    {
        [OperationContract]
        String retrieveNotification(Posting post);
    }
    

    Your implementation is:

    public class CallBackHandler : IPostingServiceCallback
    {
        public void retrieveNotification()
        {
            //planning to do something
        }
    }
    

    You have public void retrieveNotification(), whereas the interface has String retrieveNotification(Posting post). The method signatures don’t match.

    You need to do:

    public class CallBackHandler : IPostingServiceCallback
    {
        public String retrieveNotification(Posting post)
        {
            // planning to do something
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently developing a WCF duplex Service for 2 clients. The first client
I am currently developing a WCF duplex service that allows a server and a
I am currently developing a duplex WCF service and I wish to test the
i am currently developing a wcf publish subscribe service. On my windows form app,
I am currently developing an approval routing WCF service that will allow an user
I am currently developing a service with wcf 4.0 (visual studio 2010 RC). When
I am a newbie in WCF, currently I am developing a TCP WCF service
I'm currently developing a WCF REST Web Service that will be running on Microsoft
I am currently developing a WCF Publish Subscribe service. My Service has the following
I'm currently developing a WCF service self hosted in a Windows service with the

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.