summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_qt3support_network_q3http.cpp
blob: 6df626a3ed78d9b0c3cfade5d2b6ca4e540f04fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//! [0]
content-type: text/html
//! [0]


//! [1]
header.setValue( "content-type", "text/html" );
QString contentType = header.value( "content-type" );
//! [1]


//! [2]
QUrlOperator op( "http://qt.nokia.com" );
op.get( "index.html" );
//! [2]


//! [3]
Q3HttpRequestHeader header( "GET", "/index.html" );
header.setValue( "Host", "qt.nokia.com" );
http->setHost( "qt.nokia.com" );
http->request( header );
//! [3]


//! [4]
http->setHost( "qt.nokia.com" ); // id == 1
http->get( "/index.html" );           // id == 2
//! [4]


//! [5]
requestStarted( 1 )
requestFinished( 1, false )

requestStarted( 2 )
stateChanged( Connecting )
stateChanged( Sending )
dataSendProgress( 77, 77 )
stateChanged( Reading )
responseHeaderReceived( responseheader )
dataReadProgress( 5388, 0 )
readyRead( responseheader )
dataReadProgress( 18300, 0 )
readyRead( responseheader )
stateChanged( Connected )
requestFinished( 2, false )

done( false )

stateChanged( Closing )
stateChanged( Unconnected )
//! [5]


//! [6]
http->setHost( "www.foo.bar" );       // id == 1
http->get( "/index.html" );           // id == 2
http->post( "register.html", data );  // id == 3
//! [6]


//! [7]
requestStarted( 1 )
requestFinished( 1, false )

requestStarted( 2 )
stateChanged( HostLookup )
requestFinished( 2, true )

done( true )

stateChanged( Unconnected )
//! [7]