I have tried to create Ensemble SOAP passthrough operation following [this guide](http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=EESB_passthrough_walkthrough#EESB_passthrough_soap_walk). Here's my production configuration (after steps 1-4):
Class Passthrough.Production Extends Ens.Production
{

XData ProductionDefinition
{
<Production Name="Passthrough.Production" LogGeneralTraceEvents="false">
  <Description></Description>
  <ActorPoolSize>2</ActorPoolSize>
  <Item Name="PassthroughOperation" Category="" ClassName="EnsLib.SOAP.GenericOperation" PoolSize="1" Enabled="true" Foreground="false" Comment="" LogTraceEvents="false" Schedule="">
    <Setting Target="Adapter" Name="HTTPServer">www.webservicex.net</Setting>
    <Setting Target="Adapter" Name="URL">|</Setting>
  </Item>
  <Item Name="PassthroughService" Category="" ClassName="EnsLib.SOAP.GenericService" PoolSize="0" Enabled="true" Foreground="false" Comment="" LogTraceEvents="false" Schedule="">
    <Setting Target="Host" Name="TargetConfigName">PassthroughOperation</Setting>
    <Setting Target="Adapter" Name="EnableStandardRequests">1</Setting>
    <Setting Target="Adapter" Name="Port"></Setting>
  </Item>
</Production>
}

}</pre>



Step 5 of the guide says to open the url:

http://localhost:nnnnn/currencyconverter/ConvertCurrencySOAPPassthroughServ/CurrencyConvertor.asmx

have two web applications in a namespace:

 I have tried calling the following urls:

 

Yet, I get 404 error. Direct calls to a remote service  are successful. How do I call my passthrough service?

</body></html>