Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
- Publishing Service Manager data using WS API
- Things to consider prior to publishing data
- List: Web Services available in the Service Manager Web Services API
- Field names in the extaccess record
- Create dedicated Web Services listeners
- Data conversion between Service Manager and SOAP Web Services
- Example: Publishing the Terminate Change functionality via Web Services
- Publish a table as a Web service
- Expose a table with more than one web service
- Remove a Document Engine display action from the Web Services API
- Remove a Service Manager field from the Web Services API
- Sample client for Web Services SM7 URL
- Command line arguments for the Axis2 sample application
- Add an external access action to the Web Services
Data conversion between Service Manager and SOAP Web Services
Service Manager has a more lenient data typing policy than the XML schema data typing policy used for Web Services. Certain field types in Service Manager can correspond to multiple data types in the XML schema data type policy. For example, the Service Manager data type decimal could be a decimal, a floating number, or an integer in the XML schema data type policy.
In addition, the actual formatting of data varies between Service Manager and XML schema data types. This is especially true of Service Manager date/time fields that use a different order than XML schema dates. Because some Web Services may require changes to field data format, you can now define the XML Schema data type you want Service Manager to convert the field's data to when you publish the field as part of a web service.
For outbound data, the Service Manager server automatically converts Service Manager data to the format you select in the data policy record for the Service Manager field. For inbound data, the Service Manager server automatically converts the XML schema data to the Service Manager field's listed data type format.
For example, the Service Manager Web Services API publishes the Service Manager field closed.time as ClosedTime in the IncidentManagement service. The Web Services API converts the outbound Service Manager data into the appropriate ISO 8601 date format for XML schema. When the Web Service responds, the Web Service API converts the ISO-formatted date back into a Service Manager date format. Here is an example: the conversion between 1994-11-05T08:15:30-05:00 and November 5, 1994, 8:15:30 am, US Eastern Standard Time by the Web Services API.
The services, objects, and fields published in the Service Manager Web Services API already have the proper XML schema data mappings listed in the Web Services definition (extaccess record). If the extaccess record does not list a data type mapping, then the Web Services API treats the field data as a string field. Typically, you only need to add or change a Web Services API data type mapping to publish custom fields you have added to Service Manager as Web Services objects.
Caution Changing the Web Services API data type mappings for existing fields in the Service Manager Web Services API may result in data mismatch errors.