More actions
imported>Unknown No edit summary |
(Repair batch-0006 pages from live compare) |
||
| Line 52: | Line 52: | ||
getHostByName() -> | getHostByName() -> | ||
char myName | char myName[255]; | ||
gethostname(myName, sizeof(myName)); | gethostname(myName, sizeof(myName)); | ||
String myIP = inet_ntoa(*(in_addr*) *(gethostbyname(myName))->h_addr_list); | String myIP = inet_ntoa(*(in_addr*) *(gethostbyname(myName))->h_addr_list); | ||
| Line 67: | Line 67: | ||
{{| | {{| | ||
http://webservices.amazon.com/onca/xml?Service=AWSECommerceService | http://webservices.amazon.com/onca/xml?Service=AWSECommerceService | ||
&AWSAccessKeyId= | &AWSAccessKeyId=Your Access Key ID Here | ||
&Operation=ItemSearch &SearchIndex=SportingGoods | &Operation=ItemSearch &SearchIndex=SportingGoods | ||
&Manufacturer=Callaway | &Manufacturer=Callaway | ||
| Line 92: | Line 92: | ||
# Search Type, 관련 parameter 입력. | # Search Type, 관련 parameter 입력. | ||
# 전송 | # 전송 | ||
Revision as of 01:08, 27 March 2026
http://iid.kongju.ac.kr/~suhan/files/os/ch5.pdf http://cs.sungshin.ac.kr/~jwlee/os/chap9.ppt http://infosec.kut.ac.kr/sangjin/class/os/
Browse Node Values SearchIndex: Books Arts & Photography: 1 Biographies & Memoirs: 2 Business & Investing: 3 Children's Books: 4 Comics & Graphic Novels: 4366 Computers & Internet: 5 Cooking, Food & Wine: 6 Engineering: 13643 Entertainment: 86 Gay & Lesbian: 301889 Health, Mind & Body: 10 History: 9 Home & Garden: 48 Horror: 49 Law: 10777 Literature & Fiction: 17 Medicine: 13996 Mystery & Thrillers: 18 Nonfiction: 53 Outdoors & Nature: 290060 Parenting & Families: 20 Professional & Technical: 173507 Reference: 21 Religion & Spirituality: 22 Romance: 23 Science: 75 Science Fiction & Fantasy: 25 Sports: 26 Teens: 28 Travel: 27
http://en.wikipedia.org/wiki/IPv4#Data http://en.wikipedia.org/wiki/List_of_IPv4_protocol_numbers protocol number
http://www.dasomnetwork.com/~leedw/mywiki/moin.cgi/NetworkProgramming
http://blog.naver.com/heavenksm?Redirect=Log&logNo=80023759933 소켓에 대한 기본 지식
http://crab.chungbuk.ac.kr/%7Ejchern/ vi명령어, Windows Network Programming API, .. ntohs() getHostByName() ->
char myName[255]; gethostname(myName, sizeof(myName)); String myIP = inet_ntoa(*(in_addr*) *(gethostbyname(myName))->h_addr_list);
WinSock
In the first stage, you will write a multi-threaded server that simply displays the contents of the HTTP request message that it receives. After this program is running properly, you will add the code required to generate an appropriate response.
전자상거래
http://webservices.amazon.com/AWSECommerceService/2006-02-15/AWSECommerceService.wsdl Amazon E-Commerce Service API
base URLs : http://webservices.amazon.com/onca/xml?Service=AWSECommerceService {{| http://webservices.amazon.com/onca/xml?Service=AWSECommerceService &AWSAccessKeyId=Your Access Key ID Here &Operation=ItemSearch &SearchIndex=SportingGoods &Manufacturer=Callaway |}}
&SearchIndex=Books 고정
an Amazon Standard Item Number (ASIN)
API Reference - Search Index Values API Reference - Response Groups - Request, Small, Medium, Large, Image, ...
This section explains how to use REST (Representational State Transfer) to make requests through Amazon E-Commerce Service (ECS). REST is a Web services protocol that was created by Roy Fielding in his Ph.D. thesis (see Architectural Styles and the Design of Network-based Software Architectures for more details about REST).
REST allows you to make calls to ECS by passing parameter keys and values in a URL (Uniform Resource Locator). ECS returns its response in XML (Extensible Markup Language) format. You can experiment with ECS requests and responses using nothing more than a Web browser that is capable of displaying XML documents. Simply enter the REST URL into the browser's address bar, and the browser displays the raw XML response.
SearchIndex : Books, Toys, DVD, Music, VideoGames, Software or any other of Amazon's stores
- Search Type, 관련 parameter 입력.
- 전송