Plugin Third party Dependent jars configuration

Hi,
We have developed a scheduled task which has thid party dependent jars (jars for webservice client like axis etc). We put this jars under the lib folder which also contains the plugin jar. When we deploy the plugin with plugin registration utility we get classnotfound exception about the third party jars which we already included in the lib directory. What can be the problem here ? any help is strongly appreciated..
BR,
Aliye

If you include Third party jar inside plugin zip it should not produce error.
However, For Scheduled task Plugin is not required. You upload your Scheduled Task Jar/Third party jar using UploadJars.sh or place inside Scheduled Task,ThirdParty folder.
Hope currently you have registered your code as plugin. better remove this plugin using ant script or db. and then put your jars at file system and then upload it using UploadJars.sh. Make sure you run
PurgCache.sh all afterwards.

Similar Messages

  • OIM 11g Plugin - Third Party Jars : Classloader issue

    Hi All,
    I am having a Plugins.zip under middleware/Oracle_IDM1/server/plugins folder.  [OIM 11g R2]
    This gets invoked from a schedule job.
    I have third party Jars (axis.jar) within Plugins.zip/lib. My code within Plugins.zip calls Thrid Party APIs.
    Now the issue is:
    The APIs (within axis.jar) do not seem to find property files from within their own JARS.
    These property files are within their own Third Party Jars and the Third Party APIs should be able to access them by default. I have tested these APIs from stand alone clients and web clients, they work perfectly.
    But within the Plugins.zip, these third party APIs do not seem to find property files from within their own JARs.
    Looks like some class loader issue. Something must be getting messed up in the way the Third Party JARs from within the Plugins.zip/lib are loaded.
    Has anyone faced similar issue.
    Any suggestions please?
    Thanks,
    Sandeep

    I placed the required JARs under middleware/Oracle_IDM1/server/ThirdParty.
    I also executed UploadJars utility for required JARs.
    I have also added to server startup path : .../middleware/Oracle_IDM1/server/ThirdParty/axis.jar.
    But I still get the following Error:
    java.lang.ExceptionInInitializerError
    Caused By: java.util.MissingResourceException: Cannot find resource 'org.apache.axis.i18n.resource'
    I'm calling axis APIs from my code. The resource "org/apache/axis/i18n/resource.properties" is clearly present inside axis.jar.
    My client works when executed outside of Plugins.zip.
    Please see the full stack trace below:
    java.lang.ExceptionInInitializerError
            at org.apache.axis.utils.Messages.<clinit>(Messages.java:36)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder$1.run(EngineConfigurationFactoryFinder.java:144)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:113)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:160)
            at org.apache.axis.client.Service.getEngineConfiguration(Service.java:813)
            at org.apache.axis.client.Service.getAxisClient(Service.java:104)
            at org.apache.axis.client.Service.<init>(Service.java:113)
            at org.my.company.webservice.SecurityQASyncWS_ServiceLocator.<init>(SecurityQASyncWS_ServiceLocator.java:12)
            at org.my.company.webservice.SecurityQASyncWSClient.invoke(SecurityQASyncWSClient.java:31)
            at com.my.company.idm.xl.schedule.tasks.SecurityQASynchronization.processBatch(SecurityQASynchronization.java:561)
            at com.my.company.idm.xl.schedule.tasks.SecurityQASynchronization.execute(SecurityQASynchronization.java:222)
            at oracle.iam.scheduler.vo.TaskSupport.invokeExecute(TaskSupport.java:183)
            at oracle.iam.scheduler.vo.TaskSupport.access$000(TaskSupport.java:40)
            at oracle.iam.scheduler.vo.TaskSupport$1.processWithoutResult(TaskSupport.java:143)
            at oracle.iam.platform.tx.OIMTransactionCallbackWithoutResult.process(OIMTransactionCallbackWithoutResult.java:9)
            at oracle.iam.platform.tx.OIMTransactionCallback.doInTransaction(OIMTransactionCallback.java:13)
            at oracle.iam.platform.tx.OIMTransactionCallback.doInTransaction(OIMTransactionCallback.java:6)
            at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:128)
            at oracle.iam.platform.tx.OIMTransactionManager.execute(OIMTransactionManager.java:22)
            at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:125)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:606)
            at oracle.iam.scheduler.impl.quartz.QuartzJob$TaskExecutionAction.run(QuartzJob.java:268)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.security.Security.runAs(Security.java:41)
            at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
            at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:77)
            at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
            at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused By: java.util.MissingResourceException: Cannot find resource 'org.apache.axis.i18n.resource'
            at org.apache.axis.i18n.ProjectResourceBundle.getBundle(ProjectResourceBundle.java:288)
            at org.apache.axis.i18n.MessagesConstants.<clinit>(MessagesConstants.java:32)
            at org.apache.axis.utils.Messages.<clinit>(Messages.java:36)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder$1.run(EngineConfigurationFactoryFinder.java:144)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:113)
            at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:160)
            at org.apache.axis.client.Service.getEngineConfiguration(Service.java:813)
            at org.apache.axis.client.Service.getAxisClient(Service.java:104)
            at org.apache.axis.client.Service.<init>(Service.java:113)
            at org.my.company.webservice.SecurityQASyncWS_ServiceLocator.<init>(SecurityQASyncWS_ServiceLocator.java:12)
            at org.my.company.webservice.SecurityQASyncWSClient.invoke(SecurityQASyncWSClient.java:31)
            at com.ets.idm.xl.schedule.tasks.SecurityQASynchronization.processBatch(SecurityQASynchronization.java:561)
            at com.ets.idm.xl.schedule.tasks.SecurityQASynchronization.execute(SecurityQASynchronization.java:222)
            at oracle.iam.scheduler.vo.TaskSupport.invokeExecute(TaskSupport.java:183)
            at oracle.iam.scheduler.vo.TaskSupport.access$000(TaskSupport.java:40)
            at oracle.iam.scheduler.vo.TaskSupport$1.processWithoutResult(TaskSupport.java:143)
            at oracle.iam.platform.tx.OIMTransactionCallbackWithoutResult.process(OIMTransactionCallbackWithoutResult.java:9)
            at oracle.iam.platform.tx.OIMTransactionCallback.doInTransaction(OIMTransactionCallback.java:13)
            at oracle.iam.platform.tx.OIMTransactionCallback.doInTransaction(OIMTransactionCallback.java:6)
            at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:128)
            at oracle.iam.platform.tx.OIMTransactionManager.execute(OIMTransactionManager.java:22)
            at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:125)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:606)
            at oracle.iam.scheduler.impl.quartz.QuartzJob$TaskExecutionAction.run(QuartzJob.java:268)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.security.Security.runAs(Security.java:41)
            at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
            at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:77)
            at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
            at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)

  • Third party sale - Realtime configuration experience

    Could you share your experience in connection with Third party sale configuration during realtime?
    In other words, for 3rd party sale configuration -
    1) Did you (SD consultant) configure it in SAP together with a MM consultant?
    2) What tasks / areas did you cover and what did the MM consultant cover?
    3) The prices to pay to the third party by the company (your client), who configured it (you or MM consultant)?
    4) Any other realtime issues, learnings in connection with third party configuration process?
    Please note - I am not asking for the "technical" steps (e.g. BANS, TAS, CS, Purchase org., ME11, ME01 etc.)
    Many thanks, in advance!

    1) Did you (SD consultant) configure it in SAP together with a MM consultant?
    Yes. It has to be configured with help / co-operation from MM side.
    2) What tasks / areas did you cover and what did the MM consultant cover?
    SD Consultant - All SD related config like Sales Doc type, item Category (most important Billing relevance), Schedule Line Category (activaton of creation of PR), Copy Control between Order & Invoice & Procing Procedure.
    3) The prices to pay to the third party by the company (your client), who configured it (you or MM consultant)?
    You mean for payment to Vendor - it is purely MM Configuration right from Creation of PO from PR, Statistical MIGO (if Required) & MIRO (Purchase Invoice).
    4) Any other realtime issues, learnings in connection with third party configuration process?
    My most important learning was Billing Relevance settting in SD Item Cateogry. (I mean you can control in SD, whether the Sales Invoice is to be created on basis on Statistical MIGO or MIRO)...
    The above question & answers are too generic. Kindly let us know any specific qiestions you have.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • Installing Lightroom 4 plugins (third party)

    I am having the darndest time installing lightroom 4 plugins. Steps I did:
    1) Unzipped plugin Folder
    2) Went to file-plugin manager-and add plugin
    3) Found the plugin on my computer I wanted to install
    4) Hit "add"
    5) It won't add, it tells me there's an error occurred while attempting to load this plugin,
    I went to Adobe Exchange for these plugins, yes they are free plugins.
    I have Windows 7.
    I am truly confused on how to upload these plugins. I read and read, from what most people say I am doing it right however it's not working.
    Any helps or tips or even solutions would be wonderful. Thank you so much.

    The transitions in FCP are the same. Transitions are not keyframeable, clips and filters are keyframeable. There might be some third party transitions. You could try google.

  • Cisco Prime Infra 2.2 + Third Party Inventory and configuration backup

    Hi All,
     I am having a doubt related to Cisco prime solution capability to do a discovery and config backup for non-cisco devices. 
    Requirement is to use Cisco prime to do a discovery, inventory and take configuration backup for non-cisco devices. Is it something possible out of the box ?
    If not possible out of the box, is there any method to do that using any custom API ?
    Can we monitor 3rd party( Non-cisco) devices using Cisco Prime 2.2 ?
    Skr

    Hi,
    Below is supported-device list, check if your device is listed there.
    http://www.cisco.com/c/en/us/support/cloud-systems-management/prime-infrastructure/products-device-support-tables-list.html
    - Ashok
    Please rate the post or mark as correct answer as it will help others looking for similar information

  • Drop ship/Third Party order processing configuration in SNP

    This is in continuation of thread
    Configuring Direct/Drop Shipment in APO
    Is there any clean way of implementing drop-shipment scenario ? Most of the technical solutions we have been able to come up with are either too complicated or not very user friendly.
    Scenario : A product is ordered by a customer warehouse by placing sales orders on a DC, however the delivery takes place from factory (that in usual circumstances supplies first to DC) directly to the customer warehouse.
    Open questions are -
    1) How does forecast consumption take place since location of sales order placement is different from the delivery location ?
    2) Forecasts are created in customer warehouse and this needs to directly load the factory.
    The DC is to be treated as a "financial entity" passing the demand without participating in physical supply chain.
    Any inputs will be appreciated.

    I have not seen any solution provided by SAP to support forecast consumption at any location besides the delivery plant.  
    VMI scenarios are usually replenishment models; using reorder point planning or some other simple planning heuristic.
    Ken Snyder

  • Where should the third party JAR files be placed ?

    Hi,
    We have a requirement to perform encryption / decryption of supplier bids. In this case we require to use third party provider JAR files with OA framework code. Where should the JAR files generally be placed in such a scenario ?
    Thanks and Regards,
    Sandhya

    Checkout this post.
    How to inclue a third party .jar file in OA fwk classpath Class not found

  • Third-party libraries in a JSC team project

    We're using Sun Java Studio Creator 2 Update 1 (JSC) for the project I'm working on. This project uses a few third-party libraries (jar files). Up until 2 weeks ago I was the lone member of the project team and all was fine. Then we added another team member and encountered an issue with the 3rd-party jars. In particular, since I had setup the 3rd-party libraries using the "Library Manager" facility, I had no problems with building and deploying the app, but when my team member got the code from the version control system, he could not compile due to an error saying something like "library not found". I'm looking for a way to setup the 3rd-party libraries for our project such that those jars are found during compilation (and included in the WAR file) while at the same time new developers do not have to use the "Library Manager" to configure all the libraries on their JSC install. I tried adding the jars to the project's "lib" directory, but that did not work unless I explicitly listed them in the compile path (using "Project Properties") and this used a hard-coded path to the jars. I would rather not require that every project team member use the exact same disk path to our project so I do not like this approach either.
    Any suggestions?

    As a best-practice for creating projects for version control, the jar files should be added as jars and not in a library unless the library points to jars that are at a common location on the network. You can add a directory to your project from the "files" tab called something like "projectlibs". Then add the 3rd party jar files here. When you add the jar to the project, make sure you check the "package" column which tells Creator to package the jar with the deployment.
    Cheers!
    -David

  • Cannot do MIGO in Third Party Sales Process with shipping notification

    In the Third party sales process with Shipping notification,the item category for the material is TAS (Billing relevance=R),item category group is BANS.
    Intially sales order is created,then using me21n with reference to purchase requisation purchase order is created,then in MIGO stage i used the PO No there but i get the message no item found in PO.
    what adjustment have to be done in order to do MIGO

    Refer following SDN thread, by that you will be able to get overview on best practices about Third Party Sales & necessary configuration you need to follow for statistical GR:
    - Third party direct shipment (II)
    Further maintain Billing Relevance for Item Category as G - Order-related billing of the delivery quantity.
    Regards
    JP

  • Oracle SQL Developer 1.2  has not Third Party Connection Options?

    I downloaded SQL Developer 1.2 and i try to create a sql server connection, but have problems with jdbc drivers. The documentation refer to :
    1. In SQL Developer choose Tools -> Preferences...
    2. Expand the "Database" option in the left hand tree
    3. Click on "Third Party JDBC Drivers"
    4. Click on "Add Entry..."
    5. Navigate to your third party driver jar file and choose OK
    This option is not.
    I need help...
    Thank you.

    Only if try to access <PL/SQL Compiler Options> and <PL/SQL Debugger>.
    See in the following blocks.
    PL/SQL Compiler Options
    Error Details
    [java.lang.NullPointerException
         at oracle.dbtools.raptor.config.PlSqlCompilerOptionsPanel.onEntry(PlSqlCompilerOptionsPanel.java:35)
         at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:921)
         at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:894)
         at oracle.ide.panels.MDDPanel.mav$enterTraversable(MDDPanel.java:104)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1343)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1211)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1205)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:202)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:795)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:580)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:571)
         at oracle.ide.controller.IdeAction$2.run(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:823)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:521)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)]
    PL/SQL Debugger
    Error Details
    [java.lang.NullPointerException
         at oracle.dbtools.raptor.config.PlSqlCompilerOptionsPanel.onExit(PlSqlCompilerOptionsPanel.java:41)
         at oracle.ide.panels.MDDPanel.exitTraversable(MDDPanel.java:972)
         at oracle.ide.panels.MDDPanel.mav$exitTraversable(MDDPanel.java:104)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1267)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1211)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1205)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:202)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:795)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:580)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:571)
         at oracle.ide.controller.IdeAction$2.run(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:823)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:521)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)]

  • IC WebClient Connectivity with ICI and Third Party Solution (Genesys)

    <b>Hi Techies,
                 Can any body give the information about the IC WebClient Connectivity with ICI and Third Party Solution (Especially Chat and Mail Configuration with Web Client in CRM). We are using CRM 5.0 server with Java+Abap Engine.  I need configuration for Web Client Genesys(Third Party) with ICI configuration.  I dont have idea regarding this. I 've little idea on Business Communication Broker.  Can any help me out in this regard.   Thanks in an advance. If u have any document it can be acceptable.
    Regds,</b>
    Govinda
    [email protected]

    We are looking for a site to site model. I want all the devices on the remote network to be on their own subnet. We need to be able to hit individual remote devices from the head end. The devices at the remote site in turn also need to be able to communicate with each other without having to use the VPN.

  • Paging Third Party SIP Phones connected to CUCM

    Current SetUp: CUCM - Cisco 3925, Two MCS 7816 (Call Control Server) and One MCS 7825 (Voice mail server)
    We have third party SIP phones configured in auto answer mode. These phones are used to make live announcements.
    To Do:
    There are approximately 80 phones in the system and the requirement is to select any combination of these phones to make Public announcement (or Paging).
    Is there an application that enables us to select any combination of phones on the fly to do paging? How can we select a mp3 file to play on a phone in an auto answer mode?
    Any help will be appreciated.
    Thanks
    Sid

    There's nothing built into call manager to do this.  You could investigate using the Cisco Unified Application Environment (CUAE) and write a script to do this, or there are some 3rd party applications that might work for you such as Berbee's Informacast.

  • Problem creating a EJB from third party into NWDS

    Hi everybody:
    I´m trying to create a EJB from a third party software (jar file). I imported the jar file into my EJB Module (Properties->Java Build Path->Library), selected the EJB candidate and wrote the ejb-jar.xml according to the vendor's instructions in order to define home and remote interfaces.
    When I deploy my application (containing the EJB Module), I got this error from the server:
    java.rmi.RemoteException: Cannot deploy application sap.com/TestEjbApp.. Reason: Incorrect application sap.com/TestEjbApp:Bean AccountLocateBean: the ejb-class must implement, directly or indirectly, the javax.ejb.SessionBean interface. EJB specification 7.10.2.; nested exception is: com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect application sap.com/OlivierTestEjbApp:Bean AccountLocateBean: the ejb-class must implement, directly or indirectly, the javax.ejb.SessionBean interface. EJB specification 7.10.2.
    at com.sap.engine.services.ejb.deploy.verifier.Verifier.check(Verifier.java:66)
    at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:253)
    at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2133)
    I used the same jar in another application server (Sun Open), mounted teh EJB and it ran perfect. Additionally I checked the class and it has the correct "implements javax.ejb.SessionBean" statement in the code.
    Do you have any idea about it?
    Thanks
    Regards
    Olivier
    Message was edited by: Olivier Franco

    Hi Amol:
    Thanks for your answer, Let me explain a little more what I'm doing:
    The third party software is a jar file that contains three classes:
    com.account.AccountLocateSessionBean (Remote Interface)
    com.account.AccountLocateSessionBeanHome (Home Interface)
    com.account.AccountLocateBean (EJB class)
    This 3 classes are EJB 2.0 complaint and were tested in other J2EE container (Sun Open). I want to deploy this EJB into SAP Was J2EE 6.40 server (SP14). In my last post I wrote what I did in order to create de ejb-jar.xml into NWDS. This file looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
                             "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
        <description>EJB JAR description</description>
        <display-name>EJB JAR</display-name>
        <enterprise-beans>
            <session>
                <ejb-name>AccountLocateBean</ejb-name>
                <home>com.account.AccountLocateSessionBeanHome</home>
                <remote>com.account.AccountLocateSessionBean</remote>
                <ejb-class>com.account.AccountLocateBean</ejb-class>
                <session-type>Stateless</session-type>
                <transaction-type>Container</transaction-type>
            </session>
        </enterprise-beans>
    </ejb-jar>
    Then, when I build the ear file (This is a Enterprise application that contains my EJB Module) and try to deploy this ear file into SAP Was J2EE 6.40 server (SP14) I got the exception wrote in my last post.
    Thanks for your help
    Regards
    Olivier

  • THird party sales complete scenario

    Can any one send me the configuration details of Third party order.
    Regards,
    Rajneesh

    Hi,
    Please find the configurationsetting and reward point.
    è     Based on the purchase order sent by the customer, SD department will raise a sales order.
    è     Based on the general item category group of material entered by the system, the system will come to know that the material is a third party material.
    ·     General Item Category Group (BANS)
    ·     Item Category (TAS)
    ·     Schedule line Category (CS)
    è     Based on the settings done for CS the system will automatically raise a Purchase Requisition and sends it to External Vendors.
    è     Now MM Department based on the Purchase Requisition will raise Purchase Order and sends it to External Vendor
    è     Now the Vendor will deliver the goods to the Customer and at the same time will send an Invoice to MM Dept.
    è     As Physical goods received is by the customer and not by MM Dept, so Statistical goods receipt is done by MM for Document Purpose
    è     Then Customer sends the Proof of Delivery (PoD) to the Company
    è     MM dept compares the quantity received by the customer based on the PoD and the Corresponding Invoice received from the Vendor (Logistic Invoice Verification)
    è     Now finally SD Dept send an invoice to the customer (Order Related Billing)
    Note: In TAS category Billing Field is u2018Fu2019, which is billed for target quantity.
    Third Party order process configuration
    Step 1: Creation of material
    Go for the SALES : SALES ORG 2 . view and give the BANS
    Step 2 : Item Category  TAS setting  T.Code: VOV7.
    Billing Relevance :F:     Order-related billing doc. - status according to invoice qty
    Step 3: Schedule line Category CS setting.
    Settings are      1.Order type: NB:
              2. Item Category: 5
              3. Acc. Assign. Cat 1:
    Step 4:  create a sales order
    The sales order will pick up the item category: TAS
    The item category TAS is picked because of the configuration done in the material master. Item category group BANS.
    The schedule line category is CS.
    Standard Order 43 11528 has been saved
    Step 5:
    Go for change mode of sales order (VA02). Select schedule line icon, in the new
    Screen selects the procurement tab page. Note the purchase requisition and save.
    Step 6: Create A purchase order ( Me21n). based on the purchase requisition.
    in the above screen select the document overview on buttion. U will find the below screen.
    when u select the variants , list will be displayed. In that select purchase requisitions, again a list will displayed of purchase requisition , select your purchase requisition and drag and drop in the net obove
    When you drop the PR automatically the data will be picked up for the PR to PO and then save the PO.
    Standard PO created under the number 4500017018
    Step 7: now mm create a invoice base on the po: ( MIRO)
    Post invoice
    Document no. 5105608630 created
    Invoice posting document
    Step 8: Now create a billing vf01
    In this billing document give the order no. it is order related billing.
    Billing document generated based on the invoice posting
    Document 90035796 has been saved
    Accounting document      
    thansk
    Kuntla

  • Connecting to third party JMS Queue using Patchbay

    Hi All,
    We are trying to connect to a third party JMS queue configured in a remote weblogic server using ATG patcbay. We have configured the provider in dynamoMessagingSystem.xml and created a InitialContextFactory and provided all the queue configurations.
    When it tries to initializes it is trying to create a dynamic queue and saying that JMSHelper class is not configured so that it cannot create the queue (The queue exists in the remote server). When we given configurations based on the details available under C:\ATG\ATG10.0.3\WebLogic\JMSProvider, it is saying that we have to provide a TopicConnectionFactory (We dont need to use any Topics). If we provide TopicConnectionFactory then it will say that your connection factory don't have any Topics configured.
    I have read that for configuring with your application server's queue, this will try creating dynamic queues, but nowhere it is mentioned that how it will differentiate it is a third party queue or an application server queue.
    In our case the application server and the remote server which acts as queue server are Weblogic.
    Not sure why this is behaving like this and there is no proper documentation available in ATG that how to configure the third party queues using Patchbay.
    Any pointers regarding this would be of great help.
    Thanks,
    R.

    Hello kilgores. Welcome to the Apple Discussions!
    Something to ask your IT staff is if they use a proxy server for Internet access. If so, do they require proxy configuration scripts (.pac) to provide access to the Internet through your company's firewall. This information would normally be added to your browser's settings.
    For Safari: Preferences... > Advanced > Proxies > Change Settings... > Automatic Proxy Configuration

Maybe you are looking for

  • How to print hardcode text in alv

    hi folks, i am working on a report to display data using ALV. i want to print some text and its correspodning value. (corresponding value is calculated value). i am able to print calculated value using fieldcatalog but unable to understand how can i

  • Copy data from one SAP system to another based on conversion rules

    Hi All, Please provide your input on how can we copy data from one SAP system to another based on conversion rules. Conversion rule : vkrog in 110  vkorrg in 120 1234            4567    <<text removed>> Thanks Edited by: Matt on Feb 16, 2009 4:35 PM

  • Stream live video - use http or rtmp protocols from player code?

    I'm trying to stream live video for the first time. I've installed FMIS 3.5 without Apache 2.2. I'm confused on the RTMP/HTTP protocol usage, I can only have port 80 opened on our FMIS 3.5 box. 1. I've created a new directory under "C:\Program Files\

  • Multiple transports in Code Inspector object set

    I'd like to be able to put a Code Inspector object set together with multiple transports and my current version (46c)only supports a single input.  Anyone know how to input multiple transports? Tim Barrow ADP

  • GetMicrophone from TV Tuner

    Hi, I have a TV Tuner attached to my computer, when I do getCamera, no problem, I get the video from my TV. But, when I do get getMicrophone, nothing happens, although when I try to use another app I can hear the audio. What am I doing wrong? Here is