Thank you Patrick for your help.

I have already abtained the information about Proxy configuration on the windows Registry..
but I do not understand than the solution proposed..

What I mean is..
I was expecting using the QtSoapHttpTransport class some method like
setProxy (ot setUser) like it is in QHTTP class..

but those similar methods are not there..right?

Can you then give a simple how to use the solution proposed..

I have something similar to the example proposed in the QT DOC
Qt Code:
  1. void WeatherFetcher::findTemperature(const QString &city)
  2. {
  3. QtSoapMessage message;
  4. message.setMethod("getTemperature", "http://weather.example.com/temperature");
  5. message.setMethodArgument("city", "", city);
  6.  
  7. // transport is a private member of WeatherFetcher, of type QtSoapHttpTransport
  8. transport.setHost("www.example.com");
  9. connect(&transport, SIGNAL(responseReady()), SLOT(readResponse()));
  10.  
  11. transport.submitRequest(message, "/weatherfetcher/fetch.asp");
  12. }
  13. This is an example implementation of the readResponse() slot in the WeatherFetcher class:
  14. void WeatherFetcher::readResponse()
  15. {
  16. const QtSoapMessage &response = transport.getResponse();
  17. if (response.isFault()) {
  18. cout << response.faultString().toString().toLatin1().constData() << endl;
  19. return;
  20. }
  21.  
  22. const QtSoapType &returnValue = response.returnValue();
  23. if (returnValue["temperature"].isValid()) {
  24. cout << "The current temperature is "
  25. << returnValue["temperature"].toString().toLatin1().constData()
  26. << " degrees Celcius." << endl;
  27. }
To copy to clipboard, switch view to plain text mode 

Many thanks