Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. WCF and WF
  4. Duplex Call Back Issue

Duplex Call Back Issue

Scheduled Pinned Locked Moved WCF and WF
questionhelpcsharpdotnet
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lijo Rajan
    wrote on last edited by
    #1

    Hi All, I am implimenting Duplex CallBack Contract for my Service. I am giving my Callback Interface Below. public interface IAsyncCallbackInterface { [OperationContract(IsOneWay = true)] void GetTheCurrentChannel(DuplexChannelFactory<IAsyncInterface> factory); } So when i am trying to open the host i am getting following error Type 'System.ServiceModel.DuplexChannelFactory`1[IAsyncInterface]' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. See the Microsoft .NET Framework documentation for other supported types. Here the IAsyncInterface is my ServiceContract. Since it is an interface how can i mark it as DataContract? Can any one plse tell me what is the issue here? Thanks Lijo

    L 1 Reply Last reply
    0
    • L Lijo Rajan

      Hi All, I am implimenting Duplex CallBack Contract for my Service. I am giving my Callback Interface Below. public interface IAsyncCallbackInterface { [OperationContract(IsOneWay = true)] void GetTheCurrentChannel(DuplexChannelFactory<IAsyncInterface> factory); } So when i am trying to open the host i am getting following error Type 'System.ServiceModel.DuplexChannelFactory`1[IAsyncInterface]' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. See the Microsoft .NET Framework documentation for other supported types. Here the IAsyncInterface is my ServiceContract. Since it is an interface how can i mark it as DataContract? Can any one plse tell me what is the issue here? Thanks Lijo

      L Offline
      L Offline
      Ladislav Mrnka
      wrote on last edited by
      #2

      That callback contract doesn't make sense. You are saying that your callback interface (service exposed on the client) has an operation which expects ChannelFactory as parameter from service. Why do you want to send channel factory from service to client? Btw. it is not possible because as exception says DuplexChannelFactory is not serializable.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups