Search

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

Matching Posts

  • Re: Remove WSDL for specific web service?

    Thanks, that worked. I didn't realize you can have multiple <system.web> nodes. I left my default configuration set to remove the documentation, and then added this: <location path="MyWebservice.asmx"> <system.web> <webServices> <protocols> <add name="HttpPost"/> <add name="Documentation"/> </protocols> </webServices> </system.web> </location> Works great. Thanks!
    Posted to XML Web Services (Forum) by mr_breaker on 8/4/2009
  • Remove WSDL for specific web service?

    Hi, I know that you can remove the documentation/WSDL for all web services within a web site by adding this to the web.config: <webServices> <protocols> <add name="HttpPost"/> <remove name="Documentation"/> </protocols> </webServices> But is there a way to remove or hide the documentation for a specific web service? I have multiple web services within my site, but I would like to only remove the documentation for one of them. Any advice?
    Posted to XML Web Services (Forum) by mr_breaker on 8/3/2009
  • Client side form validation on TabContainer tab change

    Hi guys, I have a TabContainer with a few tab panels in it. I have form fields in all of the tabs which are part of the same validation group. Is there a way to trigger the client side form validation when a Tab Panel is selected? My issue is that if a button on the page is hit, it's possible the ValidatorCalloutExtender will pop up a message on a tab that is not currently shown. If I can get the validation to fire prior to changing a tab, then this will be avoided. Any help would be greatly
    Posted to ASP.NET AJAX Control Toolkit (Forum) by mr_breaker on 4/29/2009
  • Re: Using XSL to transform XML output of webmethod?

    If anyone else is interested, I changed the return type of my function to be XmlDocument and was able to do the transformation before returning the new object.
    Posted to XML Web Services (Forum) by mr_breaker on 4/24/2009
  • Using XSL to transform XML output of webmethod?

    Hi all, I have a web method in my web service that returns a struct. Is there a way I can apply an XSL transformation to the output XML that the web service returns? I'm not sure how to go about it... I'm guessing I have to add some code after the return struct is serialized? My web method looks something like this: [WebMethod(Description = "This method....." , CacheDuration = 0)] public MyStruct GetXML() { MyStruct ms = new MyStruct(); // do stuff return ms; }
    Posted to XML Web Services (Forum) by mr_breaker on 4/23/2009
  • Re: Reorderlist - updating every item?

    Anyone have any insight on this? I have been looking at the source code of the control, searching for where it iterates through the items when a reorder takes place. I haven't been able to find it... but if I could modify it to update all of the items on every reorder, that would fix myissue.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by mr_breaker on 3/12/2009
  • Reorderlist - updating every item?

    Hi, I am working with the Reorderlist control. I have noticed that when an item is reordered, only items preceding it in the list are updated. Is there a way to modify it so that every item in the list will be updated every time a reorder is performed? For example, in this list: Item 1 Item 2 Item 3 Item 4 Item 5 If you were to move Item 3 to the first position, only items 1, 2, 3 will be updated. I would like to perform the update on all five items. Thanks!
    Posted to ASP.NET AJAX Control Toolkit (Forum) by mr_breaker on 3/11/2009
  • Re: How to determine if a SSL certificate is installed on the web server?

    I still haven't been able to find any IIS property that tells me if a cert is installed... does anyone have any other ideas on how I could go about this?
    Posted to Security (Forum) by mr_breaker on 8/25/2008
  • How to determine if a SSL certificate is installed on the web server?

    Hi, is there a way to programatically determine if there is an SSL certificate installed on the server? I already have code in place to set IIS properties, but I have been unable to find anything pertaining to the cert. Any ideas would be greatly appreciated!
    Posted to Security (Forum) by mr_breaker on 8/18/2008
  • Re: Programmatically setting IIS properties

    In case anyone else comes across this, the reason why I was unable to set the properties for subdirectories and files was that there were no records for those objects in the IIS metabase. If you have to create the metabase record if it does not already exist, then you can set the properties.
    Posted to Web Forms (Forum) by mr_breaker on 8/18/2008
Page 1 of 18 (178 items) 1 2 3 4 5 Next > ... Last »