Library Information System: SoapService SOAP Web Service
The libary information system SOAP API
The following operations are supported. For a formal definition, please review the Service Description .
Return Value | Operation |
---|---|
ArrayOfAuthor | Author_Retrieve Retrieves the list of users in the system for the current user's session |
Author | Author_RetrieveById ( int id,
) Retrieves a single author by its id |
Book_Delete ( int id,
) Deletes an existing book in the system | |
Book | Book_Insert ( Book?
book,
) Adds a new book to the system |
ArrayOfBook | Book_Retrieve Retrieves a list of books in the system |
ArrayOfBook | Book_RetrieveByDateRange ( dateTime startDate,
dateTime endDate,
) Retrieves a list of books by a date range |
Book | Book_RetrieveById ( int id,
) Retrieves a single book by its id |
Book_Update ( Book?
book,
) Updates an existing book in the system | |
int | Book_UploadImage ( int id,
base64Binary?
imageBytes,
) Uploads a file and returns the byte count |
boolean | Connection_Authenticate ( string?
userName,
string?
password,
) Authenticates the user before using other web service functions |
Connection_Disconnect Disconnects the current user's session |