Hi there,
We have app proxy + dns proxy both launched like below way:
// Start App Proxy
ProxyManager.shared().loadProxyManager(connect: true) {
ProxyManager.shared().addObserver {}
ProxyManager.shared().start()
}
// Start the DNS Proxy
DNSManager.shared().start()
With MDM profile, it work all good.
But if without MDM profile, there will be two prompts asking confirmation to add net services for each proxy. But the first prompt will disappear and replaced by the second prompt. Thus can only confirm and add the second proxy net service.
The result is only dns proxy net service added and running. No app proxy net service seen or running.
Is it the right way that I launch both proxies like that? Still we need the use case without MDM profile.
Thanks in advance for any suggestion.
Richard