Rest Assured

 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Cartoons for Geeks Rest Assured
# 1  
Old 04-22-2012
Rest Assured

2012-04-22T22:33:40+02:00
Image





Tweet
Image Image Image Image
Image

Source...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Accessing REST Web Service

Hello: I have created a REST service that is currently running on a Unix server. I issued a cURL command to call the REST service and verified it's working as designed; curl --request POST command and the url I used to test it is localhost:8090/someservice/somename. I have a teammate who now... (6 Replies)
Discussion started by: asthern14
6 Replies

2. Shell Programming and Scripting

Repeat same word in the rest of the column.

My input is: a.txt computer b.txt c.txt e.txt I want my output to be: a.txt computer b.txt computer c.txt computer e.txt computer There are about 100000 text files having the same format as my input data. What I am doing now is too slow and also requires plenty of scripts. 1. wc -l all... (3 Replies)
Discussion started by: shoaibjameel123
3 Replies

3. Shell Programming and Scripting

Sorting the first 6 letters and the rest will follow

Hi Guys, is there any way to sort a files from excel in shell? $cat file1 asa003 hekk asa341 no more asa012 try a d g asa001 a asa111 this is just a sample for long string Desire output: asa001 a asa003 hekk asa012 try a d g asa111 this is just a sample for long string asa341... (5 Replies)
Discussion started by: kenshinhimura
5 Replies

4. Programming

Need help on my LED REST API

I would like to seek help on my LED REST API. I have finished constructed my basic REST API for my Raspberry PI. What I'm trying to do now is allow my LED to light up whenever I key localhost:3000/7/1 and key localhost:3000/7/0 to switch off. But my problem now is my REST API can't works and hope... (0 Replies)
Discussion started by: aoiregion
0 Replies

5. Gentoo

help|how to rest my password admin(root)

i have gentoo and i dont know what is my password user admin(root) how i can to rest my passord? thanks. (2 Replies)
Discussion started by: turivnkl
2 Replies

6. Solaris

Using the rest of my hard drive

Hi When I installed opensolaris, I installed it on a 20GB partition. How do I make use of the other 300GB I have spare? format shows:- -bash-3.2# format Searching for disks...done AVAILABLE DISK SELECTIONS: 0. c3d0 <DEFAULT cyl 2607 alt 2 hd 255 sec 63> ... (12 Replies)
Discussion started by: hellotommy
12 Replies

7. UNIX for Advanced & Expert Users

Delete rest of the line

Hi, can anyone please answer my question in deleting the rest of the line. I have an example below of a file contaning: Serial3/1.5 43.70.195.13 YES NVRAM down down Serial3/3 225.94.155.69 YES NVRAM up down Serial3/6 ... (3 Replies)
Discussion started by: Aejaz
3 Replies
Login or Register to Ask a Question
xmerl_scan(3erl)					     Erlang Module Definition						  xmerl_scan(3erl)

NAME
xmerl_scan - This module is the interface to the XML parser, it handles XML 1.0. DESCRIPTION
This module is the interface to the XML parser, it handles XML 1.0. The XML parser is activated through xmerl_scan:string/[1,2] or xmerl_scan:file/[1,2] . It returns records of the type defined in xmerl.hrl. See also tutorial on customization functions. DATA TYPES
global_state() : The global state of the scanner, represented by the #xmerl_scanner{} record. option_list() : Options allow to customize the behaviour of the scanner. See also tutorial on customization functions. Possible options are: {acc_fun, Fun} : Call back function to accumulate contents of entity. {continuation_fun, Fun} | {continuation_fun, Fun, ContinuationState} : Call back function to decide what to do if the scanner runs into EOF before the document is complete. {event_fun, Fun} | {event_fun, Fun, EventState} : Call back function to handle scanner events. {fetch_fun, Fun} | {fetch_fun, Fun, FetchState} : Call back function to fetch an external resource. {hook_fun, Fun} | {hook_fun, Fun, HookState} : Call back function to process the document entities once identified. {close_fun, Fun} : Called when document has been completely parsed. {rules, ReadFun, WriteFun, RulesState} | {rules, Rules} : Handles storing of scanner information when parsing. {user_state, UserState} : Global state variable accessible from all customization functions {fetch_path, PathList} : PathList is a list of directories to search when fetching files. If the file in question is not in the fetch_path, the URI will be used as a file name. {space, Flag} : 'preserve' (default) to preserve spaces, 'normalize' to accumulate consecutive whitespace and replace it with one space. {line, Line} : To specify starting line for scanning in document which contains fragments of XML. {namespace_conformant, Flag} : Controls whether to behave as a namespace conformant XML parser, 'false' (default) to not otherwise 'true'. {validation, Flag} : Controls whether to process as a validating XML parser: 'off' (default) no validation, or validation 'dtd' by DTD or 'schema' by XML Schema. 'false' and 'true' options are obsolete (i.e. they may be removed in a future release), if used 'false' equals 'off' and 'true' equals 'dtd'. {schemaLocation, [{Namespace,Link}|...]} : Tells explicitly which XML Schema documents to use to validate the XML document. Used together with the {validation,schema} option. {quiet, Flag} : Set to 'true' if xmerl should behave quietly and not output any information to standard output (default 'false'). {doctype_DTD, DTD} : Allows to specify DTD name when it isn't available in the XML document. This option has effect only together with {validation,'dtd' option. {xmlbase, Dir} : XML Base directory. If using string/1 default is current directory. If using file/1 default is directory of given file. {encoding, Enc} : Set default character set used (default UTF-8). This character set is used only if not explicitly given by the XML declaration. EXPORTS
accumulate_whitespace(T::string(), S::global_state(), X3::atom(), Acc::string()) -> {Acc, T1, S1} Function to accumulate and normalize whitespace. cont_state(S::global_state()) -> global_state() Equivalent to cont_state(ContinuationState, S) . cont_state(X::ContinuationState, S::global_state()) -> global_state() For controlling the ContinuationState, to be used in a continuation function, and called when the parser encounters the end of the byte stream. See tutorial on customization functions. event_state(S::global_state()) -> global_state() Equivalent to event_state(EventState, S) . event_state(X::EventState, S::global_state()) -> global_state() For controlling the EventState, to be used in an event function, and called at the beginning and at the end of a parsed entity. See tutorial on customization functions. fetch_state(S::global_state()) -> global_state() Equivalent to fetch_state(FetchState, S) . fetch_state(X::FetchState, S::global_state()) -> global_state() For controlling the FetchState, to be used in a fetch function, and called when the parser fetch an external resource (eg. a DTD). See tutorial on customization functions. file(Filename::string()) -> {xmlElement(), Rest} Types Rest = list() Equivalent to file(Filename, []) . file(Filename::string(), Options::option_list()) -> {xmlElement(), Rest} Types Rest = list() Parse file containing an XML document hook_state(S::global_state()) -> global_state() Equivalent to hook_state(HookState, S) . hook_state(X::HookState, S::global_state()) -> global_state() For controlling the HookState, to be used in a hook function, and called when the parser has parsed a complete entity. See tutorial on customization functions. rules_state(S::global_state()) -> global_state() Equivalent to rules_state(RulesState, S) . rules_state(X::RulesState, S::global_state()) -> global_state() For controlling the RulesState, to be used in a rules function, and called when the parser store scanner information in a rules database. See tutorial on customization functions. string(Text::list()) -> {xmlElement(), Rest} Types Rest = list() Equivalent to string(Test, []) . string(Text::list(), Options::option_list()) -> {xmlElement(), Rest} Types Rest = list() Parse string containing an XML document user_state(S::global_state()) -> global_state() Equivalent to user_state(UserState, S) . user_state(X::UserState, S::global_state()) -> global_state() For controlling the UserState, to be used in a user function. See tutorial on customization functions. AUTHORS
<> xmerl 1.2.8 xmerl_scan(3erl)