This commit is contained in:
parent
b0d8fbacd7
commit
6bc00e701c
|
@ -23,18 +23,19 @@ LPChkRespExtension::LPChkRespExtension() : typeIsClaims(true)
|
||||||
|
|
||||||
void LPChkRespExtension::fromXML(XMLDocument *xmlDoc)
|
void LPChkRespExtension::fromXML(XMLDocument *xmlDoc)
|
||||||
{
|
{
|
||||||
const std::string respElement = CKCLAIM_EXPR();
|
const std::string respElement = CKCLAIM_EXPR();
|
||||||
|
const XalanNode * responSE = xmlDoc->getElement(respElement);
|
||||||
|
const std::string respAttr("exists");
|
||||||
|
|
||||||
try {
|
if (!responSE) {
|
||||||
const XalanNode * response = xmlDoc->getElement(respElement);
|
mdLog.logN(0,"Parse error in LPChkResponse");
|
||||||
if (response) {
|
}
|
||||||
|
else {
|
||||||
|
if (responSE->getAttributes()) {}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(std::exception e)
|
|
||||||
{
|
|
||||||
mdLog.logN(1,"%s.",e.what());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue