I have an SSIS script running which uses a C# script to run a webclient to download a currencies file from XE.com. Unfortunately, the path XE provide has a cgi call and hence a question mark in it which is an illegal character, so I receive the following when I run the script:
System.ArgumentException: Illegal characters in path.
The script I used was just adapted from these instructions: How to make an HTTP request from SSIS?
Is there a way of replacing the question mark with an ASCII code or something?
Many thanks in advance.