Search

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

Matching Posts

  • Re: Xpath Query not returning results

    Try this: XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load("index.rdf");//from a loacl file XmlNodeList xNodeList =xmlMap.SelectNodes("//channel"); foreach(XmlNode xNode in xNodeList) { if(xNode.Name == "NODE YOU ARE LOOKING FOR") { //do something with xNode<br> } } Someties using the proper methods just don't work as well as keeping it simple
  • Re: updating sql database via webservice

    This may seem silly but... 1) Re-Build only the Web Service 2) Goro the WebReference . Right-Click and select update. 3) Re-Build the ASP.NET Project If this doesen't work try this: 1) Re-Build only the Web Service 2) In the ASP.NET project delete the WebReference 3) Re-Build the ASP.NET Project 4) Re-Add the WebReference 5) Re-Build the ASP.NET Project I hope this helps.
    Posted to XML Web Services (Forum) by swordfish666 on 2/27/2006
  • Re: Consume XML Web service to a treeview

    I am assuming you app is a Windows App. When you call your web service have it return the XML Data as a string and then load that string into an XmlDocument. XmlDocument xDoc = new XmlDocument(); string strXml = webService.GetXmlData() xDoc.LoadXml(strXml ); Now you have an populated XmlDocument. Next you load the XmlDoc into the tree: private void LoadTree() { XmlDocument xDoc = new XmlDocument(); string strXml = webService.GetXmlData() xDoc.LoadXml(strXml ); TreeNode node; myTreeView.Nodes.Clear
    Posted to XML Web Services (Forum) by swordfish666 on 2/27/2006
  • Mask File Download URL

    I am working ona Personal Music Server in ASP.NET/C# so that while I am away from home I can still get to my music library. Sure I can buy this type of product, run a PHP or PERL one or run it from Win2003 Media Server but a) I am cheap b) PHP and PERL blow donkey snot c) my Win2000 server works fine and oh did I memtion I am too cheap to buy Win2k3 So my question is how do play/send an mp3 to WinAmp or MediaPlayer without exposing the location of the actual file? I only want mp3 to be streamed not
    Posted to Web Forms (Forum) by swordfish666 on 2/10/2006
  • Re: Web Service help!

    You need to set the <authentication mode="Windows"> and configure the Directory Security on the virtual directory to Intergrated Windows Authentication. This should then give you access in the WebForms to the Windows Account using the application.
    Posted to XML Web Services (Forum) by swordfish666 on 10/12/2005
  • Re: multiple web services vs one web service?

    Use one WebService. For each Web Service you'll need a WebReference in VS. 1 WebService = 1 WebReference 5 WebServices = 5 WebReferences What you'll gain is flexibility when you move the WS's to a different server or change the virtual directory. And when you tell a client/customer that for each WebMethod they want to call they'll need to create a seprate WebReference. Oh, and security and code reuse. If you still want to multi-WebServices then you should group them by Business Components. Just my
    Posted to XML Web Services (Forum) by swordfish666 on 10/12/2005
  • Re: Loading XML file into String Variable

    You could load the XML File into a DataSet first and then get the xml string. DataSet ds = new DataSet(); ds.ReadXml(Server.MapPath("Data.xml")); string xml = ds.GetXml();
  • Exam Cram 2 Books 70-315, 70-316 and 70-320 for Sale

    I have recently passed the core requirment exams for MCSD and I am now selling the 3 books I used real cheap for $75!! Exam: 70-315 Exam Cram 2 Developing Web Applications with C# .NET and Visual Studio .NET 0-7897-2901-6 Exam: 70-316 Exam Cram 2 Developing Windows Applications with C# .NET and Visual Studio .NET 0-7897-2902-4 Exam: 70-320 Exam Cram 2 Developing XML Web Services with C# .NET and Visual Studio .NET 0-7897-2897-4 If you are interested you can buy them from me on ebay.
    Posted to Free For All (Forum) by swordfish666 on 6/27/2005
  • Re: Converting PortalCFG.XML to Sql Server 2000 Table

    Actually this was how IBS v1.0 was setup back in early 2002. I don't know why it was changed. One reason my be deployment on remote servers. With an XML file you just drop it in the directory and the site will read the config info. I myself have found that I would still like to have it in the database. So if anyone out there has a back of IBS v1.0 w/C# it may be alittle easier to reverse engenier. I have IBS v1.0 w/ VB.NET that I try posting later today. Cheers
    Posted to Portal Starter Kit (Forum) by swordfish666 on 3/13/2005
  • Creating an Appointment (WebDAV)

    This is from the Microsoft site. It is the code for creating/sending a Meeting Request via Exchange Server 2003. THis is someting I have been looking for for months. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_esdk_sending_a_message_webdav.asp
    Posted to Tips & Tricks (Forum) by swordfish666 on 7/20/2004
Page 1 of 2 (18 items) 1 2 Next >