The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
160 views

Generated Code Proxy

In my library Transfuse I use a code generator to build a handful of classes that look up resources. Each of these look up classes are proxied by a static utility class so they may be referenced ...
1
vote
0answers
62 views

Is my curl function to check proxies 'okay'?

function check_proxy($proxy) { $testpage = TESTPAGE ; $ch = curl_init($testpage); curl_setopt($ch,CURLOPT_PROXY,$proxy); curl_setopt($ch,CURLOPT_HTTPPROXYTUNNEL,true); ...
3
votes
2answers
571 views

Casting to less generic types

The source code, or rather the concept I'd like to get reviewed is what now allows me to do the following during reflection: object validator; // An object known to implement IValidation<T> ...
2
votes
1answer
432 views

Refactor for using ChannelFactory

I use VS 2008 and .NET 3.5 I have this code using CustomChannelFactory and Proxy ServiceReference. I would like refactor using lambdas, Action, ... any suggestions ? ...
5
votes
3answers
737 views

General Review > Windows Service

im currently working on several projects for my company to help reduce the amount of calls we have to deal with so we can focus on higher priority task such as Server Resource reduction etc. The ...