Yes that was the trick. Thanks!
In solution.Web web.config
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
And on my concrete service implementation
[AspNetCompatibilityRequirements(RequirementsMode =
AspNetCompatibilityRequirementsMode.Allowed)]
public class TestWcfService : ITestService
/HAXEN
On Jan 13, 9:53 am, "Seif Attar" <
i...@seifattar.net> wrote:
> I haven't tried it myself, but you might be able to do it if you enable aspnet compatability mode (i think that' what it is called). Then httpcontext would be available and websessionstorage should work for the services, theoretically at least :)
>