Skip to content

Instantly share code, notes, and snippets.

View justinwyer's full-sized avatar

Justin Wyer justinwyer

  • Johannesburg, South Africa
View GitHub Profile
Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Fault occurred while processing.
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:146)
at $Proxy46.createUser(Unknown Source)
at com.fireid.soap.client.ApiV1Test.main(ApiV1Test.java:74)
Caused by: org.apache.cxf.binding.soap.SoapFault: Fault occurred while processing.
at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:75)
at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:236)
at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)
package playground;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.ejb.Stateful;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
@Named
<h:commandLink>
<h:graphicImage value="images/details.png" />
<rich:componentControl target="detailsPopup" operation="show" />
</h:commandLink>
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building JBoss Application Server: Web Subsystem 7.1.0.Alpha1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ jboss-as-web ---
[INFO] Deleting /Users/hbraun/dev/prj/jboss-as/web/target
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (ban-bad-dependencies) @ jboss-as-web ---
/*
* JBoss, Home of Professional Open Source
* Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ JBoss, Home of Professional Open Source
~ Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
~ as indicated by the @authors tag. All rights reserved.
~ See the copyright.txt in the distribution for a
~ full listing of individual contributors.
~ *
~ This copyrighted material is made available to anyone wishing to use,
~ modify, copy, or redistribute it subject to the terms and conditions
22:08:29,518 WARN [org.jboss.modules] (MSC service thread 1-1) Failed to define class org.switchyard.test.SimpleTestDeployment in Module "deployment.switchyard-quickstart-transform-json-0.2.0-SNAPSHOT.jar:main" from Service Module Loader: java.lang.LinkageError: Failed to link org/switchyard/test/SimpleTestDeployment (Module "deployment.switchyard-quickstart-transform-json-0.2.0-SNAPSHOT.jar:main" from Service Module Loader)
at org.jboss.modules.ModuleClassLoader.defineClass(ModuleClassLoader.java:401) [jboss-modules.jar:1.0.1.GA]
at org.jboss.modules.ModuleClassLoader.loadClassLocal(ModuleClassLoader.java:261) [jboss-modules.jar:1.0.1.GA]
at org.jboss.modules.ModuleClassLoader$1.loadClassLocal(ModuleClassLoader.java:76) [jboss-modules.jar:1.0.1.GA]
at org.jboss.modules.Module.loadModuleClass(Module.java:588) [jboss-modules.jar:1.0.1.GA]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:183) [jboss-modules.jar:1.0.1.GA]
at org.jboss.modules.ConcurrentClassLoader.performLoadClassCh
rule "My_Rule"
when
animal : Animal()
then
animal.setSound('Grrrr');
end
def write(self, fob, VixDiskLibSectorType offset, VixDiskLibSectorType length):
"""
Writes a sector range.
:param offset: Absolute offset.
:param nblocks: Number of blocks to read.
:param buff: np.ndarray of bytes
Note: SECTORS_PER_BLOCK = DEFAULT_BLOCK_SIZE (1048576 or 1MB) / VIXDISKLIB_SECTOR_SIZE (512)
SECTORS_PER_BLOCK = 2048 sectors
@justinwyer
justinwyer / web.xml
Created May 22, 2012 08:54
jetty weld enabled jersey and jsf 2
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>foobar</display-name>
<listener>
<listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
</listener>
<resource-env-ref>
<description>Object factory for the CDI Bean Manager</description>