yaronn/wcf.js

Custom bindings

Opened this issue · 2 comments

Would I be able to use wcf.js when we have a custom binding?

Like so:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.serviceModel>
        <bindings>
            <customBinding>
                <binding name="CustomBinding_ILanguageService" sendTimeout="00:05:00">
                    <binaryMessageEncoding />
                    <httpsTransport />
                </binding>
            </customBinding>
        </bindings>
        <client>
            <endpoint address="https://lpc067.kasteel.local/3.8.0/ConnextServices/LanguageService.svc"
                binding="customBinding" bindingConfiguration="CustomBinding_ILanguageService"
                contract="ILanguageService" name="CustomBinding_ILanguageService" />
        </client>
    </system.serviceModel>
</configuration>

Hi @kampdomoj , currently wcf.js does not support binary message encoding, sorry about that.

Ok.
I have to see if I can change the services and remove the binary encoding and ssl. Or publish them on another endpoint...