Hi,
there are a conversion problem when AspxCommerce is installed in a no English server.
I change CurrencyConvertor\CurrencyConverter.cs line 60 width this:
```
rate = double.Parse(strResponse, CultureInfo.InvariantCulture);
```
So Real Time Update works again
UPDATE:
I add in web.config in section system.web this line:
```
<globalization culture="en-US" uiCulture="en-US" />
```
there are a conversion problem when AspxCommerce is installed in a no English server.
I change CurrencyConvertor\CurrencyConverter.cs line 60 width this:
```
rate = double.Parse(strResponse, CultureInfo.InvariantCulture);
```
So Real Time Update works again
UPDATE:
I add in web.config in section system.web this line:
```
<globalization culture="en-US" uiCulture="en-US" />
```