This file contains 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
import java.nio.charset.Charset; | |
/** | |
* <p>Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>. | |
* However it uses a custom alphabet first coined by Douglas Crockford. Only addition to the alphabet is that 'u' and | |
* 'U' characters decode as if they were 'V' to improve mistakes by human input.<p/> | |
* <p> | |
* This class operates directly on byte streams, and not character streams. | |
* </p> | |
* |
This file contains 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
import java.nio.charset.Charset; | |
/** | |
* <p>Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>. | |
* However it uses a custom alphabet first coined by Douglas Crockford. Only addition to the alphabet is that 'u' and | |
* 'U' characters decode as if they were 'V' to improve mistakes by human input.<p/> | |
* <p> | |
* This class operates directly on byte streams, and not character streams. | |
* </p> | |
* |
This file contains 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
import lombok.extern.slf4j.Slf4j; | |
import org.apache.commons.io.IOUtils; | |
import org.apache.commons.lang.RandomStringUtils; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.RequestMethod; | |
import javax.annotation.Nullable; | |
import javax.servlet.ServletOutputStream; | |
import javax.servlet.http.HttpServletResponse; |
This file contains 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 rxjava.issue; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import rx.Observable; | |
import rx.functions.Action1; | |
import java.util.List; |
This file contains 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 rxjava.issue; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import rx.Observable; | |
import rx.Observer; | |
import rx.Subscriber; | |
import rx.functions.Func1; |
This file contains 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
#!/bin/sh | |
export WS_SERVER=skemqxqxxxx.test.sepamail.eu | |
#export WS_SERVER=sogefrp0.test.sepamail.eu | |
#export WS_SERVER=bpcefrppxxx.test.sepamail.eu | |
#export WS_SERVER=bnpafrppxxx.test.sepamail.eu | |
#export WS_SERVER=cmcifrpaxxx.test.sepamail.eu | |
## you should provide a file containing a valid SOAP request |
This file contains 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
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Header/><env:Body><ns3:sendMissive xmlns:ns3="http://xsd.sepamail.eu/1206/wsdl"><in>aGVsbG8=</in></ns3:sendMissive></env:Body></env:Envelope> |
This file contains 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
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 10/13/2011 | |
#################################### | |
sudo apt-get update | |
sudo apt-get upgrade |
This file contains 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
2013-02-01 09:07:43.253:INFO::jetty-7.2.2.v20101205 | |
2013-02-01 09:07:43.270:INFO::Deployment monitor /<somewhere>/console-server/jetty-distribution-7.2.2.v20101205/webapps at interval 1 | |
2013-02-01 09:07:43.274:INFO::Deployment monitor /<somewhere>/console-server/jetty-distribution-7.2.2.v20101205/contexts at interval 1 | |
2013-02-01 09:07:43.275:INFO::Deployable added: /<somewhere>/console-server/jetty-distribution-7.2.2.v20101205/contexts/console-jetty-context.xml | |
2013-02-01 09:07:48.728:INFO:/console:Initializing Spring root WebApplicationContext | |
0 [main] INFO grails.spring.BeanBuilder - [RuntimeConfiguration] Configuring data source for environment: PRODUCTION | |
824 [main] INFO grails.spring.BeanBuilder - Setting leafExecutorService thread pool size to [6] | |
1236 [main] INFO grails.spring.BeanBuilder - Registering realm: org.linkedin.glu.console.realms.ShiroLdapRealm | |
3590 [main] WARN net.sf.ehcache.config.ConfigurationFactory - No configuration found. Configuring ehcache from ehcache-failsafe.xml fou |
This file contains 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
--- a/utils/org.linkedin.glu.utils/src/main/java/org/linkedin/glu/utils/core/DisabledFeatureProxy.java | |
+++ b/utils/org.linkedin.glu.utils/src/main/java/org/linkedin/glu/utils/core/DisabledFeatureProxy.java | |
@@ -39,6 +39,14 @@ public class DisabledFeatureProxy implements InvocationHandler | |
@Override | |
public Object invoke(Object o, Method method, Object[] objects) throws Throwable | |
{ | |
- throw new DisabledFeatureException(_feature); | |
+ final String methodName = method.getName(); | |
+ if (methodName.equals("hashCode") && method.getParameterTypes().length == 0) { | |
+ return o.hashCode(); |