Expose a WCF Service through a Named Pipes binding

Your endpoint looks fine, although I’m curious about what’s in localBinding… Sounds like the easiest option is to just change the endpoint configuration on the named pipes client to match your service endpoint. The client shouldn’t care as long as it’s the only endpoint in the clients config file. Otherwise you’ll have to add names … Read more

How to programmatically force bluetooth low energy service discovery on Android without using cache

I just had the same problem. If you see the source code of BluetoothGatt.java you can see that there is a method called refresh() /** * Clears the internal cache and forces a refresh of the services from the * remote device. * @hide */ public boolean refresh() { if (DBG) Log.d(TAG, “refresh() – device: … Read more