This file contains hidden or 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"?> | |
<proxy xmlns="http://ws.apache.org/ns/synapse" | |
name="SugarCRMProxyFilteredByNetLB" | |
transports="https,http" | |
statistics="enable" | |
trace="enable" | |
startOnLoad="true"> | |
<target faultSequence="errorHandler"> | |
<inSequence> | |
<property name="client-host" expression="get-property('axis2', 'REMOTE_HOST')"/> |
This file contains hidden or 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
<soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> | |
<faultcode xmlns:tns="http://www.w3.org/2003/05/soap-envelope">tns:Receiver</faultcode> | |
<faultstring>403.6 - IP address rejected. Status code in response to a request from a client for a web page or resource to indicate that the server can be reached and understood the request, but refuses to take any further action. </faultstring> | |
</soapenv:Fault> |
This file contains hidden or 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
SubscriptionSender subscriptionSender = new SubscriptionSender(); | |
subscriptionSender.setSubject("Lista degli utenti disattivati"); | |
subscriptionSender.setBody(emailBody.toString()); | |
subscriptionSender.setUserId(user.getUserId()); | |
subscriptionSender.setCompanyId(user.getCompanyId()); | |
subscriptionSender.setFrom("[email protected]", "Liferay Portal"); | |
subscriptionSender.setHtmlFormat(false); | |
subscriptionSender.setMailId("user", user.getUserId()); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Example: Multiple Lists - Full Join - YUI Library</title> | |
<meta name="viewport" content="width=960" id="meta-viewport"> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic"> | |
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.0/build/cssgrids/cssgrids-min.css"> |
This file contains hidden or 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
<?php | |
$viewdefs ['Contacts'] = | |
array ( | |
'DetailView' => | |
array ( | |
'templateMeta' => | |
array ( | |
'form' => | |
array ( | |
'buttons' => |
This file contains hidden or 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
<!DOCTYPE html><html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Video For Everybody Test Page</title> | |
<style type="text/css"> | |
body {width: 640px; margin: 0 auto 20px; | |
font: 11px "Helvetica Neue", Arial, sans-serif; color: #3b3d3c;} | |
</style> | |
</head> | |
<body> |
This file contains hidden or 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
2014-02-12 23:53:10,637 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - Try to connect to the URL https://www.goodreads.com/book/show/18734728-enterprise-integration-with-wso2-esb?from_search=true ... | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - HTTP Response Code 200 | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - HTTP Response Message OK | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - HTTP Content Length -1 | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - HTTP Content Type text/html; charset=utf-8 | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - HTTP Cipher Suite TLS_RSA_WITH_AES_256_CBC_SHA | |
2014-02-12 23:53:13,221 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - Certificate Type X.509 | |
2014-02-12 23:53:13,222 [main] INFO it.dontesta.blog.ssl.HTTPSClientExample - Certificate Subject DN CN=*.goodreads.com, O=Goodreads, L=San Francisco, ST=Cal |
This file contains hidden or 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
<IfModule mod_rewrite.c> | |
Options +FollowSymLinks | |
RewriteEngine On | |
# Replace <basepath> with the relative web root path to your instance | |
RewriteBase /<basepath> | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^rest/(.*)$ api/rest.php?__sugar_url=$1 [L,QSA] | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f |
This file contains hidden or 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
server { | |
listen 8090; | |
server_name sugarcrmdev-71.dontesta.local; | |
#charset koi8-r; | |
access_log /var/log/nginx/sugarcrmdev-71.dontesta.local.access.log main; | |
error_log /var/log/nginx/sugarcrmdev-71.dontesta.local.error.log; | |
root /home/sugarcrm/application; | |
index index.php index.html; |
This file contains hidden or 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
SELECT DLFILEENTRY.REPOSITORYID, | |
(SUM(DLFILEENTRY.SIZE_) / 1048576) SIZE_MBYTE | |
FROM DLFILEENTRY | |
GROUP BY DLFILEENTRY.REPOSITORYID | |
ORDER BY SIZE_MBYTE; |