Custom Work Manager not shown in WL Server Admin Console

An application scoped custom work manager is to be configured, for which the files weblogic-application.xml, weblogic-ejb-jar.xml, weblogic.xml have been defined. After it is deployed on the server, custom work manager is not being shown in the list on console -> deployments -> application -> monitoring -> workload.
What could be the reason? Is there something which is missed out?

Hi Justin,
According to the error message and the issue can be caused by the edition of your SSRS is not support for the custom data provider. For example the express edition have limitation support on this:
Features Supported by the Editions of SQL Server 2012 .
If your edition is the supportted edition and the issue can be caused by the custom data provider do not necessarily support all the functionality supplied by Reporting Services data processing extensions. In addition, some OLE DB data providers and ODBC
drivers can be used to author and preview reports, but are not designed to support reports published on a report server. For example, the Microsoft OLE DB Provider for Jet is not supported on the report server. For more information, see
Data Processing Extensions and .NET Framework Data Providers (SSRS).
If you are running on a 32-bit platform, the data provider must be compiled for a 32-bit platform. If you are running on a 64-bit platform, the data provider must be compiled for the 64-bit platform. You cannot use a 32-bit data provider wrapped with 64-bit
interfaces on a 64 bit platform.
More details information:Data Sources Supported by Reporting Services (SSRS)
Similar thread for your reference:
ERROR: An attempt has been made to use a data extension 'SQL' that is not registered for
this report server.
Error when viewing SSRS report with SQL Azure as data source
If you still have any problem, please feel free to ask.
Regards
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • Custom Single Container not showing up in the Admin console

    I developed a custom single container and deployed the java files and xml's successfully.
    But the container doesnt show up in the admin console as a container channel.
    I am not able to add and delete new channels into this container .Can anyone throw light on this issue..
    raj

    I'm seeing the same thing as Simon, I changed the iOS device name in both places on an iOS device and the name in the Intune console is still "iPhone" which is really unhelpful as I'm sure you can imagine.  Is there some other place
    that we should be going to rename devices so they are more easily identifiable in the Intune console?
    Thanks!

  • Can't Find Custom Work Manager For Resource Adapter

    I'm creating an inbound resource adapter and wish to throttle the number of connections via a custom work manager.
    If I understand the BEA docs, I can declare and define a resource adapter's work manager inside of its entry in weblogic-ra.xml .
    For example:
    <?xml version = "1.0"?>
    <weblogic-connector xmlns="http://www.bea.com/ns/weblogic/90">
    <jndi-name>InboundRA</jndi-name>
    <!-- WM declared below -->
    <work-manager>
         <name>CustomWM</name>
         <max-threads-constraint>
    <name>maxthreads</name>
         <count>3</count>
         </max-threads-constraint>
    </work-manager>
    However, upon startup I see :
    <BEA-002919> <Unable to find a WorkManager with name CustomWM . Dispatch policy CustomWM will map to the default WorkManager for the application appsdirCustom_ear> .
    So it uses the default work manager.

    Well, I did it again. Solved my own problem two hours after I posted it. Which, I guess, is better than not solving it.
    I mistakenly thought that the <work-manager> entry in weblogic-ra.xml is a declaration. It is apparently a reference.
    I declared a WorkManager of the same name in the WLS 9 console, restarted the server, and it appears that I am now using the custom work manager.
    The max-threads constraint also works.

  • How to find out Max threads count for Custom Work Manager??

    Hi All,
    How to find out Max threads count for Custom Work Manager??
    I have created 1 WM & targeted it to a cluster of 2 MS. Later I created Max thread Constraint = 300 & assigned that to my WM.
    I need to check how many threads maximum were created by my WM after lets say 1 completed day.
    The idea behind that is to understand if .. 300 is enough or need to increase the same way as we do it for JDBC datasource like.. Active connections Max count.. etc.
    Any Idea?
    regards,
    Tanmay

    Hi Ashish,
    Thanks for your response.
    The monitoring page that you are suggesting does not indicate the max thread count reached for a particular WM.
    For example, If I have Sample WM with 300 Max Thread Constraint, is there a way for me to check how many threads have been used out of 300??
    Any pointers in this regard are appreciated.
    Thanks,
    Tanmay

  • Report Alerts are not shown on crystal server 2011

    Hi,
    I have created alerts on From date and To Date. The alert is shown when the difference between From Date and To Date is more than an year. It is shown properly in the crystal report designer. When I am uploading the same report to the server the alerts are not shown on the server.
    Can someone help me with the same.
    Thanks,
    Simran

    Hi Jawahar,
    I have uploaded the report in CMC using Add--> Local Document.
    For Alerts I have checked the Box 'Enable Alert'. Still I am not getting a Pop Up which I get in the crystal report designer. Is the Alert sent on Crystal Server by email? I have currently selected default setting in Configure Alert Notification.
    Regards,
    Simran

  • Looking up a custom work manager

    Hi All,
    I'm a little stumped with accessing a custom work manager in WLS 9.2. I think I've followed the docs exactly.
    I tried to use the default wm by looking up "java:comp/env/wm/default" and that worked fine. I didn't in any was define that in any config files. I then created 2 custom work managers in weblogic.xml and named them "sync" and "async." In web.xml I added 2 resource refs to those same names, matching the "sync" and "async" names like the docs say. However looking them up by either "java:comp/env/wm/sync" or just "sync" gave me a NameNotFoundException.
    I also tried defining the work managers in weblogic-application.xml and omitting the resource-ref, but that didn't work. I do see the work managers show up in the console. If I define them in weblogic.xml, they show up under the web app and if I define them in weblogic-application.xml, they show up under the app (ear.)
    What step am I missing?
    The instructions I'm using are at the bottom of this page: http://download.oracle.com/docs/cd/E11035_01/wls100/config_wls/self_tuned.html
    thanks
    john

    I got it working. I don't know what I was doing wrong before.
    My weblogic-application.xml contains this:
        <work-manager>
          <name>sync</name>
          <fair-share-request-class>
            <name>half share</name>
            <fair-share>100</fair-share>
          </fair-share-request-class>
        </work-manager>
        <work-manager>
          <name>async</name>
          <fair-share-request-class>
            <name>half share</name>
            <fair-share>100</fair-share>
          </fair-share-request-class>
        </work-manager>My web.xml contains this:
      <resource-ref>
        <res-ref-name>sync</res-ref-name>
        <res-type>commonj.work.WorkManager</res-type>
        <res-auth>Container</res-auth>
      </resource-ref>
      <resource-ref>
        <res-ref-name>async</res-ref-name>
        <res-type>commonj.work.WorkManager</res-type>
        <res-auth>Container</res-auth>
      </resource-ref>And my jndi lookup looks like this:
    WorkManager wm = (WorkManager)context.lookup("java:comp/env/sync");thanks

  • Already logged in message but not showing up in Server Admin

    Running server software 10.3. Most clients are 10.4.
    I have several students that can't log in because it says they are already logged in elsewhere. Normally I go to Server Admin and disconnect them and they can then log in. But I've got about 4 students right now that are NOT showing up in Server Admin, so I can't disconnect them. Any ideas of what might cause this, and more importantly, how to fix it?

    I have this issue as well. Rebooting the router and server? I'm glad that works but that should not be necessary. Neither should checking allow simultaneous login on multiple computers in WGM.
    I will continue to look for an answer. thanks for the tip.

  • Portal Server Admin Console login problem....

    When I installed Sun Java Studio Enterprise 7 (trial edition) I also installed the server package (The second zip file). During the install I was only prompted to enter ID and password my Application server. But I do not know or have an ID and password for the portal server. When I launch the Portal Server Admin Console which is really the Access Manager's Admin console, it prompts me to enter my ID and password. The ID and password I have setup for the Application server does not work. Now my problem is, I cannot access the portal server on my machine. Does any one know how I can find out what my ID and password is? or how I can access the portal server?

    hi,
    I'm a newbie , who has just installed the java enterprise server. i installed it on windows platform and installation was successful. I don't know how to login to the portal server.
    please provide the address of the portal webpage if the one given below is incorrect:
    http://localhost:8080/portal/dt
    which username and password can i use for loggin in ? .....
    what is the default username and password ?
    is the username amadmin ?? if so what is the password ? ...
    kindly help me .....thanks in advance.... :)

  • Missing tabs from WebLogic Server Admin console

    I am extremely new to WebLogic. It came with a vendor package we bought, and we do not have support. I have been using ASK to search for answers to my questions/problems. It has become obvious that either I don't know what I am doing :-) or that our installation is less robust than other peoples.
    On our Weblogic Server Admin console, there is no such thing as a "Change Center". If I go to Services -> JDBC -> Connection Pools, there is no tab for Testing. The only tabs I have are Configuration and Monitoring. Monitoring only has text on it - no button to push. Do I always have to "configure a new JDBC connection pool" in order to somehow find a TEST tab?
    Have we done something wrong during installation? Thank you, anyone, for help and advice.
    Bonnie

    Can you please share the error logs/standard output snippet here. It seems to be an issue with the classpath that the system classloader is reading.
    Cheers!!
    AJ

  • Help with connection pool at system application server admin console 9.0

    Hi,
    I am trying to create a pool of oracle connections in system application server admin console, but when I ping to the server, it shows me the error: invalid oracle URL: OracleDataSource.makeURL.
    I have the jar file of the driver referenced in the classpath suffix field of the path settings.
    I have added all kind of combinations of additional properties, like
    serverName: 172.16.9.162
    databaseName: oradex07
    portNumber: 1521
    username: usr
    password: pwd
    or
    url: jdbc:oracle:thin:@172.16.9.162:1521:oradex07
    but it still showing me the same error

    Hey, I use this code to lookup session bean deployed in glassfish.
    Based on the glassfish EJB FAQ.
    Properties props = new Properties();
    props.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
    props.setProperty("java.naming.factory.url.pkgs", "com.sun.enterprise.naming");
    props.setProperty("java.naming.factory.state", "com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl");
    props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
    props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
    InitialContext initialContext = new InitialContext(props);
    SessionBean bean = initialContext.lookup(ejbName);Cheers.

  • Application Server Admin Console Login

    I like to know the default username and password of the Application Server Admin Console. (Server Navigator>Show Admin Console).
    At the end of the installation of JSC this login details are displayed but now I have forgotten. Please anyone help me.
    Thank you very much.

    Try "admin" and "adminadmin".

  • Can I manage custom builds of Apache and PHP with Server Admin?

    Okay, here's the deal: I have a shiny new Xserver Xeon with Leopard Server installed. I see that it comes with a number of programs that I'll need, preinstalled, but for various reasons (extensions and modules for PHP, Apache, and the like), I may need to roll my own builds of several of these programs and libraries. In this case, the main thing I'm concerned with is recompiling Apache and PHP.
    My question is, can I do this and still manage those tools from Server Admin? I'm not averse to doing it on the command line if need be, but I'd just as soon not have to, if I have Server Admin. So, what would I need to do to make sure that I can still use Server Admin with a custom PHP and Apache?

    My main interest is in using Wiki Server with the custom Apache and PHP builds. Since that's managed through Server Admin, I figured it would be best to try and integrate with the Apple tools.
    Apache I could maybe get by without a rebuild, but there are definitely PHP modules I need which the default build does not come with.

  • IQ03 - one time customer account group not shown in ship-to party field

    Hi,
    Anyone can help out this?
    In IQ03, for one time customer account, ship-to party field not updated. For others account group is updated.
    Is this SAP standard setting that not shown the ship-to/sold-to details in IQ03 for one time customer account?
    Thanks in advance.

    Update some details:
    1. Our one-time customer account group setting is customized from standard one time customer account.
    2. Partner determination done same as sold-to party.
    I came accross this "One time customer do not have partner functions tab (no SP, BP, PY, SH) active.... " in Thread: One time customer Posted by Bageerath Chery.
    Can anyone explain further on this?
    As if this is standard, meaning can explain why one-time customer not shown in ship-to field although the setting at equipment > Assign Partner Determination Procedure to Equipment Category done.
    Or any else setting to check? Pls advise..

  • Text frame not shown on windows server 2008

    I am facing the issue that on windows server 2008 the frame of a text fields are not shown. On windows 7 there is no issue. As example I have attached two screenshots showing that on windows 7 the frames for precision and scale are shown, but on 2008 not (additional info: the text field is there and can be edited).
    Do you know such an issue? Any suggestion how to solve it?
    Many thanks for your help
    Peter

    Hi,
    When you click the Plus sign next to a master page to create another master page, it doesn't inherit the objects from the master page. It simply creates a blank master page. If you want the new master page to inherit the objects, then right click the desired master page and select "Duplicate page".
    As far as child pages are concerned, yes, they should inherit all the objects and properties of the master page. It is really odd if its not happening for you. What happens when you right click the child page and apply desired master for that menu?
    Regards,
    Aish

  • Custom Security Manager or Security Event Interception from WebLogic Console

    Hello,
    I have built my own Security Manager and implemented custom preference/property mechanism for every Principal, so when I use my Swing client to create new User and new Group, as well as addMember to a Group, I know what to do with those properies/preferences.
    Now, I want to use WebLogic Console to manage users and groups. I want to intercept events in my Security Manager about new User or Group creation or changing their memberships as Principals in order to handle their Preference/properties stuff myself...
    I wonder what should I "listen" in order to understand that someone has changed membership of Users or Groups or about creation of new User or Group?
    I use Weblogic Server 6.0 sp2
    serge

    Hi Daniel,
    > a custom security manager for the standard CM Repository
    And this dictates you indeed to use the old API, as the CMRepositoryManager itself is using the old API.
    The standard AclSecurityManager is implemented by com.sapportals.wcm.repository.manager.generic.security.AclSecurityManager. If you check out Configuration - Content Management - Repository Managers - Security Manager, you will see "ACL Security Manager" (the one from above) and "ACL Security Manager (for new Manager-API)". This is implementing / using the new API, but needs also a RM using the new API.
    > java.lang.NoSuchMethodException: MySecurityManager.<init>
    This exception only complains about a missing constructor!? Have you implemented a default constructor?!
    > If this is the case, where can I find the API for IUMPrincipal? It is not included in any provided API because of deprecation.
    The methods of the old EP5 user management are more or less similar to the new UME, so using the old deprecated API should be more or less straight forward.
    There are also transformer methods for example to transform a "new" user object to an old EP5 one, see https://forums.sdn.sap.com/thread.jspa?threadID=235656&tstart=0
    Hope it helps
    Detlev

Maybe you are looking for

  • Web Services Data Control - Complex type bindings

    I am calling a web services using the web service data control. The request object is a complex type. I observed that some data managed to bind but some failed to bind (empty value on the outbound SOAP payload). Specifically, all the "scalar" element

  • Call a Webservice with SAML securty in PI 7.0

    Hi experts, I need to call a Webservice with SAML security from PI 7.0, Is It possible? or only It is possible with PI 7.1? Thanks in advance, Jose Manuel

  • Get "TV Out" graphics card for PAL monitor?

    I'm having problems acheiving an external PAL monitor thru my camera. What if I cut out the camera with a new card for 'TV out', would this make the set-up more robust. Would the 'TV out' merely duplicate the computer monitor display? This is really

  • Error Re-opening Self-Signed Extensions on OS X

    I offer several free and paid self-signed extensions through Add-Ons. Some users have been reporting a peculiar error: users are usually able to open the extension once but when they close and re-open the extension again, the panel is completely empt

  • Many dead cmd.exe on Windows 2008 R2 Oracle 11.2.0.2 RAC Installation

    After successful installation of a two node Oracle RAC 11.2 on Windows 2008 R2 we investigate a daily growing number of cmd.exe all running the following statement: *C:\Windows\system32\cmd.exe  /K D:\oracle\cluster\11.2.0\grid\bin\cluvfy  comp healt