dev@glassfish.java.net

Re: Patch for bug 8611

From: Tim Quinn <Timothy.Quinn_at_Sun.COM>
Date: Wed, 15 Jul 2009 10:12:24 -0500

The change looks fine to me if in fact it allows this use case to work.

Thanks.

- Tim

Paul Sterk wrote:
>
> All,
>
> With Ken Sak's guidance, below is a patch for bug 8611 - Unable look
> up JAXR resource Adaptor.
>
> When Dianne J ran her test suite, she observed a SEVERE:
> rardeployment.class_not_found exception. We believe the reason for
> this is that the JAXR libraries need to be n the appclient container's
> classpath. The patch below adds the jaxr-ra.jar file to the classpath.
> Dianne is running her tests again today.
>
> Let me know if there is any reason I cannot commit this patch today.
>
> Thanks,
> Paul
>
> Index: v3/appclient/client/acc-standalone/fixup.xml
> ===================================================================
> --- fixup.xml (revision 29197)
> +++ fixup.xml (working copy)
> @@ -29,7 +29,8 @@
> <property name="cp-jdbcra.classpath.additions"
> value="../lib/install/applications/__cp_jdbc_ra/__cp_jdbc_ra.jar"/>
> <property name="xa-jdbcra.classpath.additions"
> value="../lib/install/applications/__xa_jdbc_ra/__xa_jdbc_ra.jar"/>
> <property name="derby.jar.classpath.additions"
> value="../../javadb/lib/derby.jar ../../javadb/lib/derbyclient.jar
> ../../java
> rbyrun.jar"/>
> - <property name="classpath.additions"
> value="${mq.classpath.additions} ${ds-jdbcra.classpath.additions}
> ${cp-jdbcra.classpath
> tions}"/>
> + <property name="jaxr-ra.classpath.additions"
> value="../lib/install/applications/jaxr-ra/jaxr-ra.jar"/>
> + <property name="classpath.additions"
> value="${mq.classpath.additions} ${ds-jdbcra.classpath.additions}
> ${cp-jdbcra.classpath
> tions} ${jaxr-ra.classpath.additions}"/>
> <target name="fixup.library">
> <unzip src="${output.dir}/${output.file}" dest="${stage.dir}">
> <patternset>
> @@ -64,4 +65,4 @@
> <zip destfile="${output.dir}/${output.file}"
> basedir="${stage.dir}" update="true" includes="META-INF/MANIFEST.MF"/>
> <echo>Manifest Class-Path updated</echo>
> </target>
> -</project>
> \ No newline at end of file
> +</project>