This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<S11:Envelope xmlns:S11="..." xmlns:wsse="..." xmlns:wsu="..." xmlns:ds="..."> | |
<S11:Header> | |
<wsse:Security xmlns:wsse="..."> | |
<wsse:UsernameToken wsu:Id="Example"> | |
<wsse:Username> ... </wsse:Username> | |
<wsse:Password Type="..."> ... </wsse:Password> | |
<wsse:Nonce EncodingType="..."> ... </wsse:Nonce> | |
<wsu:Created> ... </wsu:Created> | |
</wsse:UsernameToken> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Utl_Http.Set_Proxy(proxy => 'dummyproxy:port', | |
no_proxy_domains => '127.0.0.1;localhost'); | |
UTL_HTTP.set_authentication(r => l_http_request, | |
username => 'someuser', | |
password => 'somepassword', | |
scheme => 'Basic', | |
for_proxy => TRUE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<GetWeatherResponse xmlns="http://www.webserviceX.NET"> | |
<GetWeatherResult> | |
<CurrentWeather> | |
<Location>Budapest / Ferihegy, Hungary (LHBP) 47-26N 019-16E 185M </Location> | |
<Time>Jun 09, 2008 - 03:30 AM EDT / 2008.06.09 0730 UTC </Time> | |
<Wind> Variable at 1 MPH (1 KT):0 </Wind> | |
<Visibility> greater than 7 mile(s):0 </Visibility> | |
<Temperature> 73 F (23 C) </Temperature> | |
<DewPoint> 59 F (15 C) </DewPoint> | |
<RelativeHumidity> 60% </RelativeHumidity> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- névtér és szolgáltatás beállítása | |
req := dbxpk_soap.newrequest('GetWeather','xmlns="http://www.webserviceX.NET"'); | |
-- paraméterek és típusaik megadása | |
dbxpk_soap.addparameter(req, 'CityName', 'xsd:string', 'Budapest'); | |
dbxpk_soap.addparameter(req, 'CountryName', 'xsd:string', 'Hungary'); | |
-- a szolgáltatás meghívása | |
resp := dbx_pk_soap.invoke(req,'http://www.webservicex.net/globalweather.asmx', '"http://www.webserviceX.NET/GetWeather"'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
<soap:Body> | |
<GetWeather xmlns="http://www.webserviceX.NET"> | |
<CityName xsi:type="xsd:string">Budapest</CityName> | |
<CountryName xsi:type="xsd:string">Hungary</CountryName> | |
</GetWeather> | |
</soap:Body> | |
</soap:Envelope> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<s:schema elementFormDefault="qualified" targetNamespace="http://www.webserviceX.NET"> | |
<s:element name="GetWeather"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="CityName" type="s:string"/> | |
<s:element minOccurs="0" maxOccurs="1" name="CountryName" type="s:string"/> | |
</s:sequence> | |
</s:complexType> | |
</s:element> | |
<s:element name="GetWeatherResponse"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#content | |
.left.column | |
%h2 Welcome to our site! | |
%p= print_information | |
.right.column= render :partial => "sidebar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='content'> | |
<div class='left column'> | |
<h2>Welcome to our site!</h2> | |
<p> | |
<%= print_information %> | |
</p> | |
</div> | |
<div class="right column"> | |
<%= render :partial => "1" %> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Slightly modified version of the official syntax-highlight command. The original does not work for me with Ruby. | |
// it uses: http://xzfv.appspot.com | |
// ruby formatting only | |
CmdUtils.CreateCommand({ | |
name: "shl", | |
takes: {"code": noun_arb_text}, | |
icon: "chrome://ubiquity/skin/icons/color_wheel.png", | |
description: "Treats your selection as program source code, guesses its language, and colors it based on syntax.", | |
execute: function( directObj ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TODO: | |
// * sztaki off még nem működik | |
// * a megjelenő ablak legyen draggable és resizeable (jQuery UI) | |
// * a kijelölt szavak szótövesítése, és a szótő lekérdezése a szótárból (pl. többes számú főneveknél, vagy ing-es igéknél jól jöhet) | |
noun_type_sztaki_states = new CmdUtils.NounType("SztakiStates", ["on", "off"]); | |
var dictionaryWindowStyle = "<style> \ | |
#sztaki_results { \ | |
color: black; \ |
NewerOlder