IAsset image = 
getEngine().getInfrastructure().getAssetFactory().createAbsoluteAsset(
                                "z\\0001.JPG",
                                getLocale(),
                                getLocation()
                );

This results in:

java.lang.IllegalArgumentException
Could not find a strategy instance for class java.lang.String.
Stack Trace:

      
org.apache.hivemind.lib.util.StrategyRegistryImpl.searchForAdaptor(StrategyRegistryImpl.java:176)
 
org.apache.hivemind.lib.util.StrategyRegistryImpl.getStrategy(StrategyRegistryImpl.java:74)
 $AssetFactory_11777dea53e._getStrategy($AssetFactory_11777dea53e.java) 
$AssetFactory_11777dea53e.createAbsoluteAsset($AssetFactory_11777dea53e.java) 
$AssetFactory_11777dea3df.createAbsoluteAsset($AssetFactory_11777dea3df.java)

-------- Original-Nachricht --------
> Datum: Tue, 8 Jan 2008 13:10:04 -0500
> Von: "Daniel Jue" <[EMAIL PROTECTED]>
> An: "Tapestry users" <users@tapestry.apache.org>
> Betreff: Re: PrivateAsset example please

> um, I meant "done this way"
> 
> On 1/8/08, Daniel Jue <[EMAIL PROTECTED]> wrote:
> > It could also be dont this way:
> > http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile
> >
> > On 1/8/08, Igor Drobiazko <[EMAIL PROTECTED]> wrote:
> > > Have a look at HiveMind API.
> > >
> >
> http://hivemind.apache.org/hivemind1/hivemind/apidocs/org/apache/hivemind/impl/LocationImpl.html
> > >
> >
> http://hivemind.apache.org/hivemind1/hivemind/apidocs/org/apache/hivemind/util/URLResource.html
> > >
> > > If I would be you, I would rethink the architecture. How do you want
> to
> > > access images when you go online?
> > >
> > > On Jan 8, 2008 5:37 PM, <[EMAIL PROTECTED]> wrote:
> > >
> > > > Do you have an example?
> > > >
> > > > What is the path? Relativ so the classpath?
> > > > How do I create a location object ?
> > > >
> > > > Do I need to set:
> > > >
> > > >
> > > >        <meta key="org.apache.tapestry.asset.dir"
> > > > value="file:///Z:/Media/"/>
> > > >
> > > > as well or would that expose the whole directoy to anyone?
> > > >
> > > >
> > > > I wish there was an example somewhere.....
> > > >
> > > >
> > > > -------- Original-Nachricht --------
> > > > > Datum: Tue, 8 Jan 2008 18:20:34 +0200
> > > > > Von: "Andreas Andreou" <[EMAIL PROTECTED]>
> > > > > An: "Tapestry users" <users@tapestry.apache.org>
> > > > > Betreff: Re: PrivateAsset example please
> > > >
> > > > > Hi, those Assets implementations are easier to create through the
> > > > > AssetFactory services...
> > > > >
> > > > > For instance, there's a ClasspathAssetFactory, so perhaps use its
> > > > > IAsset createAbsoluteAsset(String path, Locale locale, Location
> > > > location)
> > > > >
> > > > >
> > > >
> > >
> >
> http://tapestry.apache.org/tapestry4.1/apidocs/org/apache/tapestry/asset/ClasspathAssetFactory.html
> > > > >
> > > > >
> > > > > On Jan 8, 2008 5:46 PM,  <[EMAIL PROTECTED]> wrote:
> > > > > > PrivateAsset takes the following parameters:
> > > > > >
> > > > > > Resource resourceLocation, IEngineService assetService, Location
> > > > > location
> > > > > >
> > > > > > The images are in another directory on a different disk....the
> > > > directory
> > > > > is on the classpath...so the image should be in:
> > > > > >
> > > > > > someimages/picture.jpg
> > > > > >
> > > > > > How do I create a resourcelocation, how do I get the
> assetService
> > and
> > > > > how the location?
> > > > > >
> > > > > > Thanks!
> > > > > >
> > > > > >
> > > > > >
> > > > > > -------- Original-Nachricht --------
> > > > > > > Datum: Tue, 08 Jan 2008 16:24:41 +0100
> > > > > > > Von: [EMAIL PROTECTED]
> > > > > >
> > > > > > > An: "Tapestry users" <users@tapestry.apache.org>
> > > > > > > Betreff: Re: PrivateAsset example please
> > > > > >
> > > > > > > Thanks. There are no exmaples on these pages though.
> > > > > > >
> > > > > > > public IAsset getScreenshot(String name){
> > > > > > >
> > > > > > >                       return new
> > > > > ExternalAsset("thumbs/".concat(name).concat(".JPG"), null);
> > > > > > >
> > > > > > > I have tried this also:
> > > > > > >
> > > > > > > So if I used PrivateAsset what do the paramters look like?
> > > > > > >
> > > > > > > Just a short example would be cool....
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -------- Original-Nachricht --------
> > > > > > > > Datum: Tue, 8 Jan 2008 14:36:51 +0200
> > > > > > > > Von: "Andreas Andreou" <[EMAIL PROTECTED]>
> > > > > > > > An: "Tapestry users" <users@tapestry.apache.org>
> > > > > > > > Betreff: Re: PrivateAsset example please
> > > > > > >
> > > > > > > > it's auto-used when it's a classpath asset...
> > > > > > > > see
> > > > > > > >
> > > > >
> http://tapestry.apache.org/tapestry4.1/usersguide/spec.html#spec.asset
> > > > > > > > and
> > > > > > > >
> > > > >
> http://tapestry.apache.org/tapestry4.1/tapestry-annotations/index.html
> > > > > > > > (InjectAsset)
> > > > > > > >
> > > > > > > > On Jan 8, 2008 2:02 PM,  <[EMAIL PROTECTED]> wrote:
> > > > > > > > > I wonder who this works:
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://tapestry.apache.org/tapestry4.1/tapestry-framework/apidocs/org/apache/tapestry/asset/PrivateAsset.html
> > > > > > > > >
> > > > > > > > > How do I use the PrivateAsset component?
> > > > > > > > >
> > > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > > > > > > > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --
> > > > > > > > Andreas Andreou - [EMAIL PROTECTED] -
> http://blog.andyhot.gr
> > > > > > > > Tapestry / Tacos developer
> > > > > > > > Open Source / JEE Consulting
> > > > > > > >
> > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > > > > > > > For additional commands, e-mail:
> [EMAIL PROTECTED]
> > > > > > >
> > > > > > >
> > > >
> ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > > > For additional commands, e-mail:
> [EMAIL PROTECTED]
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Andreas Andreou - [EMAIL PROTECTED] - http://blog.andyhot.gr
> > > > > Tapestry / Tacos developer
> > > > > Open Source / JEE Consulting
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > > --
> > > Best regards,
> > >
> > > Igor Drobiazko
> > >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

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

Reply via email to