valecoder
valecoder

Reputation: 2085

Invalid URI: The hostname could not be parsed. Do not work with only WIndows 7 Starter (not with Home Edition)

The point is that debugging my C# app I faced the error: UriFormatException was unhandled. I've created p2p console chat.

And debugging stops at

chatClient.Open()

with logs "Invalid URI: The hostname could not be parsed."

chatClient is an object of my class inherited by public interface IPeerChannelChat with

[ServiceContract(
    Namespace = "http://slickthought.net/peerchannel",
    CallbackContract = typeof(IPeerChannelChat))]

It should be mentioned that this code works in Windows 7 Home Edition.

But Windows 7 Starter shows me this exception.

Have you got the same experience? Thanks in advance.

Upvotes: 0

Views: 1785

Answers (1)

Emil Stenström
Emil Stenström

Reputation: 14106

Guessing: Could it be that chatClient.open spawns a new process, and since Windows 7 Starter edition is limited to only three concurrent processes it stops because of that?

Upvotes: 1

Related Questions