Skip to content

Instantly share code, notes, and snippets.

View miyataken999's full-sized avatar

kenichi miyata miyataken999

View GitHub Profile
@miyataken999
miyataken999 / web-service-soap-client-server-php.md
Created January 19, 2018 19:02 — forked from umidjons/web-service-soap-client-server-php.md
Simple Web service - SOAP Server/Client in PHP

Simple Web service - SOAP Server/Client in PHP

Implementation of the SOAP server - server.php:

<?php
// turn off WSDL caching
ini_set("soap.wsdl_cache_enabled","0");

// model, which uses in web service functions as parameter
@miyataken999
miyataken999 / index.html
Created August 24, 2017 12:49 — forked from mbajur/index.html
Working example of window.postMessage used for sending data from popup to parent page (works in IE)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
<script type="text/javascript">
window.open ("popup.html","mywindow", "width=350,height=250");
// Create IE + others compatible event handler