active questions tagged policyfiles - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:29:37Zhttp://stackoverflow.com/feeds/tag/policyfileshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1783173/is-it-possible-to-remove-a-publisher-policy-file0Is it possible to remove a Publisher Policy file?Jeffrey Cameron2009-11-23T13:37:40Z2009-11-27T11:07:09Z
<p>I have a situation where a vendor-supplied assembly reference is messed up. Basically, it is pointing to a version of the assembly that I do not want to use. I used FusionLog to view the assembly binding log and I see these entries:</p>
<pre>LOG: Publisher policy file is found at C:\WINDOWS\assembly\GAC_MSIL\policy.11.0.iAnywhere.Data.SQLAnywhere\11.0.0.22582__f222fc4333e0d400\iAnywhere.Data.SQLAnywhere.config
LOG: Publisher policy redirect is found: 11.0.0.11292 redirected to 11.0.1.22582</pre>
<p>I cannot seem to find the publisher policy file and I am wondering if there is a way to remove it? I tried removing the assembly from the GAC but to no avail. </p>
<p>The background of the problem is that I was directed to install a patch for the client software from Sybase but this patch installed a version of the assembly (11.0.0.11292) that is earlier than the previous assembly (11.0.1.22582). Don't ask me why this happened but it did.</p>
http://stackoverflow.com/questions/1434011/clientaccesspolicy-xml-file-not-working0clientaccesspolicy.xml file not working...eidylon2009-09-16T16:17:32Z2009-09-16T17:36:45Z
<p>Hi all... I have a site with a Silverlight-enabled WebSerivce (.svc file). In that app is also a Silverlight application which references this service. </p>
<p>Now, our website uses multiple headers (to account for the user coming to it with or without the 'www.' subdomain, e.g. <strong>mydomain.com</strong> and <strong>www.mydomain.com</strong>). So i put in a clientaccesspolicy.xml file to allow access from the other subdomain (in addition to the web.config change). This all worked fine. </p>
<p>Now, we need to lock it down so that ONLY our domain can access the service... so i modified the clientaccesspolicy.xml file as I thought to allow access only to our two subdomains. However it is still allowing access to other domains. To test this, I did NOT include the domain for our test server, so I would've expected running the Silverlight off the test site would've failed, but it does not; it still gets all the data and works as expected. </p>
<p>What changes do i need to make to clientaccesspolicy.xml to make sure that ONLY our two subdomains can access the service? My XML follows: </p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="http://www.mydomain.com"/>
<domain uri="http://mydomain.com"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
</code></pre>
<p><strong>EDIT:</strong> I did also try restarting both the website, and the whole IIS service (not the physical box) after making the changes, but it still didn't seem to work.</p>
http://stackoverflow.com/questions/1334704/silverlight-socket-policy-not-working0Silverlight Socket Policy Not WorkingCodeMonkey12009-08-26T13:30:22Z2009-08-26T14:35:50Z
<p>I am trying to implement a data push from a Windows Service to a Silverlight app. I have created a policy server which sends this policy file:</p>
<pre><code><?xml version="1.0" encoding ="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from>
<domain uri="*" />
</allow-from>
<grant-to>
<socket-resource port="8400" protocol="tcp" />
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
</code></pre>
<p>Using a TCP test tool I have verified that when I connect to port 943 and send the request, I receive back that policy file.</p>
<p>Also, using breakpoints in my policy server I have confirmed that the Silverlight app is reaching the service and seemingly the service sends the policy file without error.</p>
<p>I have also confirmed that my data push service is listening correctly on the above port.</p>
<p>However, somehow Silverlight's connection to my data push service is always failing with a WinSock 10013 Access Denied error.</p>
<p>The only thing I can think is that my policy file isn't correct, although as far as I can see it meets the spec. Let me know if you'd like me to post any of my other code. Any help would be appreciated.</p>
http://stackoverflow.com/questions/1179672/unlimited-strength-jce-policy-files4"Unlimited Strength" JCE Policy FilesKen2009-07-24T19:27:09Z2009-08-05T12:42:20Z
<p>I have an app that uses 256-bit AES encryption which is not supported by Java out of the box. I know to get this to function correctly I install the JCE unlimited strength jars in the security folder. This is fine for me being the developer, I can install them.</p>
<p>My question is since this app will be distributed, end users most likely will not have these policy files installed. Having the end user download these just to make the app function is not an attractive solution. </p>
<p>Is there a way to make my app run without overwriting files on the end user machine? A third party software that can handle it without the policy files installed? Or a way to just reference these policy files from within a JAR? </p>
<p>Thanks for any ideas.</p>
http://stackoverflow.com/questions/1034456/signed-applet-without-modifying-policy-file-manually0Signed applet without modifying policy file manually.Silent Warrior2009-06-23T18:55:17Z2009-06-23T18:55:17Z
<p>Currently I had developed an applet. Applet basically uses java.awt.Robot package for capturing screen. I want to store captures images locally. I had signed my applet jar. Still when applet tries to write file into local system it gives access error. Is there any way by which I can write file in local file system without modifying policy file manually. I am using jdk 5.</p>
http://stackoverflow.com/questions/706169/storing-dlls-in-a-central-non-gac-location1Storing DLL's in A Central NON GAC LocationMitchel Sellers2009-04-01T15:52:58Z2009-04-01T19:55:05Z
<p>We are being presented with a unique, painful situation. Traditionally we have been using the GAC and Policy Files to control DLL versions for our .NET applications. However, we have a very unique situation and are running into major problems with this, as some of our applications do NOT respect the policy files. Most specifically the .NET 2.0 applications that reference .NET 1.1 dll's that have a Policy File.</p>
<p>We have a blended mix of items that run dynamically (loaded via reflection) in a windows application as well as a large number of web applications. We are looking to move to more of a "Centralized DLL Store" rather than worrying about GAC versioning. But we can't seem to find a way to tell our application to "Look here for any DLL's".</p>
<p>Looking at some of the assembly information nodes (<a href="http://msdn.microsoft.com/en-us/library/twy1dw1e.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/twy1dw1e.aspx</a>) we can get part way there, but we must define each and Every DLL that should be looked up, this is not possible as we have about 200 different applications that would require regular web.config updates as we update versions of the shared DLLs.</p>
<p>Does anyone have a good idea on how we can move the DLL references? CopyLocal isn't an option as we have times where we NEED applications to use the new versions of the shared DLLs. The GAC, at least right now, isn't really an option either.</p>
http://stackoverflow.com/questions/489675/net-assembly-binding-how-why-1-1-2-0-gac-policy-files-and-more2.NET Assembly Binding How/Why (1.1, 2.0, GAC, Policy Files and more...)Mitchel Sellers2009-01-28T22:21:42Z2009-01-28T22:57:47Z
<p>I have been working through a number of very "odd" issues with some DLL versions, Policy Files, and items in the GAC and for the life of me I haven't been able to find a solid answer as to how/why the .NET framework picks the assemblies that it does, when binding project references. </p>
<p>First of all to give a bit of history about what we have, we have two library DLL files with the following information</p>
<pre><code>ApplicationAssembly.dll - .NET 1.1 code - .dll Version 01.01.00.1234
ApplicationAssembly.dll - .NET 1.1 code - .dll Version 01.01.00.1244
ApplicationAssembly.dll - .NET 2.0 code - .dll Version 02.00.00.1111
</code></pre>
<p>Each of these assemblies are loaded into the GAC, and the 1.1 and 2.0 versions each have a policy file specifying the most current version for loading.</p>
<p>We have a project that references the 1.1.00.1234 version of the ApplicationAssembly.dll file, however, the project was moved and the hint path is no longer valid. However, the reference is not dead, but it is showing to the 02.00.00.1111 version and not the intended 1.1 version of the assembly.</p>
<p>How is this process determined, and why did it jump right away to the 2.0 framework? If we specify that it is a "Specific Version" reference, even with an incorrect hintpath it will find the proper DLL, but due to future risk of breaking things we cannot leave that setting turned on.</p>
<p>I guess the question is <em>Why does this happen?</em> And how does .NET determine where to go for the assembly?</p>