Uses of Class
com.infoengine.SAK.IeServiceException

Packages that use IeServiceException
com.infoengine.jsp   
com.infoengine.procunit.email   
com.infoengine.SAK   
 

Uses of IeServiceException in com.infoengine.jsp
 

Methods in com.infoengine.jsp that throw IeServiceException
 void InfoEngine.beginRequestWithParameters(String templatePath)
          Initiate a request to the Info*Engine server, and send all variables supplied in the query string and/or HTML form of the servlet request as parameters of the template or task.
 String InfoEngine.invokeRequest(String templatePath)
          Execute an Info*Engine template or task and return the result as a String.
 String InfoEngine.invokeRequestWithParameters(String templatePath)
          Execute an Info*Engine template or task, and send all variables supplied in the query string and/or HTML form of the servlet request as parameters of the template or task.
 void InfoEngine.executeTask(String uri)
          Execute an Info*Engine task and update the internal collection of groups from the result.
 void InfoEngine.executeTaskWithParameters(String uri)
          Execute an Info*Engine task and update the internal collection of groups from the result.
 String InfoEngine.applyXSL(String groupName, Reader xslReader, String styleBaseUri)
          Internally render a group as an XML string, then apply a specified XSL stylesheet to produce a string that is returned as a result.
 String InfoEngine.applyXSL(Reader xslReader, String styleBaseUri)
          Internally render the default group as an XML string, then apply a specified XSL stylesheet to produce a string that is returned as a result.
 String InfoEngine.applyXSL(String groupName, String stylesheet, String styleBaseUri)
          Internally render a group as an XML string, then apply a specified XSL stylesheet to produce a string that is returned as a result.
 String InfoEngine.applyXSL(String stylesheet, String styleBaseUri)
          Internally render the default group as an XML string, then apply a specified XSL stylesheet to produce a string that is returned as a result.
 

Uses of IeServiceException in com.infoengine.procunit.email
 

Methods in com.infoengine.procunit.email that throw IeServiceException
 void ProcessEmailMessage.accessInfoEngine()
           
 

Uses of IeServiceException in com.infoengine.SAK
 

Methods in com.infoengine.SAK that throw IeServiceException
 void IeService.beginRequest(String templatePath)
          Initiate a request to the Info*Engine server.
 void IeService.sendParameter(String name, String value)
          Send a parameter of the request to the server.
 void IeService.sendGroup(String name)
          Send a group from the internal collection to the server.
 void IeService.sendCollection()
          Send the internal collection to the server.
 void IeService.sendContent(String contentType, String name, String filename, InputStream is)
          Send content of the request to the server.
 InputStream IeService.getInputStream()
          Return an input stream containing the server's response to the request.
 String IeService.getContentType()
          Return the MIME content type associated with the server response.
 Content IeService.getNextContent()
          Return the next MIME content object from the server response stream.
 void IeService.writeNextContent(OutputStream os)
          Write the next Content object to an output stream.
 void IeService.writeNextContent(Writer writer)
          Write the next Content object to a Writer.
 void IeService.updateCollection()
          Get the next Content object from the server response stream and merge the Info*Engine group objects contained within it into the internal collection.
 void IeService.updateCollection(Content content)
          Merge the Info*Engine group objects contained within a Content object into the internal collection.
 void IeService.updateCollection(IeCollection collection)
          Merge the Info*Engine groups contained within a specified collection into the internal collection.