Search

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

Matching Posts

  • Re: Serialize complex objects in IronPython for ASP.NET?

    Hello Johan, What is the target of your serialized object? Depending on the intended usage, there are other serialization types available: Simple XML generator on my blog here: http://www.globalherald.net/jb01/weblog/20.html Python Pickles might work, if your target is also Python: http://docs.python.org/library/pickle.html Google Protocol Buffers offer an extremely fast and compact format for objects being serialized between Python, Java, C++, and .NET languages: a) http://code.google.com/apis/protocolbuffers
    Posted to IronPython for ASP.NET (Forum) by JoshuaP_Ohio on 3/20/2009
  • Re: Embedding Windows Media Player: what does this code do?

    That seems to work a bit better, thanks!
  • Embedding Windows Media Player: what does this code do?

    Hello, I am embedding Windows Media Player in a web page. I have code that looks like this: <div id="video_main" style="position: relative; float: left"> < EMBED NAME=someRandomVideo SRC= "http://OurWindows2008StreamingServer/SomeVideo.asx" WIDTH=320 HEIGHT=240 CONSOLE=one CONTROLS=ImageWindow BACKGROUNDCOLOR=white CENTER=true> </ div > What is this doing? The 'recommended' ways of embedding Windows Media (creating an "OBJECT" with
  • Re: Debugging DOES NOT WORK in VS 2005 / IIS 6.0 / .NET 2.0 / Win2003 Server

    The Plot is thickening! Since I can't debug, I added logging (via Apache's log4net) to my application's framework. The logging is configured by an XML file placed in the application's BaseDirectory. If I put this XML file in the BaseDirectory of my console application, then logging works! yay! But... guess what. If I put the XML file under my Web Application - in the Bin directory, the web service's root directory, and the XMLConfig directory... restart IIS, not even debugging
    Posted to Visual Studio 2005 (Forum) by JoshuaP_Ohio on 2/19/2009
  • Re: Debugging DOES NOT WORK in VS 2005 / IIS 6.0 / .NET 2.0 / Win2003 Server

    Thanks for the note, Florence. Unfortunately AutoWireup is not valid for a web service. At least, that's what the compiler tells me when I put that in the code noted in the post above.
    Posted to Visual Studio 2005 (Forum) by JoshuaP_Ohio on 2/19/2009
  • Re: Debugging DOES NOT WORK in VS 2005 / IIS 6.0 / .NET 2.0 / Win2003 Server

    Good Morning Thomas, That is almost correct. Basically, I run the code in the debugger (hit F5). Then, I have an external web service client (on a different computer) call the .NET web service. I know that the web service runs, because I get data back from the web service call. It just does not stop in the debugger. Here is the code for the page: First, the page itself, coverage.asmx looks like this: <%@ WebService Language="C#" CodeBehind="~/App_Code/Coverage.cs" Class="Coverage"
    Posted to Visual Studio 2005 (Forum) by JoshuaP_Ohio on 2/19/2009
  • Re: Debugging DOES NOT WORK in VS 2005 / IIS 6.0 / .NET 2.0 / Win2003 Server

    Thanks for the note, Thomas. The page is actually a web service (asmx, not aspx), and the breakpoint is set on the method call to a library included in the project. It appears never to be hit, even when I do a call to the web service. I even short-circuted the library call, so that all it does is declare a String and return the string. The breakpoint still isn't hit, and this is the C# file that is the codebehind for the asmx page. If I hover over the breakpoint, it indicates that it's connected
    Posted to Visual Studio 2005 (Forum) by JoshuaP_Ohio on 2/18/2009
  • Debugging DOES NOT WORK in VS 2005 / IIS 6.0 / .NET 2.0 / Win2003 Server

    Hello, I am trying to debug an application in VS 2005 under IIS 6 / Win2k3. When I set breakpoints in my code, the debugger does not stop on the breakpoints. I have created an app pool and website that points to the directory my source code lives in. I have configured the project to use IIS by setting the property page "Use Custom Server" to the URL that the web server uses, eg: http://localhost/MyApp The code itself lives on a page called http://localhost/MyApp/Verification.aspx When I
    Posted to Visual Studio 2005 (Forum) by JoshuaP_Ohio on 2/12/2009
    Filed under: IIS Cassini Visual Studio 2005
  • Re: w3p.exe does not exist!

    Thanks for the quick reply, Kausha. I should have noted that those two checkboxes were the first things I tried. Even using process explorer, I can find no w3p.exe running on the machine!
    Posted to Installation and Setup (Forum) by JoshuaP_Ohio on 2/5/2009
  • w3p.exe does not exist!

    Hello, I have a new Windows Server 2003 VM set up by my server support team. It has all of the essentials (IIS, etc) and Visual Studio 2005. I have been trying to debug a web application, using the real IIS (Not Cassini). However, there is no w3p.exe process to which I can attach! In fact, there is no w3p.exe executable anywhere in the windows directory. There is a w3wp.exe, but it's not listed anywhere in the services control panel, and if I run it, it exits and nothing happens. Any ideas? Thanks
    Posted to Installation and Setup (Forum) by JoshuaP_Ohio on 2/5/2009
Page 1 of 1 (10 items)