Did you see Raymond's response to your other thread [1] ?
The warning message usually means you don't have the RMI dependency in
your class path, and the solution would vary depending on how you are
running the application :

1) Using maven, add the following to your pom

  - For latest trunk depdency:

        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-binding-rmi-runtime</artifactId>
            <version>1.5-SNAPSHOT</version>
            <scope>runtime</scope>
        </dependency>

  - For 1.3.2 release

        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-binding-rmi</artifactId>
            <version>1.3.2</version>
            <scope>runtime</scope>
        </dependency>


2) Building using jars from a Tuscany release

   Add tuscany-sca-1.3.2/modules/tuscany-binding-rmi-1.3.2.jar and
tuscany-host-1.3.2.jar to your class path.
   Note that using this approach, you might need to identify any
transient dependency.



[1] http://markmail.org/message/qty7y2yyfwvezc2f

On Thu, Dec 11, 2008 at 11:46 PM, Tomáš Fecko <[email protected]> wrote:
> Hi,
>
> I have a problem concerning the RMI bindings between the composites in the
> domain...
> The domain manager writes an error:
>
> 11.12.2008 17:53:27 org.apache.tuscany.sca.
> contribution.processor.ExtensibleStAXArtifactProcessor
> WARNING: No StAX processor is configured to handle class
> org.apache.tuscany.sca.binding.rmi.RMIBinding
>
> I can't solve the problem...
> Does anybody seen this kind of problem before?
> Tell me what files you need to see from me for further analisys, I can send
> you complete eclipse project, if needed...
>
>
> thanx a lot
>
>
>
> --
> Tomas Fecko
>



-- 
Luciano Resende
Apache Tuscany, Apache PhotArk
http://people.apache.org/~lresende
http://lresende.blogspot.com/

Reply via email to