Skip to content

Commit

Permalink
v0.4.22
Browse files Browse the repository at this point in the history
  • Loading branch information
scripting committed Dec 6, 2019
1 parent f98cfa1 commit b3954bd
Showing 1 changed file with 32 additions and 16 deletions.
48 changes: 32 additions & 16 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,38 @@ Procedure parameters can be scalars, numbers, strings, dates, etc.; and can also
Here's an example of an XML-RPC request:

```xml
POST /RPC2 HTTP/1.0
User-Agent: Frontier/5.1.2 (WinNT)
Host: betty.userland.com
Content-Type: text/xml
Content-length: 181

<?xml version="1.0"?>
<methodCall>
<methodName>examples.getStateName</methodName>
<params>
<param>
<value><i4>41</i4></value>
</param>
</params>
</methodCall>
```

POST /RPC2 HTTP/1.0

User-Agent: Frontier/5.1.2 (WinNT)

Host: betty.userland.com

Content-Type: text/xml

Content-length: 181



<?xml version="1.0"?>

<methodCall>

<methodName>examples.getStateName</methodName>

<params>

<param>

<value><i4>41</i4></value>

</param>

</params>

</methodCall>

```

### Header requirements

Expand Down

0 comments on commit b3954bd

Please sign in to comment.