Hello James,

> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest
> 1.0//EN" "Manifest.dtd">
> <manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest";>
> <manifest:file-entry manifest:media-type="" manifest:full-path="addon.xcu"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="dist/BbCalcGradebookAddin.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="dist/BbGradebookPlugin.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="dist/OOAddin.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/axis.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/commons-discover-0.2.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/commons-logging.1.0.4.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/jaxrpc.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/lmsstatsclient.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/log4j-1.2.8.jar"/>
> <manifest:file-entry manifest:media-type=""
>                     manifest:full-path="lib/log4j.properties"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/saaj.jar"/>
> <manifest:file-entry
> manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=Java"
>                     manifest:full-path="lib/wsdl4j-1.5.1"/>
> </manifest:manifest>
> 
> 
> --
> "Love is mutual self-giving that ends in self-recovery." Fulton Sheen
> James Black    [EMAIL PROTECTED]

Your media types are wrong.  I assume you are not only deploying jar
type library files... :)
So specify media types for your configuration data files (xcu) =>
"application/vnd.sun.star.configuration-data", your jar UNO components
=> "application/vnd.sun.star.uno-component;type=Java" etc.
Note: don't specify dependent jar files (like your jaxrpc in the
manifest) as UNO typelibrary, because those are no typelibraries.  List
those dependent jars in your UNO component's manifest.mf ("Class-Path"
line, see manifest.mf spec of your JDK).
Finally, the UNO package deployment scheme is expained in the
developer's guide (see your SDK).

HTH,
-Daniel

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

Reply via email to