Identify three components of the WebLogic JMS architecture.(

题目
多选题
Identify three components of the WebLogic JMS architecture.()
A

JMS Server

B

JMS Module

C

Node Manager

D

Queue Manager

E

Persistent Store

参考答案和解析
正确答案: A,B
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

A customer wants to send JMS messages to a remote WebLogic server from a Java SE application over an unreliable network connection. Which feature of WebLogic JMS will enable the customer to send messages from a Java SE client to a JMS destination that is not always easily reached?()

  • A、SAF Target
  • B、SAF Imported Destination
  • C、SAF Client
  • D、SAF Server
  • E、Distributed SAF JMS

正确答案:C

第2题:

在Weblogic 10.X中的config.xml中标识JMS system-resource module的4个属性是()。

  • A、domain,jms-server,connectionfactory,destination
  • B、name,target,subdeployment,descriptor-file-name
  • C、config.xml,jms-module,subdeployment,descriptor-file-name
  • D、name,jms-module,subdeployment,descriptor-file-name

正确答案:B

第3题:

View the Exhibit and examine the Data Pump architecture. Identify the numbered components.()

A. 1 - Oracle Loader, 2 - Oracle Data Pump, 3 - Direct Path API

B. 1 - Oracle Data Pump, 2 - Direct Path API, 3 - Oracle Loader

C. 1 - Direct Path API, 2 - Oracle Loader, 3 - Oracle Data Pump

D. 1 - Oracle Loader, 2 - Direct Path API, 3 - Oracle Data Pump


参考答案:A

第4题:

A customer needs to implement a Highly Available solution for JMS that has a primary data center  and a backup. Which three steps would you perform when designing your solution?()

  • A、Store Transaction Logs in a database and use Database stores for JMS to make replication  between sites easier.
  • B、Use file based Transaction Logs and JMS stores and implement a separate replication solution  for files in addition to database in case database replication fails.
  • C、Implement Oracle RAC at each site to provide a highly available solution within each datacenter.
  • D、Configure Whole Server Migration to migrate WebLogic Managed Servers from the primary to the secondary site.
  • E、Configure Automatic Service Migration for JMS high availability within a datacenter.

正确答案:A,C,E

第5题:

Which two statements are true about interoperating with Oracle AQ JMS with Oracle WebLogic server ?()

  • A、 If you select a non-XA JDBC driver, you can use WebLogic AQ JMS in both local & global transactions
  • B、 Oracle WebLogic Server requires a JDBC driver to communicate with the Oracle AQ JMS
  • C、 Oracle WebLogic AQ JMS stand-alone client automatically participate in global transactions managed by Oracle WebLogic Server
  • D、 If you select an XA JDBC driver, you can use WebLogic AQ JMS in both local and global transactions

正确答案:B,D

第6题:

An application is using WebLogic JMS Store and Forward to forward messages from a local JMS queue a remote WebLogic JMS destination. You need to determine if the messages are being  sent from the local Weblogic Server. Where do you find information and metrics about Store and Forward components in the WebLogic Admin Console?()

  • A、JMS Persistent Store
  • B、JMS Server  
  • C、JMS Distributed Destination
  • D、JMS Store and Forward  
  • E、Automatic Service Migration

正确答案:A

第7题:

Weblogic管理服务器不能提供()服务。

  • A、Web服务
  • B、JMS服务
  • C、Socket服务
  • D、补丁服务

正确答案:D

第8题:

用java能实现对weblogic的监控吗?

我已经用JMS实现了对weblogic的server Name,Listen Port,webApp的名称、domain名称。现在想实现对weblogic的执行线程(executeQueue)、集群(cluster)、堆(heap)等,不知道应该怎么实现?


能,用jmx ,google一下这方面知识,由于从weblogic8升级到weblogic9发生了比较大的变化,以前对于weblogic8比较熟悉的人,也许到了weblogic9就不一定熟悉了,还需要了解才行,特别是监控方面差别比较大,由于9采用的jdk版本是1.5,监控8实现的java方式就不能用于9了。

就目前我得测试结论是:java实现weblogic的自定义监控对于9和10都是适用的,但是对于11却没有测试,还不知道方式是否相同,实际上从文档里面也可以看出,8系列是采用的许多管理的MBean接口在9中已经不推荐使用,标明是过时的了。

我这次通过java编程来实现weblogic9的自定义监控就发现,很多地方完全地不同了。

从界面上来看,已经完全不同于8,命令行监控方式也有一些大的变化。

这是我取得监控接口封装的类:

package lht.monitor.weblogic.main9;

import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Hashtable;

import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;

public class SetEnvironment {
 protected static MBeanServerConnection connection;  
 private static JMXConnector connector;  
 private static final ObjectName service;  
 // Initializing the object name for DomainRuntimeServiceMBean  
 // so it can be used throughout the class.  
 static {     
  try {       
    service = new ObjectName( "com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
   }catch (MalformedObjectNameException e) {
    throw new AssertionError(e.getMessage());
   } 
  } 
 /*
  * Initialize connection to the Domain Runtime MBean Server
  */ 
 public static void initConnection(String hostname, String portString,String username, String password) throws IOException,  MalformedURLException {      
  String protocol = "t3";     
  Integer portInteger = Integer.valueOf(portString);     
  int port = portInteger.intValue();     
  String jndiroot = "/jndi/";     
  String mserver = "weblogic.management.mbeanservers.domainruntime";
  JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port, jndiroot + mserver);
  Hashtable hash = new Hashtable();     
  hash.put(Context.SECURITY_PRINCIPAL, username);
  hash.put(Context.SECURITY_CREDENTIALS, password);
  hash.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
  connector = JMXConnectorFactory.connect(serviceURL,hash);
  connection = connector.getMBeanServerConnection();
 }
  /*     
   *  This MBean is the root of the runtime MBean hierarchy, and 
   *  each server in the domain hosts its own instance.  
   */
 public static ObjectName[] getServerRuntimes(String servername,String hostname, String portString,String username, String password) throws Exception{   
  ObjectName[] bj = (ObjectName[])connection.getAttribute(service,servername);
  return obj;
 }
}

第9题:

Identify three advantages of Active GridLink for RAC over multidata source.()

  • A、isolates WebLogic from RAC changes
  • B、has a simple configuration
  • C、enables statement caching  
  • D、performs faster failure detection and failover
  • E、is supported in WebLogic Domain Templates

正确答案:A,B,D

第10题:

Identify three components of the WebLogic JMS architecture.()

  • A、JMS Server
  • B、JMS Module
  • C、Node Manager
  • D、Queue Manager
  • E、Persistent Store

正确答案:A,B,E

更多相关问题