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
| using System; | |
| using System.Security.Cryptography; | |
| using System.Security.Cryptography.Xml; | |
| using System.Xml; | |
| public class VerifyXML | |
| { | |
| public static void Main(String[] args) | |
| { |
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
| Unhandled issue: UnhandledExceptionInHandler | |
| [detail] HandlerType = VBrickPlatform.Domains.Runtime.Work.HandlerFactory+WorkItemHandler | |
| [detail] Message = | |
| ROOT CAUSE: VBrickPlatform.IssueException | |
| Unhandled issue: UnknownMessageType | |
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
| (function(){ | |
| 'use strict'; | |
| var util = angular.module("util", []); | |
| /** | |
| Conditional filter. If the conditionExpr parameter evaluates to true, the filter returns the original expression's value | |
| If the condition is false, then returns null | |
| Example: | |
| {{ expression |vbIf:conditionExpr}} | |
| <input class="{{'invalid'|vbIf:!isValid}}" ng-model="field"/> |
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
| #Put this file on your classpath root. | |
| log4j.rootLogger=DEBUG, console | |
| # Direct log messages to stdout | |
| log4j.appender.console=org.apache.log4j.ConsoleAppender | |
| log4j.appender.console.Target=System.out | |
| log4j.appender.console.layout=org.apache.log4j.PatternLayout | |
| log4j.appender.console.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n |
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 jpm; | |
| import java.util.List; | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.helper.HttpConnection; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.DocumentType; | |
| import org.jsoup.nodes.Node; |
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
| javascript: (function () { | |
| var callback = function(){ | |
| }; | |
| if (window.jQuery){ | |
| callback(); | |
| } | |
| else{ | |
| script = document.createElement("script"); | |
| script.type = "text/javascript"; |