com.esri.arcgis.gisclient
Interface IWCSClientEvents

All Superinterfaces:
Serializable
All Known Implementing Classes:
IWCSClientEventsProxy

public interface IWCSClientEvents
extends Serializable

Provides access to events that occur when a URL request is made to the WCS server.

Description

This interface is new at ArcGIS 9.3.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void wCSException(IWCSServiceDescription pService, String requestType, String requestURL, IWCSServiceExceptionHandler pException)
          Fired when the an URL request is made to WCS server and the server fails with a valid exception.
 void wCSRequest(IWCSServiceDescription pService, String requestType, String requestURL)
          Fired when the an URL request is made to WCS server.
 

Method Detail

wCSRequest

void wCSRequest(IWCSServiceDescription pService,
                String requestType,
                String requestURL)
                throws IOException,
                       AutomationException
Fired when the an URL request is made to WCS server.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pService - A reference to a com.esri.arcgis.gisclient.IWCSServiceDescription (in)
requestType - The requestType (in)
requestURL - The requestURL (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

wCSException

void wCSException(IWCSServiceDescription pService,
                  String requestType,
                  String requestURL,
                  IWCSServiceExceptionHandler pException)
                  throws IOException,
                         AutomationException
Fired when the an URL request is made to WCS server and the server fails with a valid exception.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pService - A reference to a com.esri.arcgis.gisclient.IWCSServiceDescription (in)
requestType - The requestType (in)
requestURL - The requestURL (in)
pException - A reference to a com.esri.arcgis.gisclient.IWCSServiceExceptionHandler (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.