function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
LaurentDelcLaurentDelc 

Problem deploying with Ant tool

Hi,
 
We are having a strange behaviour on our Hudson (continuous integration system) when it deploys to an org using the ant tool. we are receiving this message:

Failed to submit request to Endpoint: https://na7-api.salesforce.com/services/Soap/m/14.0 for user xxxxxxxx@xxxxxx

 

 
It prevents our Hudson task to run successfully, which is a bloquer for us.
I guess the error happens during the deploy task:

<sf:deploy username="${sf.username}" password="${sf.password}"

maxPoll="${sf.maxPoll}" pollWaitMillis="${sf.maxWaitMillis}"

serverurl="${sf.serverurl}" zipFile="${src.dir}/batch1.zip" runAllTests="false" logType="Debugonly">

</sf:deploy>

I haven't found anything in the forums and don't know what it means. Have you ever seen this problem before?
 
Cheers,
 
Laurent
Best Answer chosen by Admin (Salesforce Developers) 
JonPJonP

Hi Laurent,

 

Please upgrade to the latest version of the Force.com Migration Tool for Ant.  This should resolve the issue you're experiencing, which seems likely to be proxy server related.

 

Regards,

 

Jon

salesforce.com Product Manager 

All Answers

JonPJonP

Hi Laurent,

 

Please upgrade to the latest version of the Force.com Migration Tool for Ant.  This should resolve the issue you're experiencing, which seems likely to be proxy server related.

 

Regards,

 

Jon

salesforce.com Product Manager 

This was selected as the best answer
LaurentDelcLaurentDelc

Hi,

 

It was actually the password that got expired. We didn't get any proper message so it took us a while to understand that but now it is fine.

 

Thanks a lot,

 

Laurent