[Users] FTP component - Merged WSDL - Null pointer

tbarbey thomas.barbey at synergieassocies.com
Wed Mar 16 10:41:20 CET 2011


As we already discussed in this post: http://forum.petalslink.com/topic298.html, we need, to use an FTP service in a BPEL process, to merge ftp.wsdl and ftpinterface.wsdl files.

My merged file looks like this:


Code:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions
	name="ftp"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns:tns="http://petals.ow2.org/components/ftp/version-3"
	xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" 
	targetNamespace="http://petals.ow2.org/components/ftp/version-3">

	<wsdl:types>
		<xsd:schema 
			xmlns:xsd="http://www.w3.org/2001/XMLSchema"
			elementFormDefault="qualified" 
			targetNamespace="http://petals.ow2.org/components/ftp/version-3">
			
			<xsd:element name="get" type="tns:getType"></xsd:element>
			<xsd:complexType name="getType">
				<xsd:sequence>
					<xsd:element name="filename" type="xsd:string"
						maxOccurs="1" minOccurs="1"></xsd:element>
					<xsd:element name="connection" type="tns:ConnectionType"
						maxOccurs="1" minOccurs="0">

					</xsd:element>
				</xsd:sequence>
			</xsd:complexType>

			<xsd:element name="ioFault" type="tns:ioFaultType"></xsd:element>
			<xsd:complexType name="ioFaultType">
				<xsd:sequence>
					<xsd:element name="message" type="xsd:string"></xsd:element>
				</xsd:sequence>

			</xsd:complexType>

			<xsd:element name="mget" type="tns:mgetType"></xsd:element>
			<xsd:complexType name="mgetType">
				<xsd:sequence>
					<xsd:element name="filename" type="xsd:string"
						maxOccurs="unbounded" minOccurs="1"></xsd:element>
					<xsd:element name="connection" type="tns:ConnectionType"
						maxOccurs="1" minOccurs="0"></xsd:element>
				</xsd:sequence>
			</xsd:complexType>

			<xsd:element name="mgetResponse" type="tns:mgetResponse">
			</xsd:element>
			<xsd:complexType name="mgetResponse">
				<xsd:sequence>
					<xsd:element name="filename" type="xsd:string"
						maxOccurs="unbounded" minOccurs="0"></xsd:element>
				</xsd:sequence>
			</xsd:complexType>

			<xsd:element name="getFiles_fault">

				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="getFiles_fault" type="xsd:string">
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:complexType name="anyType"></xsd:complexType>
			<xsd:element name="files" type="tns:filesType"></xsd:element>

			<xsd:complexType name="filesType">
				<xsd:sequence>
					<xsd:element name="file" type="xsd:base64Binary"
						maxOccurs="unbounded" minOccurs="0"></xsd:element>
				</xsd:sequence>
			</xsd:complexType>
			<xsd:element name="put">
				<xsd:complexType>
					<xsd:sequence>

						<xsd:element name="body" type="xsd:string" maxOccurs="1"
							minOccurs="1">
						</xsd:element>
						<xsd:element name="filename" type="xsd:string"
							maxOccurs="1" minOccurs="1">
						</xsd:element>
						<xsd:element name="connection" type="tns:ConnectionType"
							maxOccurs="1" minOccurs="0">
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>

			<xsd:element name="mput">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="connection" type="tns:ConnectionType"
							maxOccurs="1" minOccurs="0"></xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>

			<xsd:element name="dir">

				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="connection" type="tns:ConnectionType"
							maxOccurs="1" minOccurs="0">
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="dirResponse">
				<xsd:complexType>

					<xsd:sequence>
						<xsd:element name="filename" type="xsd:string"
							maxOccurs="unbounded" minOccurs="0"></xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>

			<xsd:complexType name="ConnectionType">
				<xsd:sequence>
					<xsd:element name="server" type="xsd:string" />
					<xsd:element name="port" type="xsd:string" />
					<xsd:element name="user" type="xsd:string" />
					<xsd:element name="password" type="xsd:string" />
					<xsd:element name="folder" type="xsd:string" />
					<xsd:element name="transfer-type" type="tns:transfer-typeType" />
					<xsd:element name="connection-mode" type="tns:connection-modeType" />
				</xsd:sequence>
			</xsd:complexType>

			<xsd:simpleType name="transfer-typeType">
				<xsd:restriction base="xsd:string">
					<xsd:enumeration value="auto" />
					<xsd:enumeration value="ascii" />
					<xsd:enumeration value="binary" />

				</xsd:restriction>
			</xsd:simpleType>
			<xsd:simpleType name="connection-modeType">
				<xsd:restriction base="xsd:string">
					<xsd:enumeration value="active" />
					<xsd:enumeration value="passive" />
				</xsd:restriction>
			</xsd:simpleType>
		</xsd:schema>

	</wsdl:types>
	<wsdl:message name="getRequest">
		<wsdl:part name="getRequest" element="tns:get" />
	</wsdl:message>
	<wsdl:message name="getResponse">

	</wsdl:message>
	<wsdl:message name="mgetRequest">
		<wsdl:part name="mgetRequest" element="tns:mget"></wsdl:part>

	</wsdl:message>
	<wsdl:message name="mgetResponse">
		<wsdl:part name="mgetResponse" element="tns:mgetResponse"></wsdl:part>
		<wsdl:part name="files" element="tns:files" />

	</wsdl:message>
	<wsdl:message name="getFile_faultMsg">
		<wsdl:part name="ioFault" element="tns:ioFault"></wsdl:part>
	</wsdl:message>

	<wsdl:message name="getFiles_faultMsg">
		<wsdl:part name="ioFault" element="tns:ioFault"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="putRequest">
		<wsdl:part name="putRequest" element="tns:put"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="mputRequest">
		<wsdl:part name="mputRequest" element="tns:mput"></wsdl:part>
	</wsdl:message>

	<wsdl:message name="dirRequest">
		<wsdl:part name="dirRequest" element="tns:dir"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="dirResponse">
		<wsdl:part name="dirResponse" element="tns:dirResponse"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="dir_faultMsg">
		<wsdl:part name="ioFault" element="tns:ioFault"></wsdl:part>

	</wsdl:message>
	<wsdl:portType name="Ftp">
		<wsdl:operation name="get">
			<wsdl:input message="tns:getRequest" />
			<wsdl:output message="tns:getResponse" />
			<wsdl:fault name="fault" message="tns:getFile_faultMsg"></wsdl:fault>
		</wsdl:operation>
		<wsdl:operation name="mget">
			<wsdl:input message="tns:mgetRequest"></wsdl:input>

			<wsdl:output message="tns:mgetResponse"></wsdl:output>
			<wsdl:fault name="fault" message="tns:getFiles_faultMsg"></wsdl:fault>
		</wsdl:operation>
		<wsdl:operation name="put">
			<wsdl:input message="tns:putRequest"></wsdl:input>
		</wsdl:operation>
		<wsdl:operation name="mput">
			<wsdl:input message="tns:mputRequest"></wsdl:input>
		</wsdl:operation>

		<wsdl:operation name="dir">
			<wsdl:input message="tns:dirRequest"></wsdl:input>
			<wsdl:output message="tns:dirResponse"></wsdl:output>
			<wsdl:fault name="fault" message="tns:dir_faultMsg"></wsdl:fault>
		</wsdl:operation>
	</wsdl:portType>
	
	<wsdl:binding name="FtpBinding" type="tns:Ftp"> 
      <soap:binding style="document" 
         transport="http://schemas.xmlsoap.org/soap/http" /> 
          
      <wsdl:operation name="get"> 
         <wsdl:input> 
            <soap:body use="literal" /> 
         </wsdl:input> 
         <wsdl:output> 
            <soap:body use="literal" /> 
         </wsdl:output> 
         <wsdl:fault name="fault"> 
            <soap:fault use="literal" name="fault" /> 
         </wsdl:fault> 
      </wsdl:operation> 
       
      <wsdl:operation name="mget"> 
         <wsdl:input> 
            <soap:body use="literal" /> 
         </wsdl:input> 
         <wsdl:output> 
            <soap:body use="literal" /> 
         </wsdl:output> 
         <wsdl:fault name="fault"> 
            <soap:fault use="literal" name="fault" /> 
         </wsdl:fault> 
      </wsdl:operation> 
       
      <wsdl:operation name="put"> 
         <wsdl:input> 
            <soap:body use="literal" /> 
         </wsdl:input> 
         <wsdl:output> 
            <soap:body use="literal" /> 
         </wsdl:output> 
         <wsdl:fault name="fault"> 
            <soap:fault use="literal" name="fault" /> 
         </wsdl:fault> 
      </wsdl:operation> 
       
      <wsdl:operation name="mput"> 
         <wsdl:input> 
            <soap:body use="literal" /> 
         </wsdl:input> 
         <wsdl:output> 
            <soap:body use="literal" /> 
         </wsdl:output> 
         <wsdl:fault name="fault"> 
            <soap:fault use="literal" name="fault" /> 
         </wsdl:fault> 
      </wsdl:operation> 
       
      <wsdl:operation name="dir"> 
         <wsdl:input> 
            <soap:body use="literal" /> 
         </wsdl:input> 
         <wsdl:output> 
            <soap:body use="literal" /> 
         </wsdl:output> 
         <wsdl:fault name="fault"> 
            <soap:fault use="literal" name="fault" /> 
         </wsdl:fault> 
      </wsdl:operation> 
   	</wsdl:binding> 
	
	<wsdl:service name="FTPServiceRConverter-2">
		<wsdl:port name="FTPServiceRConverter-2Endpoint" binding="tns:FtpBinding">
			<soap:address location="FTPServiceRConverter-2Endpoint"/>
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>




And my jbi.xml file looks likt that:


Code:
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
	JBI descriptor for the Petals' "petals-bc-ftp" component (FTP).
	Originally created for the version 3.1 of the component.
 -->
<jbi:jbi version="1.0" 
	xmlns:ftp="http://petals.ow2.org/components/ftp/version-3"
	xmlns:interfaceNs="http://petals.ow2.org/components/ftp/version-3"
	xmlns:jbi="http://java.sun.com/xml/ns/jbi"
	xmlns:petalsCDK="http://petals.ow2.org/components/extensions/version-5"
	xmlns:serviceNs="http://petals.ow2.org/components/ftp/version-3"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	
	<!-- Import a Service into Petals or Expose a Petals Service => use a BC. -->
	<jbi:services binding-component="true">
	
		<!-- Import a Service into Petals => provides a Service. -->
		<jbi:provides 		
			interface-name="interfaceNs:Ftp"
			service-name="serviceNs:FTPServiceRConverter-2"
			endpoint-name="FTPServiceRConverter-2Endpoint">
	
			<!-- CDK specific elements -->
			<petalsCDK:timeout>30000</petalsCDK:timeout>
			<petalsCDK:validate-wsdl>true</petalsCDK:validate-wsdl>
			<petalsCDK:forward-security-subject>false</petalsCDK:forward-security-subject>
			<petalsCDK:forward-message-properties>false</petalsCDK:forward-message-properties>
			<petalsCDK:forward-attachments>false</petalsCDK:forward-attachments>
			<petalsCDK:wsdl>ftp.wsdl</petalsCDK:wsdl>
		
			<!-- Component specific elements -->	
			<ftp:server>server1</ftp:server>
			<ftp:port>21</ftp:port>
			<ftp:user>foo</ftp:user>
			<ftp:password>bar</ftp:password>
			<ftp:transfer-type>auto</ftp:transfer-type>
			<ftp:connection-mode>active</ftp:connection-mode>			
		</jbi:provides>
	</jbi:services>
</jbi:jbi>



I created a SA FTP provide and a SA SOAP consume but when I call the dir operation for instance, I get the following error:


Code:
INFO 2010-03-10 18:17:13,014 [Petals.Container.Components.petals-sample-client] 
    SampleClient try to send 
FINEST 2010-03-10 18:17:13,017 [Petals.Container.Installer.petals-sample-client] 
    -CALL-DeliveryChannelImpl.createExchangeFactory() 
FINEST 2010-03-10 18:17:13,019 [Petals.Container.Installer.petals-sample-client] 
    -CALL-MessageExchangeFactoryImpl.createInOutExchange() 
FINEST 2010-03-10 18:17:13,021 [Petals.Container.Installer.petals-sample-client] 
    -CALL-MessageExchangeFactoryImpl.createExchange() 
FINEST 2010-03-10 18:17:13,023 [Petals.Container.Installer.petals-sample-client] 
    -CALL-MessageExchangeFactoryImpl.setDefaultMessageExchangeProperties() 
FINEST 2010-03-10 18:17:13,026 [Petals.Container.Installer.petals-sample-client] 
    -START-ComponentContextImpl.getEndpoint() 
FINEST 2010-03-10 18:17:13,028 [Petals.JBI-Messaging.EndpointRegistryImpl] 
    BaseEndpointRegistry.getEndpoint() Entering method : getEndpoint with params service, name = {http://petals.ow2.org/components/ftp/version-3}FTPServiceRBSConverter-2, FTPServiceRBSConverter-2Endpoint 
FINEST 2010-03-10 18:17:13,034 [Petals.Container.Installer.petals-sample-client] 
    -END-ComponentContextImpl.getEndpoint() 
FINEST 2010-03-10 18:17:13,036 [Petals.Container.Installer.petals-sample-client] 
    -CALL-DeliveryChannelImpl.sendSync() Exchange Id:petals:uid:EA85FB0B6A31AA19FC20353995168755321 - Timeout:2000 
FINEST 2010-03-10 18:17:13,040 [Petals.Container.Installer.petals-sample-client] 
    -START-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,042 [Petals.Container.Installer.petals-sample-client] 
    -START-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,044 [Petals.Container.Installer.petals-sample-client] 
    -END-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,046 [Petals.Container.Installer.petals-sample-client] 
    -END-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,047 [Petals.Container.Components.petals-sample-client] 
    Message in with Id 'petals:uid:EA85FB0B6A31AA19FC20353995168755321' to send 
FINEST 2010-03-10 18:17:13,048 [Petals.Container.Components.petals-sample-client] 
    Message property 'javax.jbi.messaging.protocol.headers' : {} 
FINEST 2010-03-10 18:17:13,049 [Petals.Container.Components.petals-sample-client] 
    Message Content : <?xml version="1.0" encoding="windows-1252"?><ver:dir xmlns:ver="http://petals.ow2.org/components/ftp/version-3.0"> 
</ver:dir> 
FINEST 2010-03-10 18:17:13,051 [Petals.Container.Installer.petals-sample-client] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,052 [Petals.JBI-Messaging.RouterServiceImpl] 
    -CALL-RouterServiceImpl.sendSync() 
FINEST 2010-03-10 18:17:13,053 [Petals.JBI-Messaging.RouterServiceImpl] 
    -CALL-RouterServiceImpl.removeBypassMessageExchange() 
FINEST 2010-03-10 18:17:13,054 [Petals.JBI-Messaging.TransportResolverModule] 
    -CALL-TransportResolverModule.electEndpoints() 
FINEST 2010-03-10 18:17:13,055 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.sendToProvider() 
FINEST 2010-03-10 18:17:13,056 [Petals.JBI-Messaging.RouterServiceImpl] 
    RouterServiceImpl.sendToProvider() Send attempt to endpoint 'FTPServiceRBSConverter-2Endpoint' 
FINEST 2010-03-10 18:17:13,058 [Petals.Transporter.LocalTransporter] 
    -START-LocalTransporterImpl.sendSync() 
FINEST 2010-03-10 18:17:13,059 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.onExchange() 
FINEST 2010-03-10 18:17:13,060 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.receive() Exchange Id : petals:uid:EA85FB0B6A31AA19FC20353995168755321 - Component : petals-bc-ftp 
FINEST 2010-03-10 18:17:13,060 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.onExchange() 
FINEST 2010-03-10 18:17:13,061 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-MessageExchangeFactoryImpl.createExchangeDecorator() http://www.w3.org/2004/08/wsdl/in-out 
FINEST 2010-03-10 18:17:13,063 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,064 [Petals.Container.Installer.petals-bc-ftp] 
    -END-DeliveryChannelImpl.poll() 
FINE 2010-03-10 18:17:13,065 [Petals.Container.Components.petals-bc-ftp] 
    Accepting a JBI message with Id : petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,066 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-DeliveryChannelImpl.accept() 
FINEST 2010-03-10 18:17:13,066 [Petals.Container.Components.petals-bc-ftp] 
    Process an exchange as PROVIDER with id : petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,068 [Petals.Container.Installer.petals-bc-ftp] 
    -START-DeliveryChannelImpl.poll() 
FINE 2010-03-10 18:17:13,068 [Petals.Container.Components.petals-bc-ftp] 
    Intercepting message processing on ACCEPT 
FINEST 2010-03-10 18:17:13,072 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.receive() Component : petals-bc-ftp - Timeout : -1 
FINEST 2010-03-10 18:17:13,072 [Petals.Container.Components.petals-bc-ftp] 
    create ftp connection information 
FINEST 2010-03-10 18:17:13,073 [Petals.Container.Components.petals-bc-ftp] 
    create an ftpConnectionInfo from the service unit properties 
INFO 2010-03-10 18:17:13,075 [Petals.Container.Components.petals-bc-ftp] 
    JBI exchange received - Process DIR operation 
FINEST 2010-03-10 18:17:13,076 [Petals.Container.Components.petals-bc-ftp.FTPConnection] 
    start listing a directory from the FTP server 
FINEST 2010-03-10 18:17:13,077 [Petals.Container.Components.petals-bc-ftp.FTPConnection] 
    create FTP connection to synergie00 
FINEST 2010-03-10 18:17:13,397 [Petals.Container.Components.petals-bc-ftp] 
    DIR operation ended 
FINE 2010-03-10 18:17:13,400 [Petals.Container.Components.petals-bc-ftp] 
    Intercepting message processing on ACCEPT_RESPONSE 
FINEST 2010-03-10 18:17:13,402 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-DeliveryChannelImpl.send() Exchange Id:petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,405 [Petals.Container.Installer.petals-bc-ftp] 
    -START-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,407 [Petals.Container.Installer.petals-bc-ftp] 
    -START-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,409 [Petals.Container.Installer.petals-bc-ftp] 
    -END-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,411 [Petals.Container.Installer.petals-bc-ftp] 
    -END-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,414 [Petals.Container.Components.petals-bc-ftp] 
[b]    Message Fault with Id 'petals:uid:EA85FB0B6A31AA19FC20353995168755321' to send 
FINEST 2010-03-10 18:17:13,417 [Petals.Container.Components.petals-bc-ftp] 
    Message Content : <?xml version="1.0" encoding="windows-1252"?><tns:ioFault xmlns:tns="http://petals.ow2.org/components/ftp/version-3"><tns:message>Can not list files on FTP server [synergie00]. Cause : null</tns:message></tns:ioFault> [/b]FINEST 2010-03-10 18:17:13,420 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,422 [Petals.JBI-Messaging.RouterServiceImpl] 
    -CALL-RouterServiceImpl.send() 
FINEST 2010-03-10 18:17:13,424 [Petals.JBI-Messaging.TransportResolverModule] 
    -CALL-TransportResolverModule.electEndpoints() 
FINEST 2010-03-10 18:17:13,425 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.sendToConsumer() 
FINEST 2010-03-10 18:17:13,427 [Petals.Transporter.LocalTransporter] 
    -START-LocalTransporterImpl.send() 
FINEST 2010-03-10 18:17:13,429 [Petals.Transporter.LocalTransporter] 
    -END-LocalTransporterImpl.send() 
FINEST 2010-03-10 18:17:13,430 [Petals.Transporter.LocalTransporter] 
    -END-LocalTransporterImpl.sendSync() 
FINEST 2010-03-10 18:17:13,431 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.sendToConsumer() 
FINEST 2010-03-10 18:17:13,433 [Petals.Container.Installer.petals-bc-ftp] 
    -END-DeliveryChannelImpl.sendExchange() 
FINEST 2010-03-10 18:17:13,436 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.sendToProvider() 
FINEST 2010-03-10 18:17:13,437 [Petals.Container.Installer.petals-sample-client] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,437 [Petals.Container.Installer.petals-sample-client] 
    -END-DeliveryChannelImpl.sendExchange() 
FINEST 2010-03-10 18:17:13,438 [Petals.Container.Installer.petals-sample-client] 
    -END-DeliveryChannelImpl.sendSync() 
INFO 2010-03-10 18:17:13,439 [Petals.Container.Components.petals-sample-client] 
    Processing received message petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,442 [Petals.Container.Installer.petals-sample-client] 
    -CALL-DeliveryChannelImpl.send() Exchange Id:petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,444 [Petals.Container.Installer.petals-sample-client] 
    -START-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,446 [Petals.Container.Installer.petals-sample-client] 
    -START-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,446 [Petals.Container.Installer.petals-sample-client] 
    -END-ComponentContextImpl.getComponentLogger() 
FINEST 2010-03-10 18:17:13,447 [Petals.Container.Installer.petals-sample-client] 
    -END-ComponentContextImpl.getLogger() 
FINEST 2010-03-10 18:17:13,448 [Petals.Container.Components.petals-sample-client] 
    Message acknowledgement DONE with Id 'petals:uid:EA85FB0B6A31AA19FC20353995168755321' to send 
FINEST 2010-03-10 18:17:13,449 [Petals.Container.Installer.petals-sample-client] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,450 [Petals.JBI-Messaging.RouterServiceImpl] 
    -CALL-RouterServiceImpl.send() 
FINEST 2010-03-10 18:17:13,451 [Petals.JBI-Messaging.TransportResolverModule] 
    -CALL-TransportResolverModule.electEndpoints() 
FINEST 2010-03-10 18:17:13,452 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.sendToProvider() 
FINEST 2010-03-10 18:17:13,453 [Petals.JBI-Messaging.RouterServiceImpl] 
    RouterServiceImpl.sendToProvider() Send attempt to endpoint 'FTPServiceRBSConverter-2Endpoint' 
FINEST 2010-03-10 18:17:13,454 [Petals.Transporter.LocalTransporter] 
    -START-LocalTransporterImpl.send() 
FINEST 2010-03-10 18:17:13,455 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.onExchange() 
FINEST 2010-03-10 18:17:13,456 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.receive() Exchange Id : petals:uid:EA85FB0B6A31AA19FC20353995168755321 - Component : petals-bc-ftp 
FINEST 2010-03-10 18:17:13,456 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.onExchange() 
FINEST 2010-03-10 18:17:13,457 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-MessageExchangeFactoryImpl.createExchangeDecorator() http://www.w3.org/2004/08/wsdl/in-out 
FINEST 2010-03-10 18:17:13,458 [Petals.Transporter.LocalTransporter] 
    -END-LocalTransporterImpl.send() 
FINEST 2010-03-10 18:17:13,459 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-ComponentContextImpl.getTransactionManager() 
FINEST 2010-03-10 18:17:13,459 [Petals.JBI-Messaging.RouterServiceImpl] 
    -END-RouterServiceImpl.sendToProvider() 
FINEST 2010-03-10 18:17:13,460 [Petals.Container.Installer.petals-bc-ftp] 
    -END-DeliveryChannelImpl.poll() 
FINEST 2010-03-10 18:17:13,461 [Petals.Container.Installer.petals-sample-client] 
    -END-DeliveryChannelImpl.sendExchange() 
FINE 2010-03-10 18:17:13,462 [Petals.Container.Components.petals-bc-ftp] 
    Accepting a JBI message with Id : petals:uid:EA85FB0B6A31AA19FC20353995168755321 
FINEST 2010-03-10 18:17:13,463 [Petals.Container.Installer.petals-bc-ftp] 
    -CALL-DeliveryChannelImpl.accept() 
FINEST 2010-03-10 18:17:13,464 [Petals.Container.Installer.petals-bc-ftp] 
    -START-DeliveryChannelImpl.poll() 
FINEST 2010-03-10 18:17:13,465 [Petals.JBI-Messaging.RouterServiceImpl] 
    -START-RouterServiceImpl.receive() Component : petals-bc-ftp - Timeout : -1



I've been working on it with vzurczak today and we couldn't find the reason why it does not work....

Any idea? Please! :)




-------------------- m2f --------------------

Subscribe/Unsubscribe emails notifications.

Response to this email will be posted on the Petals forum.
Please delete the existing text before responding :)

Read the topic online:
http://forum.petalslink.com/viewtopic.php?p=30589#30589

-------------------- m2f --------------------


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://forum-list.petalslink.org/pipermail/users/attachments/20110316/ed30ce56/attachment.htm>


More information about the Users mailing list