Add to Technorati Favorites

giovedì 21 agosto 2008

MOSS 2007 e WSRP

Se vi state chiedendo come funziona la web part di MOSS che si chiama "WSRP Consumer Web Part" leggete il blog di Angus Logan e scoprirete che prima di tutto dovete creare un .config file nella \Program Files\Microsoft Office Server\12.0\Config\. C'e' anche un file di esempio che si chiama TrustedWSRPProducers.xml.sample.
Per testare la web part potete usare questo file:

<Configuration xmlns="http://schemas.microsoft.com/office/sps/2005/WSRP/Configuration" ProxyAddress="http://Your_Internet_Proxy:80">
<Producer Name="NetUnity" AllowScripts="true">
<ServiceDescriptionURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</ServiceDescriptionURL>
<RegistrationURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</RegistrationURL>
<MarkupURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</MarkupURL>
<PortletManagementURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</PortletManagementURL>
<!--SsoApplication Name="NetunityWSRP"/-->
</Producer>
</Configuration>



Se non avete un proxy allora dovete modificarlo così:

<Configuration xmlns="http://schemas.microsoft.com/office/sps/2005/WSRP/Configuration">
<Producer Name="NetUnity" AllowScripts="true">
<ServiceDescriptionURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</ServiceDescriptionURL>
<RegistrationURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</RegistrationURL>
<MarkupURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</MarkupURL>
<PortletManagementURL>http://wsrp.netunitysoftware.com:80/WSRPTestService/WSRPTestService.asmx</PortletManagementURL>
<!--SsoApplication Name="NetunityWSRP"/-->
</Producer>
</Configuration>

Nessun commento: