Re: Equivalent to modeshape Sequencers or equivalent in sling/oak?

2014-11-14 Thread Bertrand Delacretaz
Hi, On Thu, Nov 13, 2014 at 8:24 PM, Bruce Edge bruce.e...@nextissuemedia.com wrote: ...I read about the idea of the mode shape sequencers here: https://docs.jboss.org/author/display/MODE/Sequencing Is there any similar functionality in sling/oak for ingesting standardized data formats?...

Re: State of sling eclipse plugins for IDE deploy/undeploy.

2014-11-14 Thread Robert Munteanu
Hi Bruce, On Thu, Nov 13, 2014 at 8:57 AM, Bruce Edge bruce.e...@nextissuemedia.com wrote: Also, I found 2 plugins that seem to be similar, http://docs.adobe.com/content/docs/en/dev-tools/aem-eclipse.html http://sling.apache.org/documentation/development/ide-tooling.html Which to people use?

Re: ResourceProvider bubbling

2014-11-14 Thread Robert Munteanu
Hi Dominik, On Tue, Nov 11, 2014 at 5:38 PM, Dominik Süß dominik.su...@gmail.com wrote: Hi everyone, comming back to that case. As it turned out the resourceProvider was actually the only feasible solution since merging the valueMap was not sufficient but I found cases where I had to mount

RE: Equivalent to modeshape Sequencers or equivalent in sling/oak?

2014-11-14 Thread Jason Bailey
I did something similar with a side project that I work on, I created an import service that would be called based on the mimetype of the data that was being delivered. OOTB, there is a ContentImporter service, but it seems to be deliberately limited to a single implementation. IMHO I would

SlingServlet paths/resourceType/etc for POST to nonexistent URLs in JCR

2014-11-14 Thread Bruce Edge
I have a SlingServlet working with a fixed length path, using sling.servlet.paths=/var/cars. Under this I have a fixed format hierarchy consisting of make, model, year. I can populate by passing make, model, year and data as POST parameters. curl -u admin:admin -F make=fiat -F model=124 -F

RE: SlingServlet paths/resourceType/etc for POST to nonexistent URLs in JCR

2014-11-14 Thread Jason Bailey
Bruce, How you would do this depends in part on what that servlet does that's listening at /var/cars/ If you have all the data that is supposed to be at a particular path then removing that custom servlet and using the built in content creation process detailed at

Re: SlingServlet paths/resourceType/etc for POST to nonexistent URLs in JCR

2014-11-14 Thread Bruce Edge
I went with the servlet option initially because I need to process the posted data file before writing into the JCR. The data consists of a collection of zip files, all of which need to be unpacked prior to adding to the JCR. IOW the JCR should contain the fully expanded data using the same