Search

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

Matching Posts

  • WCF Serialization

    Apologies for the maybe confusing question, it's late :) I have a CollectionDataContract as specified: [CollectionDataContract(ItemName = "Marker", Namespace = "http://www.mysite.com/")] public class MovieMarkers : List<string> { } When this is rendered into XML via the DatacontractSerializer I get something similar to: <Movies> <Markers> <Marker>0:00:00:03.200000/3000000</Marker> <Marker>0:00:00:05.1900000/3000000</Marker> <Marker>0
    Posted to XML Web Services (Forum) by SuperGhost on 7/6/2009
    Filed under: WCF, datamember, datacontractserializer
  • Re: Upload file with REST

    I think I have accomplished what you're asking about. The basic idea is I want to send base64 data to my web service via HTTP POST. The base64 encoded data consists of the file I wanted to upload. Here's my method: [OperationContract] [WebInvoke(UriTemplate = "/user/{userId}?action=audio&filename={filename}" , Method = "POST" , ResponseFormat = WebMessageFormat.Json)] ResponseJSON AddAudio( string userId, string filename, Stream encodedAudio); Stream encodedAudio will
    Posted to WCF REST Starter Kit (Forum) by SuperGhost on 4/20/2009
  • Scaling

    We are looking to put a module of our application on a separate SQL server however we need to reference data in one db from the first SQL Server fairly often. What can I implement in order to keep up performance on both servers? I'm wondering if Linked Server or read-only db would be a good solution? Or any other suggestions? thanks
  • Re: Forcing divs to show next to each other

    You can float DIVs to get them next to each other. example: < div style= "float: left; width: 300px;" >one</ div > < div style= "float: left; width: 250px;" >two</ div >
    Posted to Client Side Web Development (Forum) by SuperGhost on 10/24/2008
  • Server.Transfer in Web Farm

    Just need to be certain... When you do Server.Transfer on a web farm the server transfer's to the same file/server not another server on the web farm correct?
    Posted to Web Forms (Forum) by SuperGhost on 10/22/2008
  • Re: Error in ASP.NET MVC Demo after installing Visual Studio SP1?

    I was able to solve the issue, maybe it will help you. I searched through my entire system for System.Web.Abstractions - There were a few copies so I went through each of them and finally found that I had been copying the dll with version 3.5.0.0 instead of the dll with version 0.0.0.0 I replaced my existing 3.5.0.0 dll's with the Abstractions and Routing dll versions 0.0.0.0 into my project and that resolved the issue. The dll's were located in my MVC Preview 4 directory and were the only
    Posted to ASP.NET MVC (Forum) by SuperGhost on 8/17/2008
  • Re: SP1 and Routing for Webforms

    I was able to solve the issue. I searched through my entire system for System.Web.Abstractions - There were a few copies so I went through each of them and finally found that I had been copying the dll with version 3.5.0.0 instead of the dll with version 0.0.0.0 I replaced my existing 3.5.0.0 dll's with the Abstractions and Routing dll versions 0.0.0.0 into my project and that resolved the issue. The dll's were located in my MVC Preview 4 directory and were the only ones in the system with
    Posted to Web Forms (Forum) by SuperGhost on 8/17/2008
  • Re: Error in ASP.NET MVC Demo after installing Visual Studio SP1?

    I'm having the exact same issue but I'm using routing with WebForms. I tried manually referencing the Abstractions DLL, clearing out Temp builds, removing references and adding them back again, etc.... In my routing project I definitely have the HttpContextWrapper2 class in the DLL - Everything builds fine, then when it runs I get the exception. This started happening directly after SP1 install.
    Posted to ASP.NET MVC (Forum) by SuperGhost on 8/16/2008
  • SP1 and Routing for Webforms

    I've been using routing since it was available for webforms via Phil Haack's example here (and the updated one). However since I installed SP1 my routing now breaks with the following error: Could not load type 'System.Web.HttpContextWrapper2' from assembly 'System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. When I look at the references in my WebFormRouting project it shows HttpContextWrapper2 in the System.Web.Abstractions dll. It's
    Posted to Web Forms (Forum) by SuperGhost on 8/16/2008
  • Re: ASP.NET v2.0 installation fails on Windows Server 2003 x64...

    For future visitors... I had the same "IsDomainController" error and it was resolved by starting the "Server" service.
    Posted to Installation and Setup (Forum) by SuperGhost on 7/27/2008
Page 1 of 41 (409 items) 1 2 3 4 5 Next > ... Last »