Philip Holly
Philip Holly
@srollinet @beatsm Visual Studio 2015 by default will try to compile Typescript on build. If you're missing any Typescript definition files, like `aurelia-cli` which are not on definitively Typed or...
@robmadole I'm new to vue-fontawesome. I'm confused because [Readme](https://github.com/FortAwesome/vue-fontawesome#processing-i-tags-into-svg-using-font-awesome) states we need to use `dom.watch`. Maybe that was copied from npm instructions by accident? The font awesome vue components should...
I would, but unfortunately I don't know enough about build systems. I haven't used JSPM or Webpack before. And I haven't been keeping up with the experiences from the aurelia...
I need wsHttpBinding to work so I can hit a on-premise estore (http://www.nodus.com/documentation/eSSS_501_API_Developer_Guide.pdf). I tried using CustomBindings with http but it didn't work - it could be because I need...
@StrangeWill These are the errors I'm getting so now I'm not sure if it's even rejecting it because of credentials: ``` An unhandled exception occurred while processing the request. WinHttpException:...
@StrangeWill I switched the endpoint to a network ip instead of a hostname and this is the error I get: ``` FaultException: The message could not be processed. This is...
@StrangeWill Thanks for the suggestion. I tried using a `ChannelFactory` and setting the `Credentials.Windows.ClientCredential` on it but I got the same error so I'll try using that `SecurityBindingElement`.
I get this error when using `SecurityBindingElement`: ``` PlatformNotSupportedException: TransportSecurityBindingElement.BuildChannelFactoryCore is not supported. ``` As a workaround I am going to create an asp.net 4 api that interfaces with our...
Thank you @dotnetjunkie and @KrishnaKollu for this great conversation. I have read and love the DI Patterns, Principles, and Practices book. I feel that if it had the word "Architecture"...
Just realized @dotnetjunkie you talk about drawbacks of injecting `IQueryHandler` directly [here](https://blogs.cuttingedge.it/steven/p/queries/). I like how you mentioned start without a Mediator. If the only advantage of using a Mediator is...