I suggest you pull Ant out of the equation and get the client to run using
Java on the command line. First run the jar_attilla_client target that
run_attilla_client depends on. If you can do this successfully, then go back
to the Ant script and see if there are any noticeable differences between
the two methods.

-Andrew

On 8/1/06, Angus Rose <[EMAIL PROTECTED]> wrote:


Hi Andrew,
             thanks for the reply. I've tried putting the oc4jclient.jaron
the classpath (see below) but still to no avail. I'm running the script
independently of oc4j i.e. running it from Ant on my hard drive.

Below is are the relevant bits of the script.

Thanks again for your help.

Angus

<path id="run.classpath">
   <pathelement
location="${attilla.home}/${attilla.lib.dir}/oc4jclient.jar"/>
</path>
<target name="run_attilla_client" depends="jar_attilla_client">
       <java jar="${attilla.home}/${attilla.client.dir}/AttillaClient.jar"
               fork="true"
               failonerror="true"
               maxmemory="128m"
               classpathref="run.classpath">
            <arg value="200000"/>
            <arg value="AttillaTimer"/>
      </java>
</target>
Andrew Goktepe wrote:
>
> Are you using the ANT_HOME that is bundled with OC4J, or a different
one?
>
> Make sure you have oc4jclient.jar in your classpath.
>
> Can you post the section of your script where this call is being made?
>
> -Andrew
>
>
> On 7/31/06, Angus Rose <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi All,
>>      I am creating a script that will build and deploy an EJB to an
>> instance of OC4J. SO far, so good I can deploy the EJB and all is
>> wonderful.
>> I have a class[ath problem with running a client that calls this EJB,
Ant
>> basically throws a classnotfound exception when it trys to load an
>> instance
>> of oracle.j2ee.rmi.RMIInitialContextFactory as the initail context
>> factory.
>> I have done everything obvious to solve this problem but to no avail.
Has
>> anybody had any similar experiences and if so, how did they resolve
them?
>>
>> Thanks
>>
>> Angus
>> --
>> View this message in context:
>>
http://www.nabble.com/Java-task-classpath-problem-tf2026624.html#a5573041
>> Sent from the Ant - Users forum at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
>
--
View this message in context:
http://www.nabble.com/Java-task-classpath-problem-tf2026624.html#a5590604
Sent from the Ant - Users forum at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to