Search

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

Matching Posts

  • project synchronization

    Hello, I want to synchronize a Project between the office PC and the laptop ( to work at home). Until now I have had a solution on the PC and another solution on the laptop. On the laptop solution I added a web project, from the PC. Until now all has been working fine, but now it doesn't work anymore. I don't know why. And I don't remember how I did it. Could somebody try to explain me how can I reconfigure or configure from start the project synchronization? Thank you very much, Edu
  • Re: "Invoke" test not seen at the server. why?

    Thanks Tomas, How can I change the default configuration to allow to see the test page, and be able to consume the WS from the test page? Regards
    Posted to XML Web Services (Forum) by eemece2 on 9/13/2005
  • Sending a ZIP file as a ASHX

    Hello, Until now I am using the following code to loading a XML file and sending as a ashx page response. (I do this for security reasons) But now I want to send a ZIP file (or any other binary file) instead the XML file. How can I do this? what time of stream I need to use, and how? public class XmlBackupHandler : IHttpHandler { public bool IsReusable { get { return true; } } public void ProcessRequest(HttpContext ctx) { XmlDocument xmlBackup = new XmlDocument(); xmlBackup.Load(HttpContext.Current
    Posted to HttpHandlers and HttpModules (Forum) by eemece2 on 9/13/2005
  • "Invoke" test not seen at the server. why?

    Hello, Why can't I get a web service response using the browser from a external web server, but with the same WS located on my PC, using http://localhost/virtuadirectory I can? Whith: http://www.myserver.com/projects.asmx I can see the WS methods But with: http://www.myserver.com/projects.asmx?op=GetProjects I only see the WS information, but not the "invoke" button and the parameters texboxes that I can see on the localhost test aplication. Another question: How can I debug the WS on the server
    Posted to XML Web Services (Forum) by eemece2 on 9/12/2005
  • Re: Root node from a FOR XML

    Hello pkr, I'm using ADO.NET on an ASP.NET page (with c#) Now I am using the following code to solve the problem: XmlDocument xmlDoc = new XmlDocument(); myConnection.Open(); SqlDataReader dr = myCommand.ExecuteReader(); string stringXml = "<Projects>"; while (dr.Read()) { stringXml += dr.GetString(0); } stringXml += "</Projects>"; xmlDoc.LoadXml(stringXml); myConnection.Close(); return (xmlDoc); But I am searching for a solution on the SQL Server side ( without SQLXML 3.0 for the moment
  • Re: Reset IDENTITY seed

    Thanks, DBCC CHECKIDENT . works fine! Regards, Edu
  • SqlDataReader -> String -> XML

    Hello, I'm getting a XML from SQL server (with FOR XML) on an ASP.NET page. To add the root node I'm using the following code: XmlDocument xmlDoc = new XmlDocument(); myConnection.Open(); SqlDataReader dr = myCommand.ExecuteReader(); string stringXml = "<Projects>"; while (dr.Read()) { stringXml += dr.GetString(0); } stringXml += "</Projects>"; xmlDoc.LoadXml(stringXml); myConnection.Close(); return(xmlDoc); There is a better solution? May I have any problem with this? Could I use ExecuteXmlReader
    Posted to XML and XmlDataSource Control (Forum) by eemece2 on 8/26/2005
  • Root node from a FOR XML

    Hello, How can I get a XML with a root node from a FOR XML ?: Now I have this: The SQL: SELECT * FROM Table_Projects Project FOR XML AUTO and the XML output: <Project> <ItemID>1</ItemID> ..... </Project> <Project> <ItemID>2</ItemID> ..... </Project> ... and I want this: <Projects> <Project> <ItemID>1</ItemID> ..... </Project> <Project> <ItemID>2</ItemID> ..... </Project> ... </Projects> thanks
  • Reset IDENTITY seed

    Hello, Can I reset the IDENTITY seed of a Table column without delete/drop the table? I want to delete all the table rows, restore de seed, and restore a backup made on a XML (using SET IDENTITY_INSERT Table ON) I cant drop the table due to acount restricctions. regards, Edu
  • Restore Backup from XML (the Data) and SP (The structure)

    Hello, I'm making a Backup system for a hosted web database. I only want to restore some tables: the data and the structure. For the data I use XML, and for the structure I use a SP. For make this SP I use a SQL obtained from the SQL command sequence generated on Enterprise Manager. With the restore, the problem are the IDENTITY rows. I need to create (after drop it) the tables without the IDENTITY attribute, populate the tables from the XML data, and set de IDENTITY atrribute. This is the way I
Page 1 of 4 (34 items) 1 2 3 4 Next >
Microsoft Communities