Changeset 447 for tapas/web


Ignore:
Timestamp:
04/02/12 17:48:51 (12 years ago)
Author:
rboipsl
Message:

mapping tapas num request

Location:
tapas/web/src/com/ether
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tapas/web/src/com/ether/Controller.java

    r446 r447  
    7373            throws WebException 
    7474    { 
    75         String toto = "lmml"; 
    76  
    7775        if( null == javaTapas ) 
    7876            throw new WebException( WebException.WebCode.ERROR_JSON_TAPAS_IS_NULL, "Serialization error : jsonTapas is null", WebException.getExceptionThrowable() ); 
     
    8179 
    8280        // appel a createxml 
    83         getTapasService().createXMLRequest( javaTapas ); // en 2ieme parametre 
     81        try 
     82        { 
     83            getTapasService().createXMLRequest( javaTapas ); // en 2ieme parametre 
     84        } 
     85        catch( ServiceException e ) 
     86        { 
     87            throw new WebException( WebException.WebCode.ERROR_XML_CREATION, e ); 
     88        } 
    8489 
    8590        // appel a runtime 
  • tapas/web/src/com/ether/WebException.java

    r422 r447  
    4646        ERROR_EMAIL_CANNOT_BE_SEND, 
    4747              ERROR_NO_OBSERVATORY_FOUND, 
     48        ERROR_XML_CREATION, 
    4849        ERROR_TO_READ_FILE_PROPERTIES 
    4950    } 
Note: See TracChangeset for help on using the changeset viewer.