CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Threaded View

  1. #3
    Join Date
    Sep 2007
    Posts
    11

    Re: Web service does not conform to WS-I Basic Profile v1.1

    Here is the actual code for the two methods:

    [WebMethod]
    [Description("Get data for root levels.")]
    [SoapDocumentMethod(ParameterStyle = SoapParameterStyle.Bare)]
    [return : XmlElement("GetRootLevelsResponse")]
    public GetRootLevelsResponse GetRootLevels()
    {
    ...
    }

    [WebMethod]
    [Description("Get data for specified AcEventDef.")]
    [SoapDocumentMethod(ParameterStyle = SoapParameterStyle.Bare)]
    [return : XmlElement("GetAcEventDefsResponse")]
    public GetAcEventDefsResponse GetAcEventDefs()
    {
    ...
    }
    Last edited by beck; February 13th, 2008 at 08:50 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured