IE11 पीएसी-फ़ाइल में परिवर्तन
Microsoft द्वारा परिवर्तन किए गए थे कि IE11 स्थानीय PAC फ़ाइलों को कैसे संभालता है। आप उनके बारे में यहाँ पढ़ सकते हैं या कुछ त्वरित जानकारी के लिए नीचे देख सकते हैं ।
यह भी ध्यान दें, कि alert()
बयान अब विंडोज 8 के रूप में काम नहीं करते हैं ।
IE11 के साथ, फ़ाइल-प्रोटोकॉल के माध्यम से पीएसी-फाइल का उपयोग अधिक संभव नहीं है, जब तक कि आप निम्न रजिस्ट्री-कुंजी नहीं जोड़ते हैं:
[HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
(DWORD)"EnableLegacyAutoProxyFeatures"=1
नोट: विंडोज -8 या उच्चतर का उपयोग करते समय अलर्ट-स्टेटमेंट दिखाई नहीं देंगे!
AUTOPROX के साथ DEBUG PAC फाइल ( डाउनलोड लिंक )
कभी-कभी आपको अपनी पीएसी-फ़ाइल का परीक्षण करने की आवश्यकता होती है, यदि अपेक्षित मार्ग वापस आ जाता है, हालांकि आपके पास प्रश्न में वेबसाइट तक कोई पहुंच नहीं है। ऐसे परीक्षण के लिए आप पियरे-लुई Coll द्वारा निर्मित (संलग्न) कमांड लाइन-यूटिलिटी टूल autoprox.exe का उपयोग कर सकते हैं।
CMD
बिना अतिरिक्त पैरामीटर के इसे शुरू करने पर उपयोग प्रदर्शित होता है:
C:\temp>autoprox
Version : 2.1.0.0
Written by pierrelc@microsoft.com
Usage : AUTOPROX -s (calling DetectAutoProxyUrl and saving wpad.dat file in temporary file)
Usage : AUTOPROX [-h] url [Path to autoproxy file]
-h: calls InternetInitializeAutoProxyDll with helper functions implemented in AUTOPROX
AUTOPROX url: calling DetectAutoProxyUrl and using WPAD.DAT logic to find the proxy for the url
AUTOPROX url path: using the autoproxy file from the path to find proxy for the url
Example: autoprox -s
Example: autoprox http://www.microsoft.com
Example: autoprox -h http://www.microsoft.com c:\inetpub\wwwroot\wpad.dat
Example: autoprox http://www.microsoft.com http://proxy/wpad.dat
यहाँ हमारे नमूने के साथ उत्पादन है:
C:\temp>autoprox http://us.msn.com c:\temp\sample.pac
The Winsock 2.2 dll was found okay
url: http://us.msn.com
autoproxy file path is : c:\temp\sample.pac
Calling InternetInitializeAutoProxyDll with c:\temp\sample.pac
Calling InternetGetProxyInfo with url http://us.msn.com and host us.msn.com
Proxy returned for url http://us.msn.com is:
PROXY myproxy:80;
जब आप यह देखना चाहते हैं कि DNS से संबंधित कौन से कार्य कहे गए हैं, तो आप इसके अलावा "-h" पैरामीटर का उपयोग कर सकते हैं: यहां आउटपुट, जब इसका उपयोग किया जाता है:
C:\temp>autoprox -h http://us.msn.com c:\temp\sample.pac
The Winsock 2.2 dll was found okay
Will call InternetInitializeAutoProxyDll with helper functions
url: http://us.msn.com
autoproxy file path is : c:\temp\sample.pac
Calling InternetInitializeAutoProxyDll with c:\temp\sample.pac
Calling InternetGetProxyInfo with url http://us.msn.com and host us.msn.com
ResolveHostByName called with lpszHostName: us.msn.com
ResolveHostByName returning lpszIPAddress: 65.55.206.229
Proxy returned for url http://us.msn.com is:
PROXY myproxy:80;
Autoprox.exe में त्रुटि-हैंडलिंग:
जब आप एक गैर-मौजूदा PAC- फ़ाइल (जैसे कमांड-लाइन में टाइपो) निर्दिष्ट करते हैं, तो autoprox.exe से परिणाम निम्न होगा:
ERROR: InternetInitializeAutoProxyDll failed with error number 0x6 6.
जब पीएसी-फाइल में सिंटैक्स-त्रुटियां होती हैं, तो आप आम तौर पर प्रदर्शित निम्न संदेश प्राप्त करते हैं:
ERROR: InternetGetProxyInfo failed with error number 0x3eb 1003.
स्थानीय परीक्षण समाप्त करने के बाद, पीएसी-फ़ाइल को वेबसर्वर पर कॉपी किया जाना चाहिए जहां इसे http-प्रोटोकॉल के माध्यम से एक्सेस किया जाएगा।