The documentation for the Payroll APIs

Hello,
I would be grateful if somebody tells me the URL of the Payroll APIs technical documentation (that contains examples, etc). I searched in Metalink , eTRM and internet but did not find it.
Thank you

Check these -
http://irep.oracle.com/index.html
http://irep11i10.oracle.com/OA_HTML/OA.jsp?page=%2Foracle%2Fapps%2Ffnd%2Frep%2Fwebui%2FInterfacesBrowsePG
http://irep11i10.oracle.com/OA_HTML/OA.jsp?page=%2Foracle%2Fapps%2Ffnd%2Frep%2Fwebui%2FInterfacesBrowsePG&_ti=348161785&oapc=3&oas=8iQGFG9ksNZ3PHfFj0C-3Q..
Cheers,
VB
Edited by: VB on Sep 25, 2011 1:01 PM

Similar Messages

  • Documentation for Service Contract API

    Hi All,
    Sub: Any Documentation For The Public API's OKS_CONTRACTS_PUB,
    OKC_CONTRACTS_PUB.
    Firstly i would like to say Thank You for spending your valuable time for this Query.
    Introduction:
    Currently i am working in Oracle Service Contracts module, which is Oracle
    Application's CRM module.
    Specifications:
    oracle application version: 11.5.10.2
    Data Base version: oracle 9.2.0.6
    Problem:
    We are trying to integrate the Service Contracts through following Public API's
    with web.
    API's are:
    OKS_CONTRACTS_PUB,
    OKC_CONTRACTS_PUB.
    I search so much to the documentation for these API's, but i did not get any thing.
    I search in Oracle Meta Link, Google.
    Could you help If any Documentation If you find (or) you have ?
    Please forward to:
    [email protected]
    [email protected]
    Any help from your side will appreciate.
    Thank you.
    Regards,
    Sai Krishna @cavaya

    Look at this link you will be able to get some information about the Api
    http://mywebpages.comcast.net/muzaffarl/whitepaper/02d.pdf
    If you find any document regarding this Api other than this kindly let me know.

  • Where is the WLSTUtil API documentation

    I've been playing around with Python/Jython and WLST.
    But I cannot seem to find the API for the WLST commands.
    I can get code completion in eclipse that gives me all the possible commands for a certain variable for a dataSource say. But where are the commands/API of each Jython class that WLST defines, documented?
    For instance, if I run a configToScript, I get a script that has the following lines:
    jdbcSR = create(dsName,"JDBCSystemResource")
    theJDBCResource = jdbcSR.getJDBCResource()
    theJDBCResource.setName(dsName)
    And in eclipse, theJDBCResource code completion shows me the methods on that member variable. But where is the documentation for that jython class.
    I looked here (http://download.oracle.com/docs/cd/E13222_01/wls/docs92/javadocs/index.html?weblogic/deploy/api/spi/WebLogicDeploymentManager.html) but that again does not contain the WLSTUtil class.
    BTW: I ran writeToIniFile and got:
    from weblogic.management.scripting.utils import WLSTUtil
    import sys
    origPrompt = sys.ps1
    theInterpreter = WLSTUtil.ensureInterpreter();
    WLSTUtil.ensureWLCtx(theInterpreter)
    execfile(WLSTUtil.getWLSTScriptPath())
    execfile(WLSTUtil.getOfflineWLSTScriptPath())
    exec(WLSTUtil.getOfflineWLSTScriptForModule())
    execfile(WLSTUtil.getWLSTCommonModulePath())
    theInterpreter = None
    sys.ps1 = origPrompt
    modules = WLSTUtil.getWLSTModules()
    for mods in modules:
    execfile(mods.getAbsolutePath())
    wlstPrompt = "false"
    ~
    That tells me that all the jython classes are in WLSTUtl class. Just need to get at the javadoc for it.
    The weblogic.management.scripting.utils package does not contain WLSTUtil as expected.
    Thanks
    Pankaj
    Edited by: [email protected] on Sep 28, 2009 8:42 AM
    Edited by: [email protected] on Sep 28, 2009 8:43 AM

    i couldn't find the api either however if you implement the class you will simply get compiler errors explaining what you left out.

  • Enabling Profiling for deployments via the REST API

    We have an application which is being deployed via the REST API. Our logging has captured some errors related to memory consumption that we'd like to examine using profiling. All the examples of profiling in Azure that I can find discuss deployment via Visual
    Studio which is not feasible in this instance.
    Is there a way to enable profiling via the REST API and if so are there any examples or documentation for this? We're using Linq2Azure to access the APIs but we can extend it if necessary.
    Thanks
    Colin

    Hi,
    Yes, we can choose enable profiling when we publish an application via visual studio, from my experience, this feature was provided by using the Visual Studio profiler, if we didn’t use visual studio to deploy the application, it is hard to enable profiling.
    Refer to
    http://msdn.microsoft.com/en-us/library/windowsazure/hh369930.aspx#BK_ProfilingCloudService for more information.
    Best Regards

  • Callback Functions for the Enterprise API

    I'm using VB to write some API functions to pull journal detail from Enterprise 6.0, but having trouble with the callbacks. I did find some syntax errors in the toolkit.bas file, correct those and am able to pull specific data points, but the enum functions just crash. Because the documentation is scetchy at best, I'm not sure if my functions are wrong, if there are other syntax errors in the .bas file or if the dll's are corrupt.<BR><BR>I'd really appreciate some help from someone who has experience writing callback functions to the Enterprise API.<BR><BR>Thanks in advance.

    Hey there...
    I think part (if not all) of your question can be answered by abstracting it a level. Think of all the tools that are available through PL/SQL or JAVA in the database. For instance...
    * Heterogeneous Services that allow you to access any ODBC/JDBC data source directly from within the Oracle database.
    * DBMS_JOB that allows the scheduling of jobs to run at a given time/interval.
    * DMBS_FILE_UTL that allows Oracle to interact with the file system.
    That doesn't even take into account the things you can do with Java in the database.
    In short, just about everything you mentioned can be done in one shape or form with tools that reside in or around the oracle database.
    HTMLDB is a front end interface tool that has access to all of the tools available to you at database level.
    So in short (and in my opinion): Yes, it is capable of creating Enterprise level applications. I'm building a fairly complex one right now that interfaces with 2 external (non-oracle) databases via Heterogeneous services, and which used DBMS_JOB to schedule jobs to collate data from an external file system.
    I hope this helps..
    Doug Gault
    TXI

  • Implementation-specific documentation for the Sun/Oracle Java SE ?

    Hi,
    Some places in the Java SE API specification call for platform-specific documentation. For example, the specification of the method await of class java.util.concurrent.locks.Condition says:
    "Implementation Considerations
    The current thread is assumed to hold the lock associated with this Condition when this method is called. It is up to the implementation to determine if this is the case and if not, how to respond. Typically, an exception will be thrown (such as IllegalMonitorStateException) and the implementation must document that fact. "
    So, implementation-specific documentation is expected to exist in addition to the API specification documentation. Sure, sentences beginning with "Typically..." suggest that that is what the Sun/Oracle reference implementation does, so the behavior of Sun/Oracle implementation can be guessed in many cases... yet sometimes troubling uncertainty remains.
    If implementation-specific documentation for the implementation exists, please let me know.
    I apologize if I chose an inappropriate forum for this question, but there seems to be no forum for discussing documentation arrangements.

    If you want to look at the implementation sepcific documentation, the best place to look is the source.
    The reason the docuementation is written generically is because they want you to write portable code, rather than rely on the specific implementation detail of the one you are using.
    Even if you don't intend to use another vendor, you might want to upgrade in the future and Java 7 or 8 many change its implementations provided it meets the specification.

  • Where are the JavaDocs for the Thor.API.Operations.XXClient classes?

    I am not seeing any of the JavaDocs for the actual Client classes that should be available for use in OIM. The Interfaces are nice but without documentation of the Client classes we are left to guess how to use the Interfaces.
    Has anyone developed some guidelines on how to use the ReportOperationsClient class? I did the following:
    Defined all of the inputs for the ReportInput class constructor.
    Created the ReportInput instance with these inputs.
    Set the stored procedure name.
    Created an instance of ReportOperationsClient
    Called getPagedReportData with my ReportInput instance.
    No luck.

    Martin,
    I am aware of the documentation location and am looking at the Thor.API.Operations JavaDocs right now.
    The Intf Interfaces are all there but there are no JavaDocs for the Clients.
    Here is the listing from the JavaDocs:
    Interface Hierarchy
    Thor.API.Operations.AttestationDefinitionOperationsIntf
    Thor.API.Operations.AttestationOperationsIntf
    Thor.API.Operations.ConnectorInstallationOperationsIntf
    Thor.API.Operations.ErrorOperationsIntf
    Thor.API.Operations.GCOperationsIntf
    Thor.API.Operations.RemoteManagerOperationsIntf
    Thor.API.Operations.ReportOperationsIntf
    Thor.API.Operations.TaskDefinitionOperationsIntf
    Thor.API.Operations.tcAccessPolicyOperationsIntf
    Thor.API.Operations.tcAdapterOperationsIntf
    Thor.API.Operations.tcAuditOperationsIntf
    Thor.API.Operations.tcDeploymentUtilityOperationsIntf
    Thor.API.Operations.tcEmailOperationsIntf
    Thor.API.Operations.tcEntitlementsOperationsIntf
    Thor.API.Operations.tcExportOperationsIntf
    Thor.API.Operations.tcFormDefinitionOperationsIntf
    Thor.API.Operations.tcFormInstanceOperationsIntf
    Thor.API.Operations.tcGroupOperationsIntf
    Thor.API.Operations.tcHelpOperationsIntf
    Thor.API.Operations.tcImportOperationsIntf
    Thor.API.Operations.tcITResourceDefinitionOperationsIntf
    Thor.API.Operations.tcITResourceInstanceOperationsIntf
    Thor.API.Operations.tcLocationOperationsIntf
    Thor.API.Operations.tcLookupOperationsIntf
    Thor.API.Operations.tcObjectOperationsIntf
    Thor.API.Operations.tcOrganizationOperationsIntf
    Thor.API.Operations.tcPasswordOperationsIntf
    Thor.API.Operations.tcPermissionOperationsIntf
    Thor.API.Operations.tcPropertyOperationsIntf
    Thor.API.Operations.tcProvisioningOperationsIntf
    Thor.API.Operations.tcQueueOperationsIntf
    Thor.API.Operations.tcReconciliationOperationsIntf
    Thor.API.Operations.tcRequestOperationsIntf
    Thor.API.Operations.tcRulesOperationsIntf
    Thor.API.Operations.tcSchedulerOperationsIntf
    Thor.API.Operations.tcUserOperationsIntf
    Thor.API.Operations.tcWorkflowDefinitionOperationsIntf
    Here is a listing from the Jar file:
    [bea@xxxxxxxxx lib]$ jar tf xlAPI.jar | grep Thor | grep API | grep Operations
    Thor/API/Operations/
    Thor/API/Base/tcUtilityOperationsIntf.class
    Thor/API/Operations/AttestationDefinitionOperationsClient.class
    Thor/API/Operations/AttestationDefinitionOperationsIntf.class
    Thor/API/Operations/AttestationOperationsClient.class
    Thor/API/Operations/AttestationOperationsIntf.class
    Thor/API/Operations/ConnectorInstallationOperationsClient.class
    Thor/API/Operations/ConnectorInstallationOperationsIntf.class
    Thor/API/Operations/ErrorOperationsClient.class
    Thor/API/Operations/ErrorOperationsIntf.class
    Thor/API/Operations/GCOperationsClient.class
    Thor/API/Operations/GCOperationsIntf.class
    Thor/API/Operations/RemoteManagerOperationsClient.class
    Thor/API/Operations/RemoteManagerOperationsIntf.class
    Thor/API/Operations/ReportOperationsClient.class
    Thor/API/Operations/ReportOperationsIntf.class
    Thor/API/Operations/TaskDefinitionOperationsClient.class
    Thor/API/Operations/TaskDefinitionOperationsIntf.class
    Thor/API/Operations/tcAccessPolicyOperationsClient.class
    Thor/API/Operations/tcAccessPolicyOperationsIntf.class
    Thor/API/Operations/tcAdapterOperationsClient.class
    Thor/API/Operations/tcAdapterOperationsIntf.class
    Thor/API/Operations/tcAuditOperationsClient.class
    Thor/API/Operations/tcAuditOperationsIntf.class
    Thor/API/Operations/tcDeploymentUtilityOperationsClient.class
    Thor/API/Operations/tcDeploymentUtilityOperationsIntf.class
    Thor/API/Operations/tcEmailOperationsClient.class
    Thor/API/Operations/tcEmailOperationsIntf.class
    Thor/API/Operations/tcEntitlementsOperationsClient.class
    Thor/API/Operations/tcEntitlementsOperationsIntf.class
    Thor/API/Operations/tcExportOperationsClient.class
    Thor/API/Operations/tcExportOperationsIntf.class
    Thor/API/Operations/tcFormDefinitionOperationsClient.class
    Thor/API/Operations/tcFormDefinitionOperationsIntf.class
    Thor/API/Operations/tcFormInstanceOperationsClient.class
    Thor/API/Operations/tcFormInstanceOperationsIntf.class
    Thor/API/Operations/tcGroupOperationsClient.class
    Thor/API/Operations/tcGroupOperationsIntf.class
    Thor/API/Operations/tcHelpOperationsClient.class
    Thor/API/Operations/tcHelpOperationsIntf.class
    Thor/API/Operations/tcITResourceDefinitionOperationsClient.class
    Thor/API/Operations/tcITResourceDefinitionOperationsIntf.class
    Thor/API/Operations/tcITResourceInstanceOperationsClient.class
    Thor/API/Operations/tcITResourceInstanceOperationsIntf.class
    Thor/API/Operations/tcImportOperationsClient.class
    Thor/API/Operations/tcImportOperationsIntf.class
    Thor/API/Operations/tcLocationOperationsClient.class
    Thor/API/Operations/tcLocationOperationsIntf.class
    Thor/API/Operations/tcLookupOperationsClient.class
    Thor/API/Operations/tcLookupOperationsIntf.class
    Thor/API/Operations/tcObjectOperationsClient.class
    Thor/API/Operations/tcObjectOperationsIntf.class
    Thor/API/Operations/tcOrganizationOperationsClient.class
    Thor/API/Operations/tcOrganizationOperationsIntf.class
    Thor/API/Operations/tcPasswordOperationsClient.class
    Thor/API/Operations/tcPasswordOperationsIntf.class
    Thor/API/Operations/tcPermissionOperationsClient.class
    Thor/API/Operations/tcPermissionOperationsIntf.class
    Thor/API/Operations/tcPropertyOperationsClient.class
    Thor/API/Operations/tcPropertyOperationsIntf.class
    Thor/API/Operations/tcProvisioningOperationsClient.class
    Thor/API/Operations/tcProvisioningOperationsIntf.class
    Thor/API/Operations/tcQueueOperationsClient.class
    Thor/API/Operations/tcQueueOperationsIntf.class
    Thor/API/Operations/tcReconciliationOperationsClient.class
    Thor/API/Operations/tcReconciliationOperationsIntf.class
    Thor/API/Operations/tcRequestOperationsClient.class
    Thor/API/Operations/tcRequestOperationsIntf.class
    Thor/API/Operations/tcRulesOperationsClient.class
    Thor/API/Operations/tcRulesOperationsIntf.class
    Thor/API/Operations/tcScheduleTaskOperationsClient.class
    Thor/API/Operations/tcScheduleTaskOperationsIntf.class
    Thor/API/Operations/tcSchedulerOperationsClient.class
    Thor/API/Operations/tcSchedulerOperationsIntf.class
    Thor/API/Operations/tcUserOperationsClient.class
    Thor/API/Operations/tcUserOperationsIntf.class
    Thor/API/Operations/tcWorkflowDefinitionOperationsClient.class
    Thor/API/Operations/tcWorkflowDefinitionOperationsIntf.class
    As I described in my original post, and as you can plainly see, there is a Client class that is the "worker" class for each of the Interfaces. Without these worker classes, we would be at our own devices to determine how to implement these Interfaces, so I am thankful they are being provided, but the issue is that I am needing documentation for them, since specifically the ReportOperationsClient does not seem to work based on my interpretation of the Interface.
    Thanks for your interest. If the source code for the Operations Clients does not have embedded JavaDocs, that would explain the issue. In that case I would need to have the source code so I can troubleshoot the issues I am having with this class. I opened an SR Friday but have not had any response yet.

  • PA-US  Where to find the documentation for renumeration type?

    Gurus,
    Where to find the documentation for renumeration type details for IT0008 in SAP Library?
    I tried in HR sections under ERP of SAP Library, but could not find the place.
    Thanks,

    Revathi,
    I see an option to change the enum type in IT0008 maintenance screen.
    Which simply changes section of the screen as "salary" to "pay scale" and vice versa.
    I want to understand the difference between those in terms of payroll process (calculations).
    Hence, I was trying to find documentation in this regard in SAP Library.
    Thanks,

  • Were is the "old" api documentation?

    Does anybody know were sun keeps the "old" api documentation. I really need the JSDK 2.0 documentation but cannot seem to find it.
    Thanx!
    Jasper.

    ...sorry, no it's not there:
    I am looking for the JSDK (Java Server Development Kit, that's what it was called back then) version 2.0. The closest I've come so far is at the archive (http://java.sun.com/products/archive/index.html) where JDK's as far back as 1.0.2 can be found, but I need the documentation for the javax.servlet and related packages, classes etc. which I can't find.
    So, again (maybe someone @ Sun knows where to look) where is the JSDK 2.0 documentation?
    Jasper.

  • Making the doc.bat to create the documentation for classes & Tests

    Hello
    I have created a file called "documentation.bat" to created the documentation in html for my src and test classes.
    I havent got any problem to do it for my classes, but i also want to do it for my Tests and i dont know how to put it in the same .bat file
    To create documentation for the classes i use this:
    set CLASSPATH=.\sources;.\lib\cacheLRU-lib-1.1.jar;.\tests
    javadoc -d .\doc -linkoffline http://java.sun.com/j2se/1.5.0/doc/api .\doc -sourcepath sources -author -subpackages es.ubu.lsi.cacheLRU.controladorTo create documentation for the Tests classes i was using this, that show my decents for warnings :S :
    set CLASSPATH=.\sources;.\lib\cacheLRU-lib-1.1.jar;.\tests
    javadoc -d .\doc -linkoffline http://java.sun.com/j2se/1.5.0/doc/api .\doc -sourcepath sources;tests -author -subpackages es.ubu.lsi.cacheLRU.controlador es.ubu.lsi.cacheLRU.testsWhats the problem in the second code?
    How to put two folders and two packages to do it?
    Lots of thanks, sry for my language :S

    Try generating just to Word and then creating the PDF from
    there. There is a known problem which affects some users but not
    others. Cause not known.

  • How to retrieve all the tasks for a UserView with the worklist api 10.1.3.1

    Hi,
    I have defined a custom view for user jcooper. The view just displays all the current uncompleted tasks for jcooper.
    I want to use the worklist api to retrieve all the tasks in the view. I first tried it with the following function call:
    taskQueryService.queryViewTasks(workflowContext,viewName, null, null, 0, 0);
    assuming that the viewId in the corresponding java-doc corresponds to the name of the view..However this doesn't work and the method returns a null reference. So viewId is something different than a viewName. Because I cannot find the corresponding viewId for my view (not looked in the db yet, but I don't want to use these ids in my app), I tried the method:
    client.getUserMetadataService().getUserTaskViewList(workflowContext, Partcipant participant);
    However I did not find a method to retrieve a Partipant instance for jcooper in the worklflow api documentation.
    My question now is if someone can help me out to retrieve all the tasks for a specific view. I should be possible I think...
    Thanks!
    Kind regards,
    -Tom

    The second argument (Participant) was added to handle the use case where one user such as an admin or manager needs to retrieve user metadata of another user (offcourse with the required security checks). We will try to do a future enhancement such that if the pariticipant is passed as null then we will assume the metadata is to be retrieved for the workflow context user.
    For now you can define a simple method to create a participant from a workflow context as follows and pass this as an argument to the UserMetadataService call:
    private Participant createParticipant(workflowContext)
    Participant participant = new oracle.bpel.services.workflow.common.model.ObjectFactory().createParticipant();
    participant.setName(workflowContext.getUser();
    participant.setRealm("jazn.com");
    participant.setType("USER");
    return participant;
    // code to retrieve task list...
    UserViewList views = client.getUserMetadataService().getUserTaskViewList(
    workflowContext, createParticipant(workflowContext))
    ...

  • Which is the best API for creating restful web services.

    Hi guys,
    I have tried a lot of apis to create a restful web service. But none of them has perfect documentation or examples. Which is the best one that has good support and future.

    "Best" automatically implies opinions and speculation; one I personally believe has a bright future is Jersey. Jersey is the reference implementation (RI) for [JSR-311|http://jcp.org/en/jsr/detail?id=311] ("The Java API for RESTful Web Services" or JAX-RS).

  • Why is the checkBandwidth() API so likely to show 0 Kbps / erratic readings for bandwidth?

    Last week I stumbled across the checkBandwidth() API between FMS/AMS and clients: http://help.adobe.com/en_US/FlashMediaServer/3.5_Deving/WS5b3ccc516d4fbf351e63e3d11a0773d5 6e-7ffa.html
    When I tried this out with apps that basically just do nothing but poll that, I get erratic readings all the time.  This is between different clients, different networks, and different versions of FMS/AMS.  The documentation for AMS 5.0 isn't even much different from the documentation for FMS 3.5, which was in that link above.  The readings tend to come back saying anything at all between 0 and maybe 140,000 Kbps, constantly changing from one extreme to the other, and to everything in between.  Sometimes they'll just sit at 0, when I know they have very good, very stable upload and download speeds and are able to communicate with the FMS quite well.  This is wrong behavior.
    I would just write this off as something that just doesn't work, but like I said, the documentation between FMS 3.5 and AMS 5.0 is very similar, and we've actually tested this with FMS 4.0, FMS 4.5, and AMS 5.0.  If it were a piece of API that just so blatantly refused to work, my hope would be that Adobe would either abandon it or fix it.
    We're not doing anything complex at all here. We use the API exactly as is documented, and we have a timer that will put in a two delay after getting results back, then make another call.  Is there something more to the story?

    Not sure the issue would manifest in this way but are you aware of the RTMFP over P2P issues in FP 11.9 and 12.0 on IE?
    http://helpx.adobe.com/en/flash-player/release-note/fp_12_air_4_release_notes.html#known_i ssues

  • Help/Example needed for creating JMSQueues/JMSTopics using the MBean API

    I am trying to create JMSQueues programmatically using the MBean API. When
    I use MBeanHome.createAdminMBean(), a queue appears in the root of the
    config file. This is progress, but the queue is in the wrong place! I need
    the queues to be part of my JMS server's "destinations" as seen on the
    console.
    So now I am trying to use createConfigurationMBean() instead, but I can't
    figure out what the "parent" parameter should be- no documentation! My
    first guess was that the parent might be the JMSServer, but that doesn't
    work.
    Anyone have example code to insert JMSQueues and JMSTopics into a specific
    JMS server's destinations?
    Here is the code I tried... All goes well until the final
    createConfigurationMBean call, where it throws a MBeanCreationException:
    // Get the MBeanHome bean
    Object obj = jndiContext.lookup("weblogic.management.adminhome");
    MBeanHome mbeanhome = (MBeanHome) javax.rmi.PortableRemoteObject.narrow
    (obj, MBeanHome.class);
    // Get the server MBean
    JMSServerMBean jmsServerMB =
    (JMSServerMBean)mbeanhome.getMBean("examplesJMSServer",
    JMSServerMBean.class);
    // Create the new Queue
    JMSQueueMBean jmsQMB = (JMSQueueMBean)mbeanhome.createConfigurationMBean
    ("weblogic.examples.jms.fooQueue", "JMSQueue", jmsServerMB);

    Ok, I still don't see how I can do it differently with the admin tool. If
    you want to see the commands I'm using, I can post them, but the basic one
    is shown below in the previous message. We're trying to set up a script so
    that developers can just run it and properly configure WebLogic with the
    right components.
    Thanks,
    Michelle
    "Michelle Baxter" <[email protected]> wrote in message
    news:[email protected]...
    I am using the weblogic.Admin tool, not doing this in code. I will attempt
    to translate your advice when I get time again.
    My commands look like this:
    java weblogic.Admin -url 127.0.0.1:7001 -username system -passwordweblogic
    CREATE -mbean "mydomain:Type=JMSQueue,Name=MyJMSQueue"
    I create this, I create the JMSServer MBean, then do and INVOKE (insteadof
    CREATE) and call the addDestination method, adding the JMS Queue MBeanthat
    I created previously, using the same naming scheme as in the above CREATE.
    "Viresh Garg" <[email protected]> wrote in message
    news:[email protected]...
    Daron Cole wrote:
    You can use createConfigurationMBean with JMSQueueConfig but in the
    end
    I used
    the code below to create a topic.The code that you posted is the right way to create queus/topics. alwayscreate admin mbeans to admin
    server and let admin server internally create config Mbeans on the
    managed
    server as per the
    location/targets that you set in admin Mbeans.
    Queue's are the same, just replace the word
    Topic with Queue and it should work. It should show up in the console
    app.
    MBeanHome home = (MBeanHome)ctx.lookup(MBeanHome.JNDI_NAME+".myserver");
    ServerMBean myserver =(ServerMBean)home.getMBean("myserver",ServerMBean.class);
    String topicName = "MyNewTopic";
    JMSServerMBean jmsServerMB =(JMSServerMBean)home.getMBean("JMSServer","JMSServer","mydomain");
    JMSTopicMBean jmsTopicMB =(JMSTopicMBean)home.createAdminMBean(topicName,"JMSTopic","mydomain");
    jmsTopicMB.setJNDIName(topicName);
    jmsServerMB.addDestination(jmsTopicMB);
    Viresh Garg
    Principal Developer Relations Engineer
    BEA Systems
    "Michelle Baxter" <[email protected]> wrote:
    There is no JMSQueueConfigMBean. What do you mean?
    "Daron Cole" <[email protected]> wrote in message
    news:[email protected]...
    Try JMSQueueConfig instead of JMSQueue.
    "Michelle Baxter" <[email protected]> wrote:
    Me too! I'm trying to use the weblogic.Admin class to set up
    queues
    and
    topics and the JMS server. The same results in the config file:
    the
    queues
    and topic were set up at the root, the JMS server was added, but
    no
    destinations, even though I invoked the addDestination method withthe
    created MBean queues and topic as arguments. No exceptions, just
    no
    destinations on the JMS server resulted. What's the right order ofexecution
    for this stuff??
    Thanks,
    Michelle
    "Jude DeMeis" <[email protected]> wrote in message
    news:[email protected]...
    I am trying to create JMSQueues programmatically using the MBean
    API.
    When
    I use MBeanHome.createAdminMBean(), a queue appears in the root
    of
    the
    config file. This is progress, but the queue is in the wrong
    place!
    I
    need
    the queues to be part of my JMS server's "destinations" as seen
    on
    the
    console.
    So now I am trying to use createConfigurationMBean() instead,
    but
    I
    can't
    figure out what the "parent" parameter should be- no
    documentation!
    My
    first guess was that the parent might be the JMSServer, but that
    doesn't
    work.
    Anyone have example code to insert JMSQueues and JMSTopics intoa
    specific
    JMS server's destinations?
    Here is the code I tried... All goes well until the final
    createConfigurationMBean call, where it throws aMBeanCreationException:
    // Get the MBeanHome bean
    Object obj =
    jndiContext.lookup("weblogic.management.adminhome");
    MBeanHome mbeanhome = (MBeanHome)javax.rmi.PortableRemoteObject.narrow
    (obj, MBeanHome.class);
    // Get the server MBean
    JMSServerMBean jmsServerMB =
    (JMSServerMBean)mbeanhome.getMBean("examplesJMSServer",
    JMSServerMBean.class);
    // Create the new Queue
    JMSQueueMBean jmsQMB =(JMSQueueMBean)mbeanhome.createConfigurationMBean
    ("weblogic.examples.jms.fooQueue", "JMSQueue", jmsServerMB);

  • Create a Navigational Hierarchy for filtering with the Table API

    Hello,
    I've built a WAD report acourding to the how to document: "Create a Navigational Hierarchy for filtering with the Table API".
    It works great but i dont know How to make the hirarchey to show the key and the text.
    Please Advice.
    David

    Hi Kenneth,
    please have a look in the source of the executed Web Application. What is inside of the <div> with the id filter?
    You should also find a td tag with id hier_xyz with xyz the filter inside of the <div>-Tag with id filter.
    Also check whether you have a javascript error.
    Have a look on the Javascript function set_style. Perhaps you can paste it here, than I can have a look.
    Heike

Maybe you are looking for

  • The emergency stop

    Hello, I'm using a PCI-7354 motion control board and a UMI-7774  motion interface. I'm trying to implement an emergency stop button. I think i'm not the first one trying to do this, but i'm a little bit confused about how this is implemented in the N

  • How to get the funds credit with the cancellation of the update for old acc

    i just cancelled my old email and mac.com account. Now here is the question. How can I get the funds refunded back into my checking account when the upgrade made to the old account is now interrupted due to the fact that my previous mac.com is invali

  • Clip Import and Media Manager

    Prior to moving to my MacPro and using Final Cut Pro, I used a PC and Adobe Premiere Pro to capture several reals of tape resulting in over a hundred clips in AVI format. I'd now like to import these clips into FCP to begin actully working on these p

  • Re-Using a business system

    Hi all, I am using a R/3 business system in two scenarios in XI, one R/3 -> XI -> JDBC and one R/3 -> XI -> MDM. However, when I send an IDOC from the R/3, it only goes into the JDBC. How can I 'tell' it which scenario it should use?? Regards, Michae

  • Creation of Dimensions

    Hi .. I am creating dimension for a cube.In this scenerio I struckup because here I am having 30 characterstic each of them are not related to each other in any manner.   How to resolve this issue..?   please help me...! Thanx in advance.