Expand my Community achievements bar.

SOLVED

Unable to Create a node with cq:component showing 409

Avatar

Level 1

By Using New SDK am not able to create a node other than nt:unstructed.

 

Even other types are not listing while creating a node, its showing 409 error

 

 

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 4

Hi @Gokilavani 
If you don't need that specific version, then you can download some older version for the time being and work on it. For e.g I know that it is working till atleast  2024.2.15262.20240224T002940Z  version. So, the issue was probably introduced in some version released after that. 

View solution in original post

15 Replies

Avatar

Level 10

Hi @Gokilavani ,

A 409 error typically occurs when there is a conflict with the resource you are trying to create. In this case, it seems that the node you are trying to create already exists or there is a naming conflict.

To troubleshoot this issue, you can try the following steps:

1. Verify if the node already exists: Double-check if the node you are trying to create already exists in the specified location. If it does, you may need to choose a different name or delete the existing node before creating a new one.

2. Check the component registration: Ensure that the component you are trying to use is properly registered in the instance. You can verify this by checking the component's registration status in the CRX/DE or by inspecting the package installation status.

3. Verify permissions: Make sure that you have the necessary permissions to create nodes with the specified component. Check the access control policies to ensure that you have the appropriate permissions for creating nodes.

4. Check for naming conflicts: If you are specifying a name for the node, ensure that it does not conflict with any existing nodes or reserved names. Avoid using special characters or reserved words in the node name.

If none of these steps resolve the issue, please provide more details about the specific error message and the steps you are taking to create the node.

Avatar

Level 1

@HrishikeshKa 

I Have Created the Test node using admin cred, please check the attached Screenshot for reference.

Gokilavani_0-1718287638080.png

Thank You.

Avatar

Community Advisor

Hi, 

Are you creating nodes under path that allow such nodetypes? for example if you create a cq:page node under /content, do you still see the issue?



Esteban Bustamante

Avatar

Level 1

Yes i do . i created a component under /apps  only 

 

even i tried to create a cq:page under /content/myproject/us/en . facing  same issue  here too

 

 

Avatar

Level 4

Hi @Gokilavani 
can you specify your sdk version over here and also can you tell me is it similar for creating node at any path in crx or just some specific paths?

Avatar

Level 1

Am using the latest version of sdk . here is the sdk

Gokilavani_0-1718341862136.png

 

aem-sdk-2024.06.16647.20240607T103723Z-240500

Avatar

Community Advisor

Programmatically, when you see 409 error, it indicates that a conflict. This can occur when creating a node in AEM CRX. if a node with the same name already exists, or if there are constraints in place that prevent the creation of the node type you're trying to create. 

You can firstly check if the node exist, and if exists, do nothing... or write some other business logic to change the name of the node.

Also as a new developer, I recommend you to learn about System User. A system user is a JCR user with no password set and a minimal set of privileges that are necessary to perform a specific task. Having no password set means that it will not be possible to login with a system user. A system user is typically utilized by the AEM backend code which have privileges to create, read, update, and delete nodes in the JCR; the backend code will authenticate as a system user as a session when needed, and is required to session logout right when the task or tasks have been completed....Very effective.
Full documentation here -> https://sourcedcode.com/blog/aem/create-system-service-users-in-aem-6-5-with-code-configurations



===========+

From your screenshot that you are showing us, it looks like CRX/DE does not like it when that specific nodeType is placed at the path of the JCR. The JCR has rules for which nodes can be added into other nodes vs not.

Avatar

Level 1

@BrianKasingli , Could you please refer the below screenshot

 

1) i have create the cq:component node but its not listing too in type i have manually entered it and created again but the node created as nt:unstructured. Need help on this 

 

Gokilavani_0-1718343247734.png

Gokilavani_1-1718343286576.png

Gokilavani_2-1718343320243.png

 

Gokilavani_3-1718343330283.png

 

 

Avatar

Community Advisor

Is this local host? AEMaaCS does not allow you to make changes in restricted areas like /apps/*, but on local you can do whatever you want.

On Local, As a test, instead of creating your own nodes, why not copy a structure node that is in the same path root as where you are trying to re-create the nodes.

Avatar

Level 4

I am pretty sure the marked answer is not the correct one. I checked this on latest vanilla SDK (2024.5.16461.20240524T172309Z) as well as on old vanilla SDK (2023.3.11382.20230315T073850Z) and I can reproduce the same on the newer SDK (2024.5.16461.20240524T172309Z)  but it is working fine on the older one.
So this is something introduced with latest versions and a possible bug in the SDKs.
Found a similar post highlighting the same issue : 
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/create-node-in-crxde-lite/... //cc: @kautuk_sahni 

Avatar

Level 1

Yes I can reproduce the same with latest version

Avatar

Correct answer by
Level 4

Hi @Gokilavani 
If you don't need that specific version, then you can download some older version for the time being and work on it. For e.g I know that it is working till atleast  2024.2.15262.20240224T002940Z  version. So, the issue was probably introduced in some version released after that. 

Avatar

Level 4

Just as an update for everyone this is a bug in recent cloud SDK versions. We raised a ticket for this internally and Adobe confirmed it. Their engineering advised the fix will be included in the next Cloud Foundation release that is planned to happen between 11 and 25th July.

Avatar

Administrator

@Gokilavani Did you find the suggestions from users helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!



Kautuk Sahni