Popular Posts
android.intent.action.SCREEN_ON & android.intent.action.SCREEN_OFF First, I've tried create a receiver to receive screen on/off and register receiver on AndroidManifest.xml like below, but unfortunately ... my string tool package bruce.lib; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.net.URL... Speed up VisualStudio using RAMDisk STEP: Install RAMDisk and create a ramdisk r: Create a batch file and setting temp variant: @echo off set tmp=r:\ set temp=r:\ call ...
Stats
Remoting config & Start remoting using config
.config
<system.runtime.remoting>
    <application name="ScheduleServiceMonitor">
        <service>
            <wellknown type="ScheduleService.Remoting.ServiceMonitor, ServicePlugin" mode="Singleton" objectUri="ScheduleService.Remoting" />
        </service>
        <channels>
            <channel ref="tcp" port="9876" />
        </channels>
    </application>
</system.runtime.remoting>
start remoting
RemotingConfiguration.Configure(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile, false);