Weblogic下的应用程序,客户端打印时提示权限不够

在weblogic11g中,weblogic.xml如下设置,即可 
<?xml version="1.0"?> 
<weblogic-web-app 
xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd" 

<session-descriptor> 
<cookie-http-only>false</cookie-http-only> 
<persistent-store-type>memory</persistent-store-type> 
<sharing-enabled>true</sharing-enabled> 
</session-descriptor> 
</weblogic-web-app> 

你可能感兴趣的:(打印,weblogic)