For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
| configurations { | |
| jaxws | |
| } | |
| dependencies { | |
| jaxws 'com.sun.xml.ws:jaxws-tools:2.1.4' | |
| } | |
| task wsimport { | |
| ext.destDir = file("${projectDir}/src/main/generated") |
| #import <Availability.h> | |
| #import <Foundation/NSObjCRuntime.h> | |
| /** | |
| Availability replacement macros to check for new APIs usage that may cause a crash on older systems. | |
| Simple define your deployment target version before importing this header file in your prefix file. | |
| E.g.: | |
| <?php | |
| /** | |
| * This class can add WSSecurity authentication support to SOAP clients | |
| * implemented with the PHP 5 SOAP extension. | |
| * | |
| * It extends the PHP 5 SOAP client support to add the necessary XML tags to | |
| * the SOAP client requests in order to authenticate on behalf of a given | |
| * user with a given password. | |
| * |
| <?php | |
| /** | |
| * Copyright (c) 2007, Roger Veciana | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * | |
| * Redistributions of source code must retain the above copyright notice, this |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |