禁用源/目标 portlet 的单击激活操作源

对于同时充当源 portlet 和目标 portlet 的协作 portlet,只能禁用单击激活操作源。以 OrderDetail portlet 为例,该 portlet 将 tracking id 属性发送至其它 portlet。必须执行下列手工步骤:

  1. 从类似于下列文件的 WSDL 文件中删除以粗斜体显示的节点:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="OrderDetail_Service" 
    			targetNamespace="http://www.ibm.com/etools/portal/portletexamples/cooperative/legacy"
    			xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:portlet="http://www.ibm.com/wps/c2a"
    			xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    			xmlns:tns="http://www.ibm.com/etools/portal/portletexamples/cooperative/legacy"
    			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    			xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    
    <types>
      <xsd:schema targetNamespace="http://www.ibm.com/etools/portal/portletexamples/cooperative/legacy">
        <xsd:simpleType name="OrderIDType">
          <xsd:restriction base="xsd:string">
          </xsd:restriction>
        </xsd:simpleType>
        <xsd:simpleType name="TrackingIDType">
          <xsd:restriction base="xsd:string">
          </xsd:restriction>
        </xsd:simpleType>
      </xsd:schema>  
    </types>
    
    <message name="OrderDetailsRequest">
      <part name="order_Id" type="tns:OrderIDType"/>
    </message>
    
    <message name="OrderDetailsResponse">
      <part name="tracking_Id" type="tns:TrackingIDType"/>
    </message>
    
    <portType name="OrderDetail_Service">
      <operation name="order_Detail">
         <input message="tns:OrderDetailsRequest"/>
         <output message="tns:OrderDetailsResponse"/>
      </operation>
    </portType>
    
    <binding name="OrderDetailBinding" type="tns:OrderDetail_Service">
      <portlet:binding/>
      <operation name="order_Detail">
        <portlet:action name="orderDetails" type="simple" caption="Order.Details" description="Get.details.for.specified.order.id"/>
        <input>
          <portlet:param name="orderId" partname="order_Id" caption="order.id"/>
        </input>
        <output>
          <portlet:param name="trackingId" partname="tracking_Id" caption="tracking.id"/>
        </output>
      </operation>
    </binding>
    </definitions>
    
  2. 还可以从相应 JSP 文件中除去使用 tracking id 属性的 encodeProperty 标记。
相关概念
开发协作 portlet
相关任务
禁用单击激活操作源和目标
禁用多个单击激活操作源属性中的一个
禁用源/目标 portlet 的单击激活操作目标
禁用多个单击激活操作目标中的一个
相关参考
Web 服务描述语言(WSDL)1.1
WebSphere Portal Information Center
XML 模式第二部分:数据类型

(C) Copyright IBM Corporation 2002, 2005. All Rights Reserved.