<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Raptor System</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="{{ asset('bootstrap/css/bootstrap.css') }}" rel="stylesheet">
<link href="{{ asset('Raptor/css/icons_rpt.css') }}" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
</head>
<body style="padding: 20px;background: rgba(255,255,255,0.8) !important;" >
<h2 class="featurette-heading"><span class="muted">Raptor Soap Service</span></h2><br><br>
<p class="lead">
Every time you change the services classes, you need to re-publish to see the changes in the Soap Server.<br><br>
Raptor publish all the declared services in the src location
</p>
<div class="featurette" style="background: transparent !important;">
<form class="form-horizontal" method="POST" action="{{ path('_raptor_services_configure_configure') }}">
<div class="row">
<div class="col-md-8">
<label class="control-label" for="inputUri">Soap Service Url</label>
<div class="input-group">
<input name="uri" class="form-control" type="text" id="inputUri" placeholder="" value="{{ services }}">
<span class="input-group-addon">
/public/service?wsdl
</span>
</div>
</div>
</div>
<div class="row" style="margin-top: 10px;">
<div class="col-md-8">
<button type="submit" class="btn btn-success" id="btn-config"><i class="icon-raptor-service icon-white" style="margin-right: 5px"></i>Publish</button>
</div>
</div>
</form>
<br><br>
<p class="lead">
</p>
</div>
<script src="{{ asset('bootstrap/js/jquery.js') }}"></script>
<script type="text/javascript">
$(document.body).ready(function(){
$('#btn-config').click(function(){
$(this).attr({disabled:true});
})
// $(window.parent.document.body).find('#tabla').height($(document.body).outerHeight(true));
});
</script>
</body>
</html>
|