BOOL CBitprintsDownloader::DecodeResponse() { if ( m_pXML ) delete m_pXML; theApp.Message( MSG_DEBUG | MSG_FACILITY_INCOMING, L"[Bitprints] Got response: %s", (LPCTSTR)m_sResponse ); m_pXML = CXMLElement::FromString( m_sResponse, TRUE ); if ( m_pXML == NULL ) return FALSE; for ( POSITION pos = SchemaCache.GetIterator(); pos; ) { CSchemaPtr pSchema = SchemaCache.GetNext( pos ); if ( pSchema->m_sBitprintsTest.GetLength() && LookupValue( pSchema->m_sBitprintsTest ).GetLength() ) { CXMLElement* pMetadata = ImportData( pSchema ); if ( pMetadata == NULL ) return FALSE; return SubmitMetaData( pMetadata ); } } return FALSE; }
BOOL CBitziDownloader::DecodeResponse() { if ( m_pXML ) delete m_pXML; m_pXML = CXMLElement::FromString( m_sResponse, TRUE ); if ( m_pXML == NULL ) return FALSE; for ( POSITION pos = SchemaCache.GetIterator() ; pos ; ) { CSchema* pSchema = SchemaCache.GetNext( pos ); if ( pSchema->m_sBitziTest.GetLength() && LookupValue( pSchema->m_sBitziTest ).GetLength() ) { CXMLElement* pMetadata = ImportData( pSchema ); if ( pMetadata == NULL ) return FALSE; return SubmitMetaData( pMetadata ); } } return FALSE; }