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

Pawan_Gupta_
Pawan_Gupta_
Offline

Badges

Badges
24

Accepted Solutions

Accepted Solutions
88

Likes Received

Likes Received
154

Posts

Posts
209

Discussions

Discussions
24

Questions

Questions
185

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by Pawan_Gupta_
Customize the badges you want to showcase on your profile
Re: Mainataining sessions in AEM - Adobe Experience Manager 15-10-2015
AEM does maintain JCRSession which i not implicit but can be accessed from ResourceResolverFactory object as mentioned above (slingRequest.getResourceResolver().adaptTo(Session.class)) and you can do all the operation that you expect from HttpSession. But if you are really interested in HttpSession then you can get it from slingRequest object as it has extended the httpserveletrequest (slingRequest.getSession(true/false)). Let me know if you need more detail

Views

127

Likes

0

Replies

0
Re: How to get the login-token created by cq into the component jsp - Adobe Experience Manager 15-10-2015
Hi Sagar,Given scenario you have to write your own logout servlet which will redirect you to corresponding login page. you can manage the redirect setting in your site configuration property. Thanks,Pawan

Views

452

Likes

0

Replies

0
Re: Root page of a Blueprint doesn´t appear on Blueprint Control Center - Adobe Experience Manager 15-10-2015
Hi,I think the suggestion would be map it to the top level of page which you don't want to rollout that means the top level of page and not the home page of site (as you want to rollout your home page to)So from above example if you see the configuration has been done at top level of page which does not require rollout and if you see the detail of that page its actually redirecting to the default 'en' page (i.e. /content/geometrixx-outdoors/en)So work around is to change your BP configuration to...

Views

108

Likes

0

Replies

0
Re: Change page's template - Adobe Experience Manager 15-10-2015
Hi,First of all you can not change the page template from CQ console and you have only option to either modify using crxde/explorer or write custom code. The decision you can make based on number of pages you are expecting to modify for specific template.1. If number of pages are less then it make sense to modify manually using crxde/explorer and searching those pages using xpath/sql querylike SELECT * FROM [nt:base] AS s WHERE ISDESCENDANTNODE([/content/yoursitepathforsearch]) and NAME(s) = 'jc...

Views

1.9K

Likes

3

Replies

0
Re: Persisting Adobe CQ data in a relational database - Adobe Experience Manager 15-10-2015
Hi Nitin,Ok. Are you building and deploying your bundle to Maven some third party build tool or using CQ build using .bnd file? because i saw some issues in import & export package in manifest file.1. The url which you asked me to refer is referring to simple java database related class file but to work this class ofcourse you require import of different database connection classes and it this case it is MYSQL. but i observed the com.mysql.* (all classes) are part of export not import as you are...

Views

345

Likes

0

Replies

0
Re: Persisting Adobe CQ data in a relational database - Adobe Experience Manager 15-10-2015
Hi,Can you plz confirm the service that you want to access using API has been deployed as sling service or just a simple java class? because if you have deployed it as a sling service then the correct way to access it iscom.adobe.cq.CustomerService custService= sling.getService(CustomerService.class);sling is implicit object in scriptlet defined through and you can find reference in various documentation.if it doesn't work then plz share you service code.Thanks,Pawan

Views

345

Likes

0

Replies

0
Re: Dialog HTML5Smartimage issue. - Adobe Experience Manager 15-10-2015
Hi,I can share some information related to HTML5smartimage if it helps you. While configuring the image (html5smartimage) widget we have to keep couple of things in mind1. The cq:droptarget for image where you specify which resourcetype it can refer for fetch and defines a list of drop targets that can accept a drop from an asset of the content finder.for example: /libs/foundation/components/image/cq:editConfig/cq:dropTargets2. configuration on image widget itself a. if you the property to curre...

Views

81

Likes

0

Replies

0
Re: Sticky Connections and JSESSIONID - Adobe Experience Manager 15-10-2015
Correct. If you have sticky session then you have to implement across otherwise you have to believe on servers clustering.

Views

802

Likes

0

Replies

0
Re: Sticky Connections and JSESSIONID - Adobe Experience Manager 15-10-2015
Hi,To answer your questions1. Above i talked about publish environment only. 2. I mentioned to cluster App server means AEM similar to this http://dev.day.com/docs/en/crx/current/administering/cluster.html#Clustering Architecture so that all you publish server shared the same session data.3. Dispatcher is deployed as module on your webserver to process server request with some extra feature but you can not assume it as server.Thanks,Pawan

Views

746

Likes

0

Replies

0
Re: Sticky Connections and JSESSIONID - Adobe Experience Manager 15-10-2015
Hi,I think you have to do session clustering among servers so that the session data can be replicated to all the server. The new JSESSIONID is generating because the new server doesn't know any information about the user even though in request header is carrying the initial JSESSIONID.Refer this link - http://dev.day.com/docs/en/cq/current/deploying/cluster.htmlThanks,Pawan

Views

746

Likes

0

Replies

0