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
| # These settings were set by the catalyst build script that automatically | |
| # built this stage. | |
| # Please consult /usr/share/portage/config/make.conf.example for a more | |
| # detailed example. | |
| # ************************ | |
| # Intel atom server config | |
| # ************************ | |
| CFLAGS="-march=atom -O2 -pipe" | |
| CXXFLAGS="${CFLAGS}" |
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
| audio_output { | |
| type "httpd" | |
| name "Attic Door HTTP Stream" | |
| format "44100:16:2" | |
| enabled "no" | |
| always_on "no" | |
| mixer_type "none" | |
| encoder "vorbis" # optional, vorbis or lame | |
| quality "5.0" # do not define if bitrate is defined | |
| # bitrate "128" # do not define if quality is defined |
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
| package ru.cti.crypto; | |
| import java.io.ByteArrayOutputStream; | |
| import java.io.FileInputStream; | |
| import java.security.Key; | |
| import java.security.KeyStore; | |
| import java.security.PrivateKey; | |
| import java.security.Provider; | |
| import java.security.cert.X509Certificate; | |
| import java.util.ArrayList; |
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
| http://m2eclipse.sonatype.org/sites/m2e/0.12.1.20110112-1712/ |
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
| <servlet> | |
| <servlet-name>appServlet</servlet-name> | |
| <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> | |
| <init-param> | |
| <param-name>contextConfigLocation</param-name> | |
| <param-value>/WEB-INF/classes/spring/servletContext.xml</param-value> | |
| </init-param> | |
| <load-on-startup>1</load-on-startup> | |
| </servlet> |
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
| <context:component-scan base-package="ru.cti.scp.ws"/> | |
| <sws:annotation-driven/> | |
| <bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"> | |
| <description>A message factory to support SOAP 1.1</description> | |
| <property name="soapVersion"> | |
| <util:constant static-field="org.springframework.ws.soap.SoapVersion.SOAP_11"/> | |
| </property> | |
| </bean> |
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
| @Endpoint | |
| public class HolidayServiceEndpoint { | |
| private static final String NAMESPACE_URI = "http://mycompany.com/hr/schemas"; | |
| private static final Logger logger = LoggerFactory.getLogger(HolidayServiceEndpoint.class); | |
| @PayloadRoot(namespace = NAMESPACE_URI, localPart = "HolidayRequest" ) | |
| public void handleHolidayRequest(@RequestPayload HolidayRequest request) throws Exception { | |
| logger.debug("HolidayServiceEndpoint invoked!!! {}", request.getClass().getName()); | |
| } |
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
| gcc -march=native -E -v - </dev/null 2>&1 | grep cc1 |
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
| mvn dependency:sources | |
| mvn dependency:resolve -Dclassifier=javadoc |
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:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://schemas.bssys.com/spg/merchant/service/messages/v1" xmlns:v11="http://schemas.bssys.com/spg/service/payment/details/v1" xmlns:xd="http://www.w3.org/2000/09/xmldsig#"> | |
| <soapenv:Header/> | |
| <soapenv:Body> | |
| <v1:registerPaymentRequest> | |
| <requestHeader requestUUID="25fe07f1-b0c7-30e5-a579-000100146487"> | |
| <createDateTime>2013-01-29T12:39:38+04:00</createDateTime> | |
| <sender> | |
| <id>TESTPORTAL</id> | |
| </sender> | |
| <recipient> |
OlderNewer