Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

WCF Fault Contracts - Help

Options
  • 21-02-2008 12:45pm
    #1
    Closed Accounts Posts: 522 ✭✭✭


    I have a WCF Function declared and it all works fine

    <OperationContract()> _
    Function DALExecuteDataset(ByVal param As DALParameter) As DataSet


    but when i add a fault contract, the parameter passed in is always empty. Is there something else I have to do to allow the parameters get into my function ?

    <OperationContract()> _
    <FaultContract(GetType(MyFault))> _
    Function DALExecuteDataset(ByVal param As DALParameter) As DataSet


Advertisement