Pete, Here's the code. all the xml files. I have included the code for the interface also, which does nothing much. But i was lookin to configure the interface as a service and the myClass as a block. Also where do I add the dependencies, in the .xinfo file or the assembly file. Thanks, Saurabh
peter royal <[EMAIL PROTECTED]> wrote: From: peter royal Subject: Re: Configuration error Date: Wed, 19 Nov 2003 09:53:36 -0500 To: "Avalon framework users" On Nov 19, 2003, at 6:56 AM, Saurabh Manohar wrote: > Can't find the com.myPackage.MyInterface.xinfo file and aborts. What > am I > missing here? Should the service definition be in some other place (not > .xinfo file) I tried to have anothr .xinfo file for the Interface, but > Still > the same error. > Can anyone help? Can you post the class, interface, and xinfo file? -pete --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
<?xml version="1.0"?> <assembly> <block class="com.mindflow.runmode.myInterface" name="myInterface" /> </assembly>
<?xml version="1.0"?>
<environment>
<logs>
<category name="" target="default" priority="DEBUG" />
<log-target name="default" location="/logs/avalon-demo.log" />
</logs>
<policy>
<grant code-base="file:${app.home}${/}SAR-INF${/}lib${/}*">
<permission class="java.security.AllPermission" />
</grant>
</policy>
</environment>
<?xml version="1.0"?> <config> <thread-manager> <thread-group> <name>myClass</name> <priority>5</priority> <is-daemon>false</is-daemon> <max-threads>40</max-threads> <min-threads>20</min-threads> <min-spare-threads>20</min-spare-threads> </thread-group> </thread-manager> <!-- this section is specific to the the MyFxConversion Block --> <myClass> <port>5656</port> </myClass> </config>
myInterface.java
Description: java/
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
