Hi!
I use Eclipse 3.1 and I must read a request XML from my WebService.

My WS has a method like this:

        public GenericResponseDTO returnXML(ReturnRequestDTO requestDTO) throws 
RemoteException
        {
                GenericResponseDTO responseDTO = new GenericResponseDTO();
                if (requestDTO != null) 
                {
                        /*
                        HERE I MUST READ THE FILE XML:
                        ProvaDocument doc = 
ProvaDocument.Factory.parse(requestDTO??????);
                        */
                }
                else
                {
                        responseDTO.setEsito(-101);
                        responseDTO.setDescizioneEsito("ERRORE SU RESTITUISCI 
FATTURA SAP");
                }
                return responseDTO;
        }

How I can do?

Thanks,
Kevin.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
For additional commands, e-mail: dev-h...@xmlbeans.apache.org

Reply via email to