swirl
Guide to OmniMark 9   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesLegacy LibrariesErrors
 
  Related Topics   Other Library Functions  
function  

HttpRequestSetFromUrl

 
 

Library: HTTP support (OMHTTP)
Include: omhttp.xin

Declaration

define function HttpRequestSetFromUrl
            modifiable  stream Request
   from     value       string URL

Argument definitions

Request
is an HTTP request object.
URL
is the uniform resource locator (URL).


Purpose

Use the HttpRequestSetFromUrl function to populate several key items of the request object.

Requirements

You must include the following line at the beginning of your OmniMark program:

  include "omhttp.xin"

Usage Notes

With HttpRequestSetFromUrl, you can set the host, port, path, and search items. By setting these items, a valid request object is created and may be sent using HttpRequestSend.

Usually, you would call HttpRequestSetFromUrl in a client program.

Example


  include "omhttp.xin"
  
  process
     local HttpRequest request
  
     ; set the host and path
     HttpRequestSetFromUrl request from
        "http://www.omnimark.com/home/home.html"
  
     ; set the port and two search items in addition to the host and path
     HttpRequestSetFromUrl request from
        "http://www.omnimark.com:1080/home/home.html?name1=value1&name2=value2"

    Related Topics
 
Other Library Functions
 
 

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ LEGACY LIBRARIES ] [ ERRORS ]

OmniMark 9.1.0 Documentation Generated: September 2, 2010 at 1:38:10 pm
If you have any comments about this section of the documentation, please use this form.

Copyright © Stilo International plc, 1988-2010.