cancel
Showing results for 
Search instead for 
Did you mean: 

recherche de fichier

yassine_036
Champ in-the-making
Champ in-the-making
bonjour
j'aimerais savoir comment faire pour pouvoir de rechercher un fichier via une page jsp sans avoir recours a l'interface d'alfresco, l'utilisateur doit remplir des champs et à partir de ces champs je dois faire ma requete pour afficher les fichiers
comment dois-je procéder svp
cordialement
1 REPLY 1

sebguillomon
Champ in-the-making
Champ in-the-making
Bonjour,

Tu peux passer en webservices via l'api webservices d'Alfresco (il y a des exemples de founis):

public static List<String> executeQuery (Query query)throws RepositoryFault, RemoteException{
      SessionUtils.startSession();
      
      try{
         RepositoryServiceSoapBindingStub repositoryService = WebServiceFactory.getRepositoryService();      
          
           // Execute the query
           QueryResult queryResult = repositoryService.query(SessionUtils.STORE, query, true);
          
           // Display the results
           ResultSet resultSet = queryResult.getResultSet();
           ResultSetRow[] rows = resultSet.getRows();
          
           if (rows != null)
           {
              List< String > results = new ArrayList< String >();
               // Get the infomation from the result set
               for(ResultSetRow row : rows)
               {
                   String nodeId = row.getNode().getId();
                   results.add(nodeId);
               }
              
               return results;
           }
        }catch(RepositoryFault exc){
           throw exc;
        }finally{
           SessionUtils.endSession();
        }
      
   return null;
}
Getting started

Tags


Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.