Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

justin_at_adobe
justin_at_adobe
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
259

Likes Received

Likes Received
88

Posts

Posts
529

Discussions

Discussions
21

Questions

Questions
508

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by justin_at_adobe
Customize the badges you want to showcase on your profile
Re: How do I ask a good question on a forum? - Adobe Experience Manager 15-10-2015
Well said Ove.

Views

4.6K

Like

1

Replies

0
Re: Can't deploy servlet - keep getting constraint violation for any path - Adobe Experience Manager 15-10-2015
First off, you should try to avoid registering servlets by path. This means that you aren't taking advantage of one of the key features of Apache Sling -- the ability to use resources to model your path space.That said, it looks to me like the problem is in how your AJAX code is accessing the servlet. It appears to be making a POST request, yet your servlet is only registered to accept GET requests.The subject line mentions deploying - are you sure that the servlet has been deployed? You can che...

Views

213

Likes

0

Replies

0
Re: Is there a limitation to the size of JCR Property value? - Adobe Experience Manager 15-10-2015
There's no defined limitation in the spec. From a practical standpoint, available memory is the most significant limitation.

Views

5.1K

Likes

0

Replies

0
Re: How to install VLT on a OSX mac machine - Adobe Experience Manager 15-10-2015
Hi,As I wrote you privately on the old forums, it looks like you have the wrong delimiter on the third line. You should only be using colons.Also, if you have Homebrew installed, you should look at https://github.com/Adobe-Marketing-Cloud/homebrew-brews which allows you to install the latest version of vlt very easily.Regards,Justin

Views

1.2K

Likes

0

Replies

0
Re: Can "jsp:include" be used in CQ 5? - Adobe Experience Manager 15-10-2015
LinearGradient wrote... So other than the cq:include/request attributes combo is there any other way to include a JSP page and pass parameters to it? See, that's the thing. In CQ/AEM, JSPs aren't "pages" (yes I know that the P in JSP is "Pages"), they are really scripts which need a resource to execute against.What you can do, although I don't know if this meets your needs, is to create a resource (could be a synthetic resource provided by a ResourceProvider or a real JCR Node) which has the app...

Views

476

Likes

0

Replies

0
Re: Can "jsp:include" be used in CQ 5? - Adobe Experience Manager 15-10-2015
Yes, you can use jsp:include in CQ5/AEM, but it doesn't do what you think it does. jsp:include, per specification, goes all the way back to the RequestDispatcher. So you can include smoething like /content/geometrixx/en.html (and even add parameters), but you can't directly include a JSP.

Views

465

Likes

0

Replies

0
Re: How to query pages based on Zip Code data? - Adobe Experience Manager 15-10-2015
As I said, if you want to do geospatial searches, you should be using a query engine which supports geospatial indexes. If you want to look up coverage areas by pre-defined zip codes, you can do that easily with JCR search, but for a variable distance search, use Solr or MongoDB (or something else which has native geospatial capabilities).

Views

520

Likes

0

Replies

0
Re: How to query pages based on Zip Code data? - Adobe Experience Manager 15-10-2015
Each coverage area could be a node (although you would probably want to structure this is some way to avoid a flat node list) with a multivalued property containing the list of zipcodes. At that point, the query becomes very simple.

Views

464

Likes

0

Replies

0
Re: How to query pages based on Zip Code data? - Adobe Experience Manager 15-10-2015
Hi,The Jackrabbit/CRX2 query engine is not well suited to these kinds of queries. The Oak query engine will be slightly better in the future. But really if you need geospatial search, you should use an engine designed for this purpose, for example Solr or MongoDB have fine geospatial features.Regards,Justin

Views

467

Likes

0

Replies

0
Re: Monitoring AEM author (cq-quickstart-5.6.1-standalone.jar) with JavaMelody - Adobe Experience Manager 15-10-2015
Hi,You might want to take a look at this old-ish issue: https://code.google.com/p/javamelody/issues/detail?id=168Essentially, you'll need javamelody and its dependencies to be OSGi bundles and also use the HttpService to register the filter and listeners used by JavaMelody (see http://felix.apache.org/documentation/subprojects/apache-felix-http-service.html for information on how to do that).Depending on how OSGi-friendly (which tend to be mostly around the use/abuse of classloaders and other ra...

Views

206

Likes

0

Replies

0
Likes given to