Custom worklist decorator class not working

hi , i was trying out the worklist customization as described in http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/workspace_customization/index.html. however it is not working. any ideas as to what might be wrong...
my custom mworklist decorator class is almost the same as that described in the example -
package customization;*
import fuego.lang.Interval;*
import fuego.lang.Time;*
import fuego.papi.InstanceInfo;*
import fuego.papi.Presentation;*
import fuego.papi.VarDefinition;*
import fuego.workspace.model.view.WorkListDecorator;*
import java.util.Locale;*
public class CustomWorkListDecorator*
+implements WorkListDecorator {+*
+public String getRowStyle(String viewId, InstanceInfo instanceInfo, int rowIndex) {+*
return  "background-color:Red" ;*
+}+
public String getCellStyle(String viewId, InstanceInfo instanceInfo,*
+Presentation.Column column, int rowIndex) {+*
return null;*
+}+
public String getValue(String viewId, InstanceInfo instanceInfo, Presentation.Column column,*
+Locale locale, String currentValue, int rowIndex) {+*
String result = currentValue;*
+if (column.getId().equals(VarDefinition.RECEIVED_ID)) {+*
Time receptionTime = instanceInfo.getReceptionTime();*
Time today = Time.now();*
+if (receptionTime.getDate().equals(today.getDate())) {+*
Interval relativeTime = Time.sub(today, receptionTime);*
int relativeHours = relativeTime.getHoursOnly();*
int relativeMinutes = relativeTime.getMinutesOnly();*
String relativeTimeString = relativeHours > 0 ? relativeHours " h " + relativeMinutes + " m" :+*
relativeMinutes " m";+*
result = "<table><tr><td nowrap class=bpmWorkspaceNormalText>" +*
+"<img src='/workspace/img/time.gif'/> Today " ++
+"(" + relativeTimeString + " ago)</td></tr></table>";+
+}+
+}+
return result;*
+}+
+}+

my workspace.prop file content--\
+#+
+#+
+#+
+#--------------------+
+# Directory Settings+
+#--------------------+
+# The directory ID that identifies the directory ALBPM WorkSpace connects to.+
fuego.workspace.DIRECTORY_ID=default
+# Specifies a remote location for the directory configuration file.+
+#remote.config.url=http://forums/remoteConfig/directory.xml+
+# The PRESET ID WorkSpace uses to authenticate against the servlet container.+
fuego.workspace.container-auth.directory.preset=container-auth
+#--------------------+
+# WorkSpace Settings+
+#--------------------+
+# Not used in this version.+
fuego.workspace.autoRefreshMenuOption=false
+# Not used in this version.+
fuego.workspace.refreshTimeMin=1
+# Enables debug mode.+
fuego.workspace.debug=false
+# WorkSpace HTTP debugger port.+
fuego.workspace.debuggerPort=9007
+# WorkSpace bean helper. This class should implement the interface fuego.workspace.adapter.WorkspaceBeanHelper.+
fuego.workspace.bean.helper.className=fuego.workspace.adapter.DefaultWorkspaceBeanHelper
+# Enables Cookie Persistence for panel preferences+
+# (Only supported for view selections)+
fuego.workspace.cookie.persistence.enabled=false
+# Specifies the timeout period in seconds, between client requests.+
+# If not specified the default value is 45 minutes.+
+#fuego.workspace.sessionTimeOut=2700+
+#---------+
+# Logging+
+#---------+
+# Specifies the level of detail of the information stored in the ALBPM logs.+
fuego.log.workspace.severities=fatal,severe,warning,info,debug
+# The detail level filters messages that correspond to the same severity. It can vary from 1 to 10.+
+# The default detail level is 5.+
fuego.log.workspace.detailLevel=10
+# The location where the log files are stored.+
fuego.log.workspace.file=E:/oracle_bpm/log/workspace.log
+# Defines the format of the information of the first line of a log entry.+
+fuego.log.workspace.format='[<{SEV}> 'MMdd HH:mm:ss.SSS'] {MOD} ({THR}): {INDENT}{MSG}'+
+# Defines the format of the information of the lines that follow the first line in a log entry.+
+fuego.log.workspace.continuationFormat='[     (cont)     ] {MOD}: {INDENT}{MSG}'+
+# Enables OpenLog (PTSpy remote debugging)+
fuego.workspace.enableOpenLog=true
+#------------------------------+
+# Process Execution Properties+
+#------------------------------+
+# If the current activity has the autocomplete property set to true, execute the next activity if the current user has+
+# the required role to do so.+
fuego.workspace.execution.performNextActivity=false
+# Waiting time for Automatic activities in a screenflow in milliseconds. If an activity exceeds this time, the+
+# screenflow is aborted.+
fuego.workspace.execution.waitForAutomatics=3000
+# Display external activities in a pop up window.+
fuego.workspace.execution.external.newWindow=
+#-----------------------+
+# Process API Settings+
+#-----------------------+
+# Number of instances in PAPI cache.+
+# If not defined the default value is 200.+
fuego.workspace.papi.instancesCacheSize=10000
+# Maximum number of participants that the API will return when performing a single query.+
+# If not defined the default value is 500.+
fuego.workspace.papi.maxParticipants=500
+#----------------+
+# Single Sign On+
+#----------------+
+# Enables Single Sign On (SSO).+
fuego.workspace.enableSSO=false
+# Custom SSO class full name. This class must implement fuego.workspace.security.SSOWorkspaceLoginInterface.+
fuego.workspace.SSO.loginClassName=fuego.workspace.security.SSOWorkspaceLogin
+#-------------------------+
+# WorkSpace Customization+
+#-------------------------+
+# CSS file that defines ALBPM WorkSpace style.+
fuego.workspace.stylesheet=bpmworkspace.css
+# Image bundle file.+
fuego.workspace.imageBundleFile=ImagesBundleSet1
+# JSP bundle file.+
fuego.workspace.jspBundleFile=JSPBundle
+# Help bundle file.+
fuego.workspace.helpBundleFile=HelpBundle
+# Custom messages bundle file.+
+#fuego.workspace.customMessageBundle=MyMessageBundle+
+# Enables WorkSpace edition mode.+
fuego.workspace.enableEditMode=true
+# Enables WorkSpace listeners configuration.+
fuego.workspace.enableConfigurableListenerMode=true
+# Enables WorkSpace layout edition.+
fuego.workspace.enableLayoutEdition=true
+# Custom Work List Panel Decorator.+
fuego.workspace.worklist.styleResolverClassname=customization.WorkListDecoratorImpl
+# Custom Work List Bulk Operations.+
+#fuego.workspace.worklist.customOperationClassname=fuego.workspace.example.MyWorkListCustomOperations+
+# Length of the description and filename column in the Attachments table, in characters.+
fuego.workspace.attachments.contentLength=12
+# Theme used to display process images and activity icons.+
+# Available values: Classic, BPMN, ColorBPMN, BusinessAnalyst and UML+
fuego.workspace.processImageTheme=ColorBPMN
+# Default execution type for Applications and Work List panels.+
+# Possible values: DIALOG, POPUP+
fuego.workspace.defaultExecutionType=DIALOG
+# Specifies if execution dialogs are displayed maximized.+
+# If set to false, it uses the defined width and height.+
fuego.workspace.executionDialog.maximize=false
+# Execution dialog width.+
fuego.workspace.executionDialog.width=500
+# Execution dialog height+
fuego.workspace.executionDialog.height=600
+# Execution popup width.+
fuego.workspace.popupWindows.width=800
+# Execution popup height.+
fuego.workspace.popupWindows.height=600
+# Defines the WorkSpace search scope policy.+
+# Possible values: ALL, ALL_IN_ROLE, PARTICIPANT_ROLES, PARTICIPANT+
+# Multiple policies should be separated with commas. The first value is WorkSpace default selection.+
+# If not defined WorkSpace uses ALL policy.+
+#fuego.workspace.search.rolePolicyScopes=ALL,ALL_IN_ROLE,PARTICIPANT_ROLES,PARTICIPANT+
+# Enables AJAX execution for interactive components.+
fuego.workspace.execution.ajax.enabled=true
+# Enables Views edition.+
fuego.workspace.views.editable = true
+# Orientation of the audit trail process image.+
+# Possible values: auto, vertical, horizontal.+
fuego.workspace.auditTrail.processImageOrientation=auto
+# Show bookmarks column+
fuego.workspace.showBookmarksColumn=true
+# Filters case sensitive property default value.+
fuego.workspace.filter.caseSensitive=false
+#-----------------------+
+# RSS Feeds Application+
+#-----------------------+
+# Enables Feeds link in WorkSpace.+
fuego.workspace.feedLinkEnabled = true
+# Enables URL guessing for the RSS Feeds application.+
fuego.workspace.feedUrlGuessing = true
+# RSS feed URL. If guessing is not enabled this URL is used.+
fuego.workspace.feedUrl=http://localhost:8080/feeds/
+#------------------------------+
+# WorkSpace Extension Settings+
+#------------------------------+
+#ALBPM WorkSpace Extension wizard uses the following properties to store configuration properties.+
+# YOU MUST NOT MODIFY THEM MANUALLY.+
fuego.workspace.imageServer=
fuego.workspace.enableWE=false
fuego.workslace.collaboration.supportedLanguages=af, sq, ar, eu, be, bn, bg, ca, zh_CN, zh_TW, kw, hr, cs, da, nl, en, eo, et, fo, fi, fr, gl, de, el, he, hi, hu, is, id, ga, it, ja, kl, ko, lv, lt, mk, mt, gv, mr, nb, nn, fa, pl, pt, ro, ru, sr, sk, sl, es, sw, sv, ta, te, th, tr, uk, vi
+# DO NOT REMOVE THIS LAST LINE+

Similar Messages

  • Custom Master Detail form not working In EBS

    Custom Master Detail form not working In EBS
    Hi all,
    I have two custom tables -- 1) XXX_DIE_Headers
    2) XXX_DIE_LINES
    I developed a Master Detail form based on above tables. XXX_DIE_Headers is the Master Block (Single record) & XXX_DIE_LINES is the detail block ( Multi line block ).
    Yes, I used Appstand,Template.fmb for developing this form. The Master block has three fields out of which Two are required fields and i have given initial value for them.
    As i deployed it in APPS(EBS),everything about it is working fine (insert,delete,master-detail behaviour) except querying.
    When i press F-11 , It pops up a message "Do you want to save changes you have made" Choice - yes,no,cancel.
    I don't want this message to pop up.
    The scenario is :- I open the form.( without entering ) Press F11 . The message Pops up.
    Please give me suggession on how to work it around so as form directly goes to query mode ,without popping the message.
    regards
    ravi

    It seems that you are changing a database value in your form, do you have any changes in WHEN-NEW-FORM-INSTANCE???
    what the form is trying to tell you that you have changed something, do you want to save it?
    I suggest you debug your form and see what's happening step by step.
    Tony

  • Drawing with a custom profile stroke is not working for me. Does it work for you?

    Drawing with a custom profile stroke is not working for me. Does it work for you?
    I can only apply it on an existing stroke but can't draw a new one with the selected profile. In fact if I change the profile to other than the default Uniform I also can't draw a new stroke with any other width than the default 1 point. This doesn't seem normal.
    Using SC5 on a PC.

    Another question on the same topic.
    Once I add a new profile to the list is it possible to put it on top of the list. I need this because the Adobe people decided to put the list in a tiny scrollable window with only a few of the first profiles showing. If there is noting in the interface may be I have to modify some program files settings?

  • XSLT Mapping with Java class not working in Integration Repository

    Hi,
    I have an XSLT mapping program with Java enhancement and I was able to successfully tested it in Stylus Studio. However, when I imported the Java class and the xslt program in Enterprise Service Builder and tested it, my program does not compile.
    Here is the error message: "Transformer Configuration Exception occurred when loading XSLT mapping_temp.xsl; details: Could not compile stylesheet".
    My java program is in a zip file containing SOAPHeaderHandler.java and SOAPHeaderhandler.class. My Java has a package com.nga.xslt.
    Here is the declaration of my Java class in the XSLT: xmlns:javamap="java:com.nga.xslt.SOAPHeaderHandler"
    It seems that it could not read the java class. Can you please advice what is wrong?

    Hi ,
    select XMLTOOLKIT option in Operation mapping and execute it.
    I am not sure we can call java program in XSLT Program,but alternative is copy the code and use it in XSLT mapping it self,that means your XSLT program will become with JAVA extensions.
    then in Operation mapping level select SAPXMLTOOL kit option and execute it. i hope it will work. if it is not working then you have deploy some JAXP files on server,because the way execution of XSLT Mpaping program got changed,like when eve you executing XSLT with extnasions( if you are not using XMLTOOL kit option) then you have to use latest version of JAXP.JDK files.
    Regards,
    Raj

  • Document Class not work when I shift my MovieClip to 2nd Frame.

    Hello,
    All my content is at 1st frame of my FLA file...and I'm using Document Class... When I try to shift my content to 2nd frame, so I can use 1st frame for preloader.. but its not working...
    This is my document class... Basically at 1st frame I'm loading external jpg image to a MovieClip..
    Is it possible, I can **** my MovieClip and other content to 2nd frame of the timeline... ??? and Document Class work???
    Thanks...
    package com.ahmad.bg
         //import all classes
         import caurina.transitions.Tweener;
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageDisplayState;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import flash.events.MouseEvent;
         import flash.net.URLRequest;
         public class MainClass extends MovieClip
              //create variables
              private var loader:Loader;
              private static const IMAGE_PATH:String = "bgs/bg.jpg";         
              public function MainClass() {
                   stage.align = StageAlign.TOP_LEFT;
                   stage.scaleMode = StageScaleMode.NO_SCALE;              
                   stage.addEventListener(Event.RESIZE, stageResize);         
                   //load external image
                   loader = new Loader();
                   loader.load(new URLRequest(IMAGE_PATH));
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, showImage);
                   pic.addChild(loader);    
              private function showImage(e:Event):void
                   try {                             
                        e.target.content.alpha = 1;
                        Tweener.addTween(e.target.content, { alpha:1, time:1, transition:"easeOutSine" } );                   
                        e.target.content.smoothing = true;                             
                   } catch (e:Error) { };
                   stageResize();
              private function stageResize(e:Event=null):void
                   pic.x = 0;
                   pic.y = 0;
                   pic.scaleX = pic.scaleY = 1;              
                   if ((stage.stageHeight / stage.stageWidth) < pic.height / pic.width) {
                        pic.width = stage.stageWidth;
                        pic.scaleY = pic.scaleX;
                   } else {
                        pic.height = stage.stageHeight;                   
                        pic.scaleX = pic.scaleY;
                   pic.x = stage.stageWidth / 2 - pic.width / 2;
                   pic.y = stage.stageHeight / 2 - pic.height / 2;         
                   bottomNav.x = Math.floor(stage.stageWidth / 2 - bottomNav.width / 2);
                   bottomNav.y = Math.floor(stage.stageHeight - bottomNav.height - 0);

    If you have code in your main class that references specific movieclips on the stage, they have to be on every frame you plan on using.
    If you have a movieclip named "pic" on frame 2, but you are referencing it right away in the main class, which starts on frame 1, then it is looking for a movieclip that does not exist until you move it to frame 2

  • Drop java class not working

    Hello,
    i'm using a freshly installed SQLDeveloper 1.5.1 to a java class to the database. Loading the class works, i can see my class in the tree under java.
    Now i wanted to change the source code of my class, so i wanted to drop it in the database. But although SQLDeveloper tells me that the Java Object "MyClass" has been dropped, it is still there in the tree. When i click on the entry in the tree i can still see the code.
    What do i need to do to remove my java code from the database?
    Thanks for help in advance,
    Dirk

    Hi ,
    select XMLTOOLKIT option in Operation mapping and execute it.
    I am not sure we can call java program in XSLT Program,but alternative is copy the code and use it in XSLT mapping it self,that means your XSLT program will become with JAVA extensions.
    then in Operation mapping level select SAPXMLTOOL kit option and execute it. i hope it will work. if it is not working then you have deploy some JAXP files on server,because the way execution of XSLT Mpaping program got changed,like when eve you executing XSLT with extnasions( if you are not using XMLTOOL kit option) then you have to use latest version of JAXP.JDK files.
    Regards,
    Raj

  • prefer-application-packages and prefer-web-inf-classes not working

    Hi,
    I'm upgrading to Weblogic 10.3.2 an application that was running quite fine in Weblogic 8. But I don't manage to get it working in WL 10. I'm getting a Class Not Found error (javax/xml/stream/XMLStreamWriter) but that class is in one of the jar files of my application: "<war-file>/WEB-INF/lib"
    It seems a class loading problem but I'm using both <prefer-application-packages> and <prefer-web-inf-classes> and it's still not working. This is my weblogic-application.xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-application>
    <prefer-application-packages>
    <package-name>javax.xml.stream.*</package-name>
    </prefer-application-packages>
    </weblogic-application>
    I'm deploying using an ear file wich contains a war file.
    Logs:
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [META-INF/cxf/cxf.xml]; nested exception is java.lang.NoClassDefFoundError: javax/xml/stream/XMLStreamWriter
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:420)
         at org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader.doLoadBeanDefinitions(ControlledValidationXmlBeanDefinitionReader.java:109)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:342)
         at org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader.loadBeanDefinitions(ControlledValidationXmlBeanDefinitionReader.java:131)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
         at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:143)
         at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:109)
         at org.apache.cxf.bus.spring.BusApplicationContext.loadBeanDefinitions(BusApplicationContext.java:263)
         at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:123)
         at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:422)
         at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         at org.apache.cxf.bus.spring.BusApplicationContext.<init>(BusApplicationContext.java:91)
         at org.apache.cxf.bus.spring.SpringBusFactory.createApplicationContext(SpringBusFactory.java:102)
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:93)
         ... 57 more
    Caused by: java.lang.NoClassDefFoundError: javax/xml/stream/XMLStreamWriter
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:344)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:301)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:42)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         at org.apache.cxf.bus.spring.TunedDocumentLoader.loadDocument(TunedDocumentLoader.java:112)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:396)
         ... 70 more
    Caused by: java.lang.ClassNotFoundException: javax.xml.stream.XMLStreamWriter

    Hi!
    We have the jar xbean-2.2.0.jar in APP-INF/lib. That one contains the class javax.xml.namespace.NameSpaceContext. I saw that the same class was in another jar as well. I've removed it from the second jar and now it's only in the xbean-2.2.0.jar. But I still get the same error. Maybe there is something wrong in my application.xml? I have all the jars in APP-INF/lib and in <war-file>/WEB-INF/lib
    Application.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN" "http://java.sun.com/dtd/application_1_3.dtd">
    <application id="Application_ID">
    <display-name>RaadgiverPM</display-name>
    <module>
    <web>
    <web-uri>rpm.war</web-uri>
    <context-root>/raadgiverPM</context-root>
    </web>
    </module>
    <library-directory>lib</library-directory>     
    </application>
    2010-09-06 11:05:07,856 735360 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient - [DELFI] Failed to initialize client at http://172.16.10.113:8090/mockRpmGrpMemberRltnpLSvo_Binding?wsdl
    java.lang.RuntimeException: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [META-INF/cxf/cxf.xml]; nested exception is java.lang.LinkageError: loader constraint violation in interface itable initialization: when resolving method "org.apache.cxf.staxutils.W3CDOMStreamWriter.getNamespaceContext()Ljavax/xml/namespace/NamespaceContext;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, org/apache/cxf/staxutils/W3CDOMStreamWriter, and the class loader (instance of <bootloader>) for interface javax/xml/stream/XMLStreamWriter have different Class objects for the type javax/xml/namespace/NamespaceContext used in the signature
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:96)
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:86)
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:64)
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:53)
         at org.apache.cxf.BusFactory.getDefaultBus(BusFactory.java:69)
         at org.apache.cxf.BusFactory.getThreadDefaultBus(BusFactory.java:106)
         at org.apache.cxf.BusFactory.getThreadDefaultBus(BusFactory.java:97)
         at org.apache.cxf.endpoint.dynamic.DynamicClientFactory.newInstance(DynamicClientFactory.java:132)
         at groovyx.net.ws.AbstractCXFWSClient.createClient(AbstractCXFWSClient.java:198)
         at groovyx.net.ws.WSClient.initialize(WSClient.java:107)
         at groovyx.net.ws.IWSClient$initialize.call(Unknown Source)
         at no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient.initializeClient(DRWebServiceClient.groovy:47)
         at no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient$initializeClient$0.callCurrent(Unknown Source)
         at no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient.initializeClient(DRWebServiceClient.groovy:37)
         at no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient$initializeClient.callCurrent(Unknown Source)
         at no.delfidata.dr.wsclients.drwsclients.DRWebServiceClient.<init>(DRWebServiceClient.groovy:33)
         at no.delfidata.dr.wsclients.drwsclients.GenericWebServiceClient.<init>(GenericWebServiceClient.groovy:12)
         at no.delfidata.dr.drintstd.channel.GenericWSClientManager.getClient(GenericWSClientManager.java:28)
         at no.delfidata.dr.drintstd.channel.impl.WSChannelImpl.getData(WSChannelImpl.java:46)
         at no.delfidata.dr.drintstd.integrationadapter.impl.AdapterWSImportRpmGrpMemberRltnpLSvo.getDataFromChannel(AdapterWSImportRpmGrpMemberRltnpLSvo.java:74)
         at no.delfidata.dr.drintstd.integrationadapter.AbstractIntegrationAdapter.getDataImportFromChannel(AbstractIntegrationAdapter.java:232)
         at no.delfidata.dr.drintstd.integrationadapter.AbstractIntegrationAdapter.getData(AbstractIntegrationAdapter.java:173)
         at no.delfidata.dr.drintstd.integrationengine.impl.IntegrationEngineImpl.importData(IntegrationEngineImpl.java:113)
         at no.delfidata.dr.drsvcstd.integration.impl.IntegrationServiceImpl.importCustomerData(IntegrationServiceImpl.java:117)
         at no.delfidata.dr.drsvcstd.integration.impl.StartUpService.openAndImportCustomer(StartUpService.java:81)
         at no.delfidata.dr.drstdgui.gui.control.ReceivingServletAction.execute(ReceivingServletAction.java:135)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at no.delfidata.dr.drbasis.gui.filter.MenuFilter.doFilter(MenuFilter.java:78)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at no.delfidata.common.gui.filter.SecurityFilter.doFilter(SecurityFilter.java:265)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [META-INF/cxf/cxf.xml]; nested exception is java.lang.LinkageError: loader constraint violation
    in interface itable initialization: when resolving method "org.apache.cxf.staxutils.W3CDOMStreamWriter.getNamespaceContext()Ljavax/xml/namespace/NamespaceContext;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, org/apache/cxf/staxutils/W3CDOMStreamWriter, and the class loader (instance of <bootloader>)
    for interface javax/xml/stream/XMLStreamWriter have different Class objects for the type javax/xml/namespace/NamespaceContext used in the signature
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:420)
         at org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader.doLoadBeanDefinitions(ControlledValidationXmlBeanDefinitionReader.java:109)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:342)
         at org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader.loadBeanDefinitions(ControlledValidationXmlBeanDefinitionReader.java:131)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
         at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:143)
         at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:109)
         at org.apache.cxf.bus.spring.BusApplicationContext.loadBeanDefinitions(BusApplicationContext.java:263)
         at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:123)
         at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:422)
         at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         at org.apache.cxf.bus.spring.BusApplicationContext.<init>(BusApplicationContext.java:91)
         at org.apache.cxf.bus.spring.SpringBusFactory.createApplicationContext(SpringBusFactory.java:102)
         at org.apache.cxf.bus.spring.SpringBusFactory.createBus(SpringBusFactory.java:93)
         ... 48 more
    Caused by: java.lang.LinkageError: loader constraint violation in interface itable initialization: when resolving method "org.apache.cxf.staxutils.W3CDOMStreamWriter.getNamespaceContext()Ljavax/xml/namespace/NamespaceContext;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, org/apache/cxf/staxutils/W3CDOMStreamWriter, and the class loader (instance of <bootloader>) for interface javax/xml/stream/XMLStreamWriter have different Class objects for the type javax/xml/namespace/NamespaceContext used in the signature
         at org.apache.cxf.bus.spring.TunedDocumentLoader.loadDocument(TunedDocumentLoader.java:112)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:396)
         ... 61 more

  • Customer exit EXIT_SAPLRSAP_001 is not working

    Hi all,
    Customer exit EXIT_SAPLRSAP_001 for transaction data is not working for
    2LIS_12_VCSCL. But its working for all other datasources.
    This is the new data source we are planning to use. And we have added three new fields to it.To fill up these fields we have write some logic.When extracted data for
    2LIS_12_VCSCL in RSA3 in debug mode.. its not stopping at all.
    I think we have to do some setting..
    Please suggest something..
    Regards,
    Viren.

    Hi ,
    I am using follwing things.
    Exit : EXIT_SAPLRSAP_001
    Include : ZXRSAU01
    TABLES: LIPS,J_3APGEN.
    DATA : LV_J_3ASIZE   TYPE FIELDNAME,
            LV_J_3ABWEL_SIZE  LIKE J_3APGEN-J_3AKORD1,
           LV_FLDNAME    TYPE FIELDNAME,
            LV_Z_BWEL_STYLE  LIKE J_3APGEN-J_3AKORD2.
    FIELD-SYMBOLS: <FS_DATA> TYPE ANY,
                    <FS_J_3ASIZE> TYPE ANY,
                    <FS_J_3ABWEL_SIZE> TYPE ANY,
                    <FS_Z_BWEL_STYLE> TYPE ANY.
    BREAK-POINT.
    CASE I_DATASOURCE.
      WHEN '2LIS_12_VCSCL'.
        LOOP AT C_T_DATA ASSIGNING <FS_DATA>.
          LV_J_3ASIZE = 'J_3ASIZE'.
       ASSIGN COMPONENT LV_J_3ASIZE OF STRUCTURE <FS_DATA> TO <FS_J_3ASIZE>.
       SELECT SINGLE J_3AKORD1 J_3AKORD2 FROM J_3APGEN INTO
                                 (LV_J_3ABWEL_SIZE,LV_Z_BWEL_STYLE)
                                  WHERE J_3AKORDX = <FS_J_3ASIZE>.
      IF SY-SUBRC = 0.
           LV_FLDNAME = 'J_3ABWEL_SIZE'.
        ASSIGN COMPONENT LV_FLDNAME OF STRUCTURE <FS_DATA> TO
                            <FS_J_3ABWEL_SIZE>.
            <FS_J_3ABWEL_SIZE> = LV_J_3ABWEL_SIZE.
           LV_FLDNAME = 'Z_BWEL_STYLE'.
        ASSIGN COMPONENT LV_FLDNAME OF STRUCTURE <FS_DATA> TO
                            <FS_Z_BWEL_STYLE>.
            <FS_Z_BWEL_STYLE> = LV_Z_BWEL_STYLE.
       ENDIF.
       CLEAR <FS_Z_BWEL_STYLE>.
       CLEAR <FS_J_3ABWEL_SIZE>.
       CLEAR LV_J_3ABWEL_SIZE.
       CLEAR LV_Z_BWEL_STYLE.
    ENDLOOP.
    ENDCASE.
    I think it should stop...
    Regards,
    viren.

  • MDT - Custom Reference Image does not work with Task Sequence, normal Windows 7 Enterprise Iso media works fine.

    Hi,
    Our MDT server is acting strange!
    I have previously had this system running without problem - i could both capture and deploy computers as is and no changes have been made to mdt.
    But my latest capture does not work. When i capture my reference maching in my VM environment it completes without errors and i can import the latest wim file.
    When i deploy the tast sequence, it install the custom Wim image, but it ends up with "login" screen as the administrator i have entered for the capture/deploy sequence, but it goes to stop at this point and applications is not installed.
    If i change the ISO in the task sequence under Install OS step, to a clean Win7 install media then the capture completes and install applications.
    I have also tried to:
    Capture reference without password
    Capture reference without Windows updates
    Customsettings.ini, bootstrap, BDD.log and SMSTS.log to be found here: https://onedrive.live.com/redir?resid=ED5029A20300B814!365&authkey=!AALV1b2ubD0laEE&ithint=folder%2cini
    Hope you will be able to assist,
    Regards,
    Anders

    if you have noticed your smsts.log, there is same error multiple - 
    Executing in non SMS standalone mode. Ignoring send a task execution status message request
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    User did not specify local data drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume A:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume D:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume X:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume Z:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    TSM root drive = TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    We do not find an available volume to store the local data path
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a TS execution environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSInstructionStackString=0
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a TS execution environment variable _SMSTSInstructionStackString=0
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Save the current environment block TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    pszPath[0] != L'\0', HRESULT=80070057 (c:\qfe\nts_sms_fre\sms\framework\core\ccmcore\path.cpp,58)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Filesystem::Path::Add(sEnvPath, EnvDataFileName, sEnvPath), HRESULT=80070057 (e:\nts_sms_fre\sms\framework\tscore\environmentlib.cpp,639)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save environment to  (80070057)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    TS::Environment::SharedEnvironment.saveEnvironment(szPath), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,842)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save the current environment block. This is usually caused by a problem with the program. Please check the Microsoft Knowledge Base to determine if this is a known issue or contact Microsoft Support Services for further assistance.
    The parameter is incorrect. (Error: 80070057; Source: Windows)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    SaveEnvironment(), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,420)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to persist execution state. Error 0x(80070057)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save execution state and environment to local hard disk
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Start executing an instruciton. Instruction name: Gather local only. Instruction pointer: 1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSCurrentActionName=Gather local only
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    what about the mass storage driver in your boot image, is it updated?
    Md.Waseem Please remember to click “Mark as Answer” on the post that helps you. Thank you.

  • Implementing UIApplicationDelegate protocol methods in NSObject class not working.

    Hi Everyone,
    I am new bee in iphone developement. I want to implement UIApplicationDelegate protocol methods in one of my NSObject class, how can i implement that help me please.
    I have mentioned the sample code what acutal i want to impelment.
    .h file
    @interface SmaplClass : NSObject <UIApplicationDelegate>
    .m file
    - (void)applicationWillResignActive:(UIApplication *)application
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
    -(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
    - (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
    Want to implement the above methods is NSObject class to be implemented or used, its not working. Help me can do it.
    Please help me
    Thanks,

    I complete the above discussion with saying that it is better to implement the notification handling methods in your app delegate. If there are good reasons to not to do so, you have to implement the methods in another class, instantiate the class, and call the methods from the actual UIApplicationDelegate protocol methods in the AppDelegate object. This way you can remove the actual notification handling code from AppDelegate class.
    For example, suppose you implemented the methods in the class called Test. This is a sample code in the AppDelegate class:
    @implementation AppDelegate
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
          Test *t = [[Test alloc] init];
         [t application: application didReceiveRemoteNotification: userInfo];
    @end
    Or you can create an association relationship between the AppDelegate and Test, so you do not have to create a new Test instance in each of the remote notification handling methods:
    @interface AppDelegate {
         Test *test;
    @end
    @implementation AppDelegate
    + (id)init {
         if (self = [super init]) {
              test = [[Test alloc] init];
         return self;
    - (void)dealloc {
         [test release];
         [super dealloc];
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
         // No need to create a Test instance. You just forward the call from AppDelegate instance to test      // instance
         [test application: application didReceiveRemoteNotification: userInfo];
    @end

  • Custom Actions in WD4VC not working

    Hi,
    I created a composite iview, in that created a form, start point and endpoint.
    The form has 2 buttons submit (standard action) and publish (custom action).
    In endpoint i have 2 boolean variables for ResultState.
    Similarly i have another composite iview.
    Using this WD4VC applications i created callable objects in GP.
    But all the custom actions defined in composite iviews are not working only the stadard submit action is working.
    Kindly guide me or if you have any tutorial would be really helpful.

    Hi
    Have u defined the mapping with this custom event?
    Take help from these threads
    1.[VC button|Custom actions - can we send email with VC button?;
    2.[How to define a Custom Action in VC 6.0 ?;
    Best Regards
    Satish Kumar

  • Hover psudeo-class not working

    I'm in the beginning stages of a small site and have tried to copy some styles from another site that is working. The menu effects should work like they do here:
    http://www.aptcoweb.com/dev/SEF-PC/index.htm
    They are not working here:
    http://www.aptcoweb.com/dev/vip/index2.htm
    I admit to being a novice. Where have I slipped up?

    Actually, your nav has no #Menu id assigned to it.  That's why your #Menu styles are not working.  Change your HTML code to this:
    <nav id="Menu" class="fluid TopNav">
    <ul class="fluid fluidList Menu">
       <li class="fluid MenuItem"><strong><a href="/dev/vip/index2.htm">Home</a></strong></li>
       <li class="fluid MenuItem"><strong><a href="/dev/vip/gallery.htm">Staff &amp; Photos</a></strong></li>
       <li class="fluid MenuItem"><strong><a href="/dev/vip/testimonials.htm">Testimonials</a></strong></li>
       <li class="fluid MenuItem"><strong><a href="/dev/vip/reservations.htm">Rates &amp; Reservations</a></strong></li>    </ul>
      </nav>
    Also remove the closing </nav> tag after your </article>  tag. 
    Navigation doesn't belong in your <article> as they mean different things.
    I'm not sure you need all those extra classes, either.  Less code is better code to work with.
    Nancy O.

  • Custom lock screen GPO not working for domain users

    I have a WS2012 standard server with W8 Pro clients. I'm trying to force the lock screen to a .jpg however it's not working, it leaves the users with just a standard blueish screen.
    I have the "force a specific default lock screen image" enabled with the path \\MRS-DC\WP\mrc_lock_screen.jpg
    The GPO is being applied according to the results wizard, however no image. What gives?

    Hi,
    Please refer to the below articles:
    Win8: How to Manage the Lock Screen Image on Windows 8 and Windows Server 2012
    http://support.microsoft.com/kb/2787100
    Here is a similar thread:
    Change default logon/startup/lock screen in windows 8 pro
    http://social.technet.microsoft.com/Forums/windows/en-US/2590f111-7709-40b9-acee-c2aeaa9a48f8/change-default-logonstartuplock-screen-in-windows-8-pro
    In addition, please check your below policy:
    Prevent changing lock screen image under Computer Configuration\Administrative Templates\Control Panel\Personalization
    Disable it and check the result also.
    Regards,
    Yan Li
    Cataleya Li
    TechNet Community Support

  • Custom event log is not working in SharePoint server

    Hi ,
    We are trying to implement event logging in our application. We have created separate event source for our application. When we testing this our local dev machine it is working without any problem. when I try to test the same in higher environment (QA, Pre-prod)
    it is not working. The QA environment is a multi form server. We are able to see the event source in the event viewer, but the logging is not happening. We have tried restarting IIS, restarting the services. 
    Any suggestion or guidance will be highly appreciated.
    Thanks in Advance

    Logging should use the SharePoint Unified Logging Services (ULS) infrastructure.
    Logging to the Event Viewer requires ADMIN PERMISSION... which is why it works fine in DEV, and not in TEST/PROD.
    DO NOT LOG TO THE EVENT VIEWER... OR USE ANY OTHER HOME GROWN CONCOCTION... USE THE LOGGING FRAMEWORK PROVIDED BY THE PLATFORM.
    This may help: http://www.sbrickey.com/Tech/Blog/Post/Custom_Logging_in_SharePoint_2010
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • [HELP] [BPEL 11g] Customized BPEL worklist app could not work on JBoss

    Dear all,
    We are developing the customized Human Worklist app based on BPEL HW API 11g.
    The application (some jsp pages) works fine in JDeveloper 11g. However, after deploy to JBoss, it always prompt with "NoClassDefFoundError" exception, although we have already add following 7 jar files into Classpath:
    ${jdeveloper.home}\Middleware\wlserver_10.3\server\lib\weblogic.jar
    ${jdeveloper.home}\Middleware\jdeveloper\modules\oracle.jrf_11.1.1\jrf.jar
    ${jdeveloper.home}\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\wsclient.jar
    ${bea.home}/AS11gR1SOA/soa/modules/oracle.soa.fabric_11.1.1/bpm-infra.jar
    ${bea.home}/AS11gR1SOA/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar
    xml.jar
    xmlparserv2.jar
    Then we manually copy many other jars (nearly 100) under Weblogic server, but it still prompt lacking of some jar file with "NoClassDefFoundError" exception.
    So, does BPEL 11g support deploy HW app outside weblogic, like JBoss? If so, what we need to set at JBoss side to run our app?
    Thanks a lot.

    Not sure it is available yet as I have not seen any doc for 11g.
    here is the 10g instructions which may provide some pointers.
    http://download-east.oracle.com/docs/cd/B31017_01/web.1013/b25947/deployment_topics012.htm
    cheers
    James

Maybe you are looking for

  • Do I need to buy a new optical drive?

    Wouah, really strange things happening. A couple of weeks ago, I had to burn something like a hundred DVDs, but couldn't complete coz my drive (a Pionneer 111D) was refusing to burn 2 in every four DVD. Thought the problem was from the media itself.

  • How can you copy a table from Safari to Numbers

    I am in the process of migrating from open office to Numbers, since Numbers really does look a lot nicer- however there is one point that I cannot find how to do in Numbers. If I select a table in Safari, then in Open Office I can paste that table, a

  • Ipod classic 30gb white screen-whirring

    hi all. hopefully i can get some help on here although im afraid i already know the answer....ok older ipod classic. 30gb. worked great for yrs. then started freezing up more and more. wouldnt hold a chrarge very long. then one day plugged into kitch

  • Firefox automatically downloads unwanted files

    I opened a website and downloaded a brochure to my desktop that was supposed to be a pdf file. However, it downloaded as a pdf.part file and I was not able to open the .part extension, so I then placed both files into the trash and emptied the trash.

  • Findings on replacing (empty?) OfficeJet 8600 N911g ink cartridges

    I want to note some interesting findings on replacing the "Setup cartridges." The printer reported that the black ink was out and needed replacing.  It really did not report the CMY cartridges as out, although they were low.  Curiously though, the pr