REST प्रोटोकॉल क्या है और यह HTTP प्रोटोकॉल से क्या भिन्न है?
<
-
/ Ul>
डेटा यूआरएल के द्वारा विशिष्ट रूप से संदर्भित है और एचटीएमएच ऑपरेशन (GET, PUT, POST, DELETE, आदि) का उपयोग करने पर कार्य किया जा सकता है। माइम प्रकार की एक विस्तृत विविधता संदेश / प्रतिक्रिया के लिए समर्थित होती है लेकिन XML और JSON सबसे आम हैं।
उदाहरण के लिए एक ग्राहक के बारे में डेटा पढ़ने के लिए, आप URL के साथ एक HTTP प्राप्त कार्य का उपयोग कर सकते हैं। यदि आप उस ग्राहक को हटाना चाहते हैं, तो उसी URL के साथ ही HTTP हटाएं कार्रवाई का उपयोग करें।
नीचे दिए गए जावा कोड HTTP प्रोटोकॉल पर एक अस्थाई कॉल बनाने का तरीका दर्शाता है:
< कोड> स्ट्रिंग uri = "http://www.example.com/customers/1"; यूआरएल यूआरएल = नया यूआरएल (यूरी); HttpURL कनेक्शन कनेक्शन = (HttpURL कनेक्शन) url.openConnection (); connection.setRequestMethod ( "GET"); Connection.setRequestProperty ("स्वीकार करें", "एप्लिकेशन / एक्सएमएल"); JAXBContext जेसी = JAXBContext.newInstance (ग्राहक.क्लाश); InputStream xml = connection.getInputStream (); ग्राहक ग्राहक = (ग्राहक) jc.createUnmarshaller ()। Unmarshal (xml); connection.disconnect (); उदाहरण के लिए जावा (जेएक्स-आरएस) उदाहरण देखें:
Popular posts from this blog
I want to use switch-case in my program but the compiler generates an error. How can I use the switch statement with QString ? The compiler gives me this error: The expression of the switch type 'QString' is invalid My code is as follows : boolStopWord (the word QString) {bool flag = false; Switch (word) {case "the": flag = true; break ; "On" case: flag = true; break ; Case "in": flag = true; break ; Case "your": flag = true; break ; Case "near": flag = true; break ; Case "all": flag = true; break ; Case "this": flag = true; break ; } Return flag; } How do I use the switch statement with a Caststring ? You can not use the switch statement in C ++ language with integral or enum types. You can formally enter the square type of object in the switch statement, but this means that the compiler will look for a user-defined conversion to convert it to an integral or enum type.
I'm trying to create a predefined key after checking the manual and I wrote it: Db.execute ("create table" Table 2 (id, integer primary key, somedata integer) "db.execute" (table creation table 2 does not exist (name text, maintain reference (id) ") and found this: sqlite 3. Operation error: near" references ": syntax error Your second ligne is wrong db.execute ("create table if table does not exist 2 (name text, my_id integer, foreign key (my_id) reference Maintenance (ID)) ") as explained
What is a Python equivalent for Ruby's define_method , which is the dynamic generation of class methods will allow? (As can be seen in Wikipedia) Functions are first-class objects in Python and assign them The properties of a class or an example can be a way of doing the same thing as a Wikipedia example: colors = {"black": "000", "red": "F00", "green": "0f0", "yellow": "ff0", "blue": "00f", "magenta": "fff", "cyan": "0ff", "white": " FFF "} Class MyStream (ARR): Pass for Name, Code in colors.iteritems (): def _in_colour ( W code = code): return '& lt; Span style = "color:% s" & gt;% s & lt; / Span & gt; ' % (Code, self) setter (histrive, "in_" + name, _in_ color)
Comments
Post a Comment