cancel
Showing results for 
Search instead for 
Did you mean: 

HelpService in Adapter Metadata

Former Member
0 Kudos

Hi all,

I'm trying to load public certificate names of J2EE's keystore in my adapter configuration. Therefore I inserted a help service call into my adapter metadata according to SAP Note 766332.

<Attribute>
		<Name>outbound.encryptcert</Name>
		<Usage>optional</Usage>
		<HelpService>
			<HelpServiceName>SecStoreHelpServiceKeyAlias</HelpServiceName>
			<HelpServiceQueryAttributes>
				<HelpServiceQueryAttribute>
					<Name>Key</Name>
					<Value>Public</Value>
				</HelpServiceQueryAttribute>
				<HelpServiceQueryAttribute>
					<Name>KeyAlgorithm</Name>
					<Value>RSA</Value>
				</HelpServiceQueryAttribute>
			</HelpServiceQueryAttributes>
		</HelpService>
		<GuiLabels>
			<Label language="EN">Encryption Certificate</Label>
			<Label language="DE">Verschlüsselungszertifikat</Label>
		</GuiLabels>
	</Attribute>

I already switched the attributes from Private to Public. But whatever I do, only the private certificates are listed.

Has anybody knowledge about this bug? Help is highly appreciated and will be rewarded.

Cheers,

Matthias

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

The solution was to remove the eclosure tag

<HelpServiceQueryAttributes>

from the query attributes. Now it's working.