Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

DTD for data-management-config.xml

Avatar

Level 2
Is the data-management-config.xml file structure somewhere
explained? I wonder why isn't this file (as well as all the other
FDS config files) validated against a DTD or XML schema?

I'm trying to configure multiple parameters for a destination
server method, without success so far. The following attempts have
all failed



<server>

<fill-method>

<name>getFolderContent</name>

<params>java.lang.String;boolean</params>

</fill-method>

</server>



<server>

<fill-method>

<name>getFolderContent</name>

<params>java.lang.String, boolean</params>

</fill-method>

</server>



<server>

<fill-method>

<name>getFolderContent</name>

<params>java.lang.String</params>

<params>boolean</params>

</fill-method>

</server>



I want to pass in a Java String and a boolean (the
primitive). What's the correct syntax? Thank you.
1 Accepted Solution

Avatar

Correct answer by
Former Community Member
I think you need somethign like this:
<params>java.lang.String,java.lang.Boolean</params>

View solution in original post

2 Replies

Avatar

Correct answer by
Former Community Member
I think you need somethign like this:
<params>java.lang.String,java.lang.Boolean</params>

Avatar

Level 2
Thanks a bunch, that was it. Any ideas where I can find DTSs
or Schemas for the FDS config files?

-Robert
The following has evaluated to null or missing: ==> liqladmin("SELECT id, value FROM metrics WHERE id = 'net_accepted_solutions' and user.id = '${acceptedAnswer.author.id}'").data.items [in template "analytics-container" at line 83, column 41] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign answerAuthorNetSolutions = li... [in template "analytics-container" at line 83, column 5] ----