Search

You searched for the word(s): userid:328153

Matching Posts

  • Re: Error while adding a webservice to an existing webapplication (ASP.NET)

    Nevermind ... I got the solution. In the Web.Config of the Web Application I had a <pages> element under <system.web> and I had set the 'autoEventWireup' attribute to false. I simply removed the 'autoEventWireup' and it solved the problem. I guess the attribute was messing up the call to the WebService in someway... maybe the DefaultWsdlHelpGenerator.aspx page requires the autoEventWireup to be true so that it can call default EventHandlers for the page. Not including this attribute sets
    Posted to XML Web Services (Forum) by hsd31 on 11/5/2003
  • Re: Navigating an XMLNode

    Of the top of my head.... Create an XmlDocument and append the XmlNode to it using the AppendChild method of the XmlDocument. Call the GetElementsByTagName method of the XmlDocument which will return a XmlNodeList collection. If the tag names are unique then there will be only one element in the XmlNodeList which can be accessed using the Items property and the value as xmlnodelist.Items(0).InnerText There might be other(better?) ways to do it. But this should get your work done. hope this helps
    Posted to XML Web Services (Forum) by hsd31 on 11/5/2003
  • Error while adding a webservice to an existing webapplication (ASP.NET)

    I've an existing web application and I'm trying to add a new webservice to it. I'm using VS.NET, ASP.NET/C# and Framework 1.0. I added a new web service into a sub-folder in the UI project and created a new webservice in it and modified the namespace so that the webservice and the webapplication gets compiled into one assembly. In IIS I made the sub-folder containing the new webservice into an Application and copied the respective dlls into a bin folder under this sub-folder. When I try to access
    Posted to XML Web Services (Forum) by hsd31 on 11/5/2003
Page 1 of 1 (3 items)