Archive

Archive for September, 2010

Replace Machine Name with Domain name in WCF Service wsdl link.

September 14, 2010 Leave a comment

If you installed your WCF service on a machine that has more than one network interfaces (internal and externals) then you probably faced to this problem: the wsdl link on your web services points to the internal domain (computer’s name) of the server hosting the services.

So, how to fix this? With the service metadata’s attribute, httpGetUrl.

End Point definition:

<service behaviorConfiguration="My.Service.Behavior" name="My.Services.API">
<endpoint address="http://my.externaldomain.com/serviceapi.svc" binding="basic" name="BasicHttpEndpoint" contract="My.Service.IServiceAPI">
</endpoint>
</service>

Behaviour definition:

<behavior name="My.Service.Behavior">
<serviceMetadata httpGetEnabled="true" httpGetUrl="http://my.externaldomain.com/serviceapi.svc/basic" />
</behavior>

Done, Now we have domain rather machine’s name.
If you need SSL, then go with httpsGetEnabled and httpsGetUrl.

Categories: Uncategorized

Tabu 2.2 Released

September 14, 2010 5 comments

Only source code available by now. This release is fully sponsored by the contributions of Valère Monseu, who added internationalization support. Enjoy!

tabu-audio-player_2.2

Categories: Uncategorized

Tabu Audio Player 2.2

September 7, 2010 2 comments

Thanks to Valère Monseur, Tabu audio player is now internationalized!!!

I’m building the packages, will be available for download very soon.

Categories: Uncategorized
Follow

Get every new post delivered to your Inbox.