Search Results

3
votes
9answers
2k views

Compatible encryption between C# and PHP, ColdFusion, Ruby, Python

We're developing a service that will accept a POST request, and some of the POST data will need to be encypted before the POST as it will be stored in hidden fields on a form. The applicati …
0
votes

Does C# have a String Tokenizer like Java’s?

If you are using C# 3.5 you could write an extension method to System.String that does the splitting you need. You then can then use syntax: string.SplitByMyTokens(); …
1
vote

Integration Testing Http Proxy Server

To test the integration by delivering a webpage you could try one of the following: Selenium …