Archive for 'Microsoft .NET 3.0 / WinFX' Category

WWWinamp v4.2 Build 2948 (Beta)

27 January 2008

The new version of WWWinamp has finally arrived!
This version of WWWinamp requires that you have the Microsoft .NET Framework 3.5 installed. You can get this from Microsoft.com by clicking here.
I’m calling it beta because a -lot- has changed behind the scenes and I did my best to test every feature but I might have missed [...]

A new version of WWWinamp is coming… I SWEAR!

21 January 2008

Hello Everyone!
I’m currently working on the latest version of WWWinamp after taking another hiatus from the project in order to clear my head and work on some other fun things such as the previously mentioned XNA projects
The next version of WWWinamp will be targeted for the .NET 3.5 Framework and you will [...]

Update on WWWinamp and my life in general

2 November 2007

Hello Everyone!
I thought I’d post a small update on what’s going on in my little world as well as the status of WWWinamp and other associated projects.
I hope that everyone is enjoying WWWinamp and the work I’ve put into it! I enjoy providing it as much as I love hearing from my users. So please, [...]

Getting an error every time you start WWWinamp v4.1?

12 October 2007

Are you getting the following error every time you start WWWinamp?
PLAIN TEXT
C#:

System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: Unrecognized configuration section system.serviceModel. (C:\WWWinamp\WWWinamp.exe.Config line 67)

at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)

at System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(ConfigurationSchemaErrors schemaErrors)

at System.Configuration.BaseConfigurationRecord.ThrowIfInitErrors()

at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)

--- End of inner exception stack trace ---

at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection(String sectionName)

at System.Configuration.ConfigurationManager.GetSection(String sectionName)

at System.Configuration.ConfigurationManager.get_AppSettings()

at ENusbaum.Applications.WWWinamp.Classes.AppConfiguration.get_configWWWinampStartHTTP()

at ENusbaum.Applications.WWWinamp.Forms.frmMain.Form1_Load(Object sender, EventArgs e)

This is WWWinamp's friendly way [...]

WWWinamp v4.1 WCF Client Example (Update for Build 2809)

10 September 2007

This is an update to the original WWWinamp WCF Client Example (please read the original post for configuration and help).
This update adds support for the new WWWinampGetStatus() method. This method was added so the WCF could could easily access information on WinAmp and WWWinamp including the current configuration values.
Supported values:

CommandName

"CURRENT_SONG"

CommandValue

"TITLE" - Returns Title of Current [...]

WWWinamp v4.1 Build 2809

10 September 2007

Hello Everyone!
The latest build of WWWinamp is good to go. I've been trying to expand out the WCF Endpoint to include as much information to the client as possible. This should allow a remote application access to every resource that WWWinamp has available locally.
WWWinamp v4.1 Build 2809 includes the following fixes/changes:

[WCF] Added WWWinampGetStatus() Method to [...]

WWWinamp v4.1 Build 2800

1 September 2007

A big THANKS to all who submitted their WWWinamp Error Logs to me. I was able to track down a couple of nagging issues for this minor bug-fix build.
Bugs fixed in Build 2800 are:

Fixed error when trying to generate playlist when the playlist was empty
Fixed error when trying to generate playlist and winamp.m3u can't be [...]

WWWinamp v4.1 WCF Client Example

25 August 2007

Along with this new version of WWWinamp, I am also releasing with it a small example of how to interact with WWWinamp using WCF from another application. This example is a Windows Forms application written in C#. Because this is a WCF application which uses .NET 3.0, you will need the following items installed in [...]

WWWinamp v4.1 Build 2793

25 August 2007

This is the first version of WWWinamp v4.1 that I feel is somewhat safe for use. I'm not ready to say it will replace the current version available (4.0 Alpha 13) because this version was completely restructured as far as how the code interacts and operates internally. A lot of the HTTP Daemon was re-written [...]

Creating a Custom Listener for your WCF application in C#

19 May 2007

Microsoft already provides a couple great listeners that are great for debugging. The two most commonly used are XmlWriterTraceListener and TextWriterTraceListener, which both dump the diagnostic messages to the file you specify in the configuration options. Microsoft has a great article on how to use these trace listeners for message logging within a WCF [...]