You are viewing a plain text version of this content. The canonical link for it is here.
Posted to stonehenge-commits@incubator.apache.org by be...@apache.org on 2010/06/16 19:23:25 UTC

svn commit: r955353 - /incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml

Author: bendewey
Date: Wed Jun 16 19:23:25 2010
New Revision: 955353

URL: http://svn.apache.org/viewvc?rev=955353&view=rev
Log:
JIRA: STONEHENGE-127
Fixed Null Pointer Exception for Metro BS->OPS
Submitted by: Pablo Cibraro

Modified:
    incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml

Modified: incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml?rev=955353&r1=955352&r2=955353&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml (original)
+++ incubator/stonehenge/trunk/stocktrader/metro/business_service/src/wsit-client.xml Wed Jun 16 19:23:25 2010
@@ -48,6 +48,17 @@
 
     <wsdl:import namespace="http://Trade.TraderOrderHost" location="wsdl0.wsdl"/>
 
+    <wsdl:binding name="BasicHttpBinding_OrderProcessorService" type="i0:OrderProcessorService">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+        <wsdl:operation name="SubmitOrder">
+          <soap:operation soapAction="SubmitOrder" style="document"/>
+          <wsdl:input>
+            <soap:body use="literal"/>
+          </wsdl:input>
+        </wsdl:operation>
+        
+      </wsdl:binding>
+  
     <wsdl:binding name="CustomBinding_OrderProcessorService" type="i0:OrderProcessorService">
         <wsp:PolicyReference URI="#ClientKeystorePolicy"/>
         <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
@@ -59,11 +70,14 @@
         </wsdl:operation>
     </wsdl:binding>
     <wsdl:service name="OrderProcessor">
+        <wsdl:port name="BasicHttpBinding_OrderProcessorService" binding="tns:BasicHttpBinding_OrderProcessorService">
+          <soap:address location="http://stocktrader:8000/tradeorderprocessor"/>
+        </wsdl:port>
         <wsdl:port name="CustomBinding_OrderProcessorService" binding="tns:CustomBinding_OrderProcessorService">
             <soap:address location="http://stocktrader:8000/tradeorderprocessor/sec"/>
             <wsa10:EndpointReference>
                 <wsa10:Address>http://stocktrader:8000/tradeorderprocessor/sec</wsa10:Address>
-                <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
+                <!--<Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
                     <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
                         <X509Data>
                             <X509Certificate>
@@ -71,7 +85,7 @@
                             </X509Certificate>
                         </X509Data>
                     </KeyInfo>
-                </Identity>
+                </Identity>-->
             </wsa10:EndpointReference>
         </wsdl:port>
     </wsdl:service>