Serving an app with Xcode behind a proxy
I get this message when I try to submit an application because of our company proxy.
Failed to start delivery: all transports failed diagnostics.
When connected directly to an outbound router, the download is in progress.
Someone got an idea why? Xcode not using system proxy settings?
+3
Daniel brown
source
to share
1 answer
Hmm, adding a second line to my .bash_profile it worked:
#this was already there
export http_proxy="192.168.0.99:8080"
#this line added made it work
export https_proxy="192.168.0.99:8080"
Proxy activation in network settings did not work, very strange.
+2
Daniel brown
source
to share