??xml version="1.0" encoding="utf-8" standalone="yes"?>欧美精品一区在线观看,亚洲欧洲精品在线,性色av一区二区怡红http://www.aygfsteel.com/hengheng123456789/category/14392.htmlzh-cnTue, 27 Feb 2007 12:43:39 GMTTue, 27 Feb 2007 12:43:39 GMT60开发Jboss Mbean服务http://www.aygfsteel.com/hengheng123456789/articles/87766.html哼哼哼哼Thu, 14 Dec 2006 10:03:00 GMThttp://www.aygfsteel.com/hengheng123456789/articles/87766.htmlhttp://www.aygfsteel.com/hengheng123456789/comments/87766.htmlhttp://www.aygfsteel.com/hengheng123456789/articles/87766.html#Feedback0http://www.aygfsteel.com/hengheng123456789/comments/commentRss/87766.htmlhttp://www.aygfsteel.com/hengheng123456789/services/trackbacks/87766.html众所周知Jboss依赖于JMX来装载MBean服务Q而这些MBean服务l成了具体服务器实例的差异性。标准JBoss发布版本提供的所有功能都是基于MBean的。所以,如果要ؓJBoss服务器添加新的服务,最好的Ҏ是开发自qJMX MBean服务?br />MBean服务的生命周期是由如下三个JBoss MBean负责的:SARDeployer、ServiceConfigurator、ServiceController?br />
如自定义MBean服务依赖于其他MBean服务Q可以通过如下Ҏ实现Q?br />1、在自定义MBean接口中添加Service中Q何方法?br />   q种方式避免了对JBoss具体接口的依赖?br />2、ؓ自定义MBean接口扩展org.jboss.system.Service接口?br />
3、ؓ自定义MBean接口扩展org.jboss.system.ServiceMBean接口?br />   最单的办法是将自定义MBean接口l承于ServiceMBean接口Q将MBean实现cȝ承ServiceMBeanSupportcRServiceMBeanSupport已经实现了ServiceMBean接口QServiceMBeanSupportq集成了日志、JBoss服务状态管理跟t功能,q些Ҏ需要我们具体实现createService、startService、stopService和destroyService中的部分Ҏ?br />
下面介绍ZServiceMBean接口和ServiceMBeanSupportcȝJNDIMapMBean接口及其JNDIMap实现cR?br />
package org.joss.chap2.ex2;

import javax.naming.NamingException;

import org.jboss.system.ServiceMBean;

public interface JNDIMapMBean extends ServiceMBean
{
 public String getJndiName();
 public void setJndiName(String jndiName) throws NamingException;
}

package org.joss.chap2.ex2;

import java.util.HashMap;

import javax.management.MBeanServer;
import javax.management.ObjectName;
import javax.naming.InitialContext;
import javax.naming.Name;
import javax.naming.NamingException;

import org.jboss.naming.NonSerializableFactory;
import org.jboss.system.ServiceMBeanSupport;

public class JNDIMap extends ServiceMBeanSupport implements JNDIMapMBean
{
 private String jndiName;
 private HashMap contextMap = new HashMap();

 public JNDIMap()
 {
  super();
  // TODO Auto-generated constructor stub
 }

 public String getJndiName()
 {
  
  return jndiName;
 }

 public void setJndiName(String jndiName) throws NamingException
 {
  String oldName = this.jndiName;
  this.jndiName = jndiName;
  if(super.getState()==STARTED)
  {
   unbind(oldName);
   try
   {
    rebind();
   }
   catch(Exception e)
   {
    NamingException ne = new NamingException("Failed to update jndiName");
    ne.setRootCause(e);
    throw ne;
   }
  }

 }
 
 public void startService()throws Exception
 {
  rebind();
 }
 
 
 public void stopService()
 {
  unbind(jndiName);
 }
 
 private void rebind() throws NamingException
 {
  InitialContext rootCtx = new InitialContext();
  Name fullName = rootCtx.getNameParser("").parse(jndiName);
  NonSerializableFactory.rebind(fullName,contextMap,true);
 }
 
 private void unbind(String jndiName)
 {
  try
  {
   InitialContext rootCtx = new InitialContext();
   rootCtx.unbind(jndiName);
   NonSerializableFactory.unbind(jndiName);
  }
  catch(NamingException e)
  {
   System.out.println(e);
  }
 }

 public String getName()
 {
  // TODO Auto-generated method stub
  return null;
 }

 public int getState()
 {
  // TODO Auto-generated method stub
  return 0;
 }

 public String getStateString()
 {
  // TODO Auto-generated method stub
  return null;
 }

 public void jbossInternalLifecycle(String arg0) throws Exception
 {
  // TODO Auto-generated method stub

 }

 public void create() throws Exception
 {
  // TODO Auto-generated method stub

 }

 public void start() throws Exception
 {
  // TODO Auto-generated method stub

 }

 public void stop()
 {
  // TODO Auto-generated method stub

 }

 public void destroy()
 {
  // TODO Auto-generated method stub

 }

 public ObjectName preRegister(MBeanServer arg0, ObjectName arg1)
   throws Exception
 {
  // TODO Auto-generated method stub
  return null;
 }

 public void postRegister(Boolean arg0)
 {
  // TODO Auto-generated method stub

 }

 public void preDeregister() throws Exception
 {
  // TODO Auto-generated method stub

 }

 public void postDeregister()
 {
  // TODO Auto-generated method stub

 }

}

<?xml version="1.0" encoding="UTF-8"?>

<server>

 <mbean code="org.joss.chap2.ex2.JNDIMap"
  name="chap2.ex2:service=JNDIMap">

  <attribute name="JndiName">inmemory/map/MapTest</attribute>
  <depends>jboss:service=Naming</depends>

 </mbean>

</server>



 



哼哼 2006-12-14 18:03 发表评论
]]>
JBOSS配置及用初?/title><link>http://www.aygfsteel.com/hengheng123456789/articles/65338.html</link><dc:creator>哼哼</dc:creator><author>哼哼</author><pubDate>Wed, 23 Aug 2006 10:19:00 GMT</pubDate><guid>http://www.aygfsteel.com/hengheng123456789/articles/65338.html</guid><wfw:comment>http://www.aygfsteel.com/hengheng123456789/comments/65338.html</wfw:comment><comments>http://www.aygfsteel.com/hengheng123456789/articles/65338.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/hengheng123456789/comments/commentRss/65338.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/hengheng123456789/services/trackbacks/65338.html</trackback:ping><description><![CDATA[ <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: center;" align="center"> <font size="2"> <b> <span style="font-size: 22pt;" lang="EN-US"> <font face="Times New Roman">JBOSS</font> </span> </b> <b> <span style="font-size: 22pt; font-family: 宋体;">配置及用初?/span> </b> <b> <span style="font-size: 22pt;" lang="EN-US"> <o:p> </o:p> </span> </b> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: right;" align="right"> <font size="2"> <b> <i> <span style="color: rgb(51, 153, 102); font-family: Ҏ舒体;" lang="EN-US"> <o:p> </o:p> </span> </i> </b> </font> </p> <h1 style="margin: 17pt 0cm 16.5pt;"> <font size="2"> <span style="font-family: 宋体;">前言</span> </font> </h1> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman"> <span style="">       </span>JBOSS</font> </span> <span style="font-family: 宋体;">推出</span> <span lang="EN-US"> <font face="Times New Roman">3.0.4</font> </span> <span style="font-family: 宋体;">版本其实已经很久很久啦,可是呢,|上关于它的介绍少得可怜,而且仅有的几介l都q不完全正确Q很多甚x直接拯</span> <span lang="EN-US"> <font face="Times New Roman">jboss2.4.4</font> </span> <span style="font-family: 宋体;">的相兛_宏V那些抄袭者没有想刎ͼ?/span> <span lang="EN-US"> <font face="Times New Roman">jboss2.4.4</font> </span> <span style="font-family: 宋体;">?/span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> <span style="font-family: 宋体;">之间有很大的飞跃Q甚至目录结构也不相同了Q相关配|更不用多说Q他们那些拷贝来的作品根本不能正指gh们学?/span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <span style=""> <font face="Times New Roman">       </font> </span> </span> <span style="font-family: 宋体;">Z学习</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">Q我惛_多数人可能都要从</span> <span lang="EN-US"> <a _fcksavedurl="http://www.jboss.org/"> <u> <font color="#800080" face="Times New Roman">http://www.jboss.org</font> </u> </a> </span> <span style="font-family: 宋体;">那里下蝲其本w的文档Q如</span> <span lang="EN-US"> <font face="Times New Roman">3.x</font> </span> <span style="font-family: 宋体;">版本有文档</span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf</font> </span> <span style="font-family: 宋体;">来进行入门指对{但是oZ万没有想到的是,</span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf</font> </span> <span style="font-family: 宋体;">文档中甚至也有错误的地方Q完全按照它的指引,大家会走弯路的?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <span style=""> <font face="Times New Roman">       </font> </span> </span> <span style="font-family: 宋体;">因此Q结合我最q学?/span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> <span style="font-family: 宋体;">的经验,Ҏ实际应用情况Qȝ?/span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> <span style="font-family: 宋体;">配置及用初步文档,供大家参考和讨论?/span> </font> </p> <h1 style="margin: 17pt 0cm 16.5pt;"> <font size="2"> <span style="font-family: 宋体;">前提</span> </font> </h1> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <span style=""> <font face="Times New Roman">       </font> </span> </span> <span style="font-family: 宋体;">首先Q你必须安装?/span> <span lang="EN-US"> <font face="Times New Roman">JDK</font> </span> <span style="font-family: 宋体;">Q版本ؓ</span> <span lang="EN-US"> <font face="Times New Roman">1.3</font> </span> <span style="font-family: 宋体;">以上Q我使用的是</span> <span lang="EN-US"> <font face="Times New Roman">1.4</font> </span> <span style="font-family: 宋体;">版本。ƈ?/span> <span lang="EN-US"> <font face="Times New Roman">CLASSPATH</font> </span> <span style="font-family: 宋体;">中设|?/span> <span lang="EN-US"> <font face="Times New Roman">JAVA_HOME</font> </span> <span style="font-family: 宋体;">环境变量?/span> <span lang="EN-US"> <font face="Times New Roman">JDK</font> </span> <span style="font-family: 宋体;">安装目录。确保在你的机器上可以运?/span> <span lang="EN-US"> <font face="Times New Roman">JAVA</font> </span> <span style="font-family: 宋体;">E序?/span> </font> </p> <h1 style="margin: 17pt 0cm 16.5pt;"> <font size="2"> <span style="font-family: 宋体;">安装及运?/span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> </font> </h1> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <span style=""> <font face="Times New Roman">       </font> </span> </span> <span style="font-family: 宋体;">?/span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">自己的网?/span> <span lang="EN-US"> <a _fcksavedurl="http://www.jboss.org/"> <u> <font color="#800080" face="Times New Roman">http://www.jboss.org</font> </u> </a> </span> <span style="font-family: 宋体;">下蝲</span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> <span style="font-family: 宋体;">Q有</span> <span lang="EN-US"> <font face="Times New Roman">jboss-3.0.4.zip</font> </span> <span style="font-family: 宋体;">?/span> <span lang="EN-US"> <font face="Times New Roman">jboss-3.0.4_tomcat-4.1.12.zip</font> </span> <span style="font-family: 宋体;">。后者是</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">?/span> <span lang="EN-US"> <font face="Times New Roman">tomcat</font> </span> <span style="font-family: 宋体;">整合CL版本Q这里主要介l前者,既单独的</span> <span lang="EN-US"> <font face="Times New Roman">jboss3.0.4</font> </span> <span style="font-family: 宋体;">?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman"> <span style="">       </span>jboss</font> </span> <span style="font-family: 宋体;">的运行很单。将</span> <span lang="EN-US"> <font face="Times New Roman">jboss-3.0.4.zip</font> </span> <span style="font-family: 宋体;">解压到本地硬盘的一个目录中。会有以下几个目录生成:</span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">bin</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span style="font-family: 宋体;">攄</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">启动和停止的可执行脚本文?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">docs</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span style="font-family: 宋体;">攄</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">的例子、测试脚本和各种脚本配置文g?/span> <span lang="EN-US"> <font face="Times New Roman">DTD</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">lib</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span style="font-family: 宋体;">攄</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">所需要的部分</span> <span lang="EN-US"> <font face="Times New Roman">jar</font> </span> <span style="font-family: 宋体;">包文?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">client</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span style="font-family: 宋体;">攄</span> <span lang="EN-US"> <font face="Times New Roman">EJB</font> </span> <span style="font-family: 宋体;">客户端运行时所需要的</span> <span lang="EN-US"> <font face="Times New Roman">jar</font> </span> <span style="font-family: 宋体;">?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">server</font> </span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span style="font-family: 宋体;">攄各启动类型的服务器端</span> <span lang="EN-US"> <font face="Times New Roman">EJB</font> </span> <span style="font-family: 宋体;">配置所需要的文g{?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">Jboss3.0.4</font> </span> <span style="font-family: 宋体;">有三U启动类型,分别?/span> <span lang="EN-US"> <font face="Times New Roman">all, default, minimal</font> </span> <span style="font-family: 宋体;">。如?/span> <span lang="EN-US"> <font face="Times New Roman">windows</font> </span> <span style="font-family: 宋体;">q_下启?/span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">Q可直接启动</span> <span lang="EN-US"> <font face="Times New Roman">bin</font> </span> <span style="font-family: 宋体;">目录下的</span> <span lang="EN-US"> <font face="Times New Roman">run.bat</font> </span> <span style="font-family: 宋体;">既可。此旉认ؓ?/span> <span lang="EN-US"> <font face="Times New Roman">default</font> </span> <span style="font-family: 宋体;">形式启动Q如需其它启动方式Q则需要参数设|,如想?/span> <span lang="EN-US"> <font face="Times New Roman">all</font> </span> <span style="font-family: 宋体;">模式启动Q则q行</span> <span lang="EN-US"> <font face="Times New Roman">run.bat –c all</font> </span> <span style="font-family: 宋体;">命o。至于三U启动模式的区别Q无非就是启动的服务多少不同Q具体请参照</span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf</font> </span> <span style="font-family: 宋体;">文档。该文档也有讄</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">启动?/span> <span lang="EN-US"> <font face="Times New Roman">windows</font> </span> <span style="font-family: 宋体;">服务的一D,也可以参照,不过我按照它的做法尝试了一下,发现居然</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">的服务会占据</span> <span lang="EN-US"> <font face="Times New Roman">90%</font> </span> <span style="font-family: 宋体;">以上?/span> <span lang="EN-US"> <font face="Times New Roman">CPU</font> </span> <span style="font-family: 宋体;">资源</span> <span style="font-family: 宋体;">?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> <font size="2"> <span lang="EN-US"> <span style=""> <font face="Times New Roman">       </font> </span> </span> <span style="font-family: 宋体;">正如大家所看到的,</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">启动p么简单,而且也不需要按照自q机器额外q行其他配置。到q一步,大家都很爽吧?/span> <span lang="EN-US"> <font face="Times New Roman">OK</font> </span> <span style="font-family: 宋体;">Q让我们l箋</span> </font> </p> <h1 style="margin: 17pt 0cm 16.5pt;"> <font size="2"> <span style="font-family: 宋体;">查看</span> <span lang="EN-US"> <font face="Times New Roman">JBOSS</font> </span> <span style="font-family: 宋体;">端口</span> </font> </h1> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span style="font-family: 宋体;">q本来不应单独成Z章,但是Q网上各资料?/span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf </font> </span> <span style="font-family: 宋体;">中都在这一部分对用者进行了误导Q我惛_q里我有必要q行澄清?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span style="font-family: 宋体;">启动</span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">后,我们可以查看</span> <span lang="EN-US"> <font face="Times New Roman">8080</font> </span> <span style="font-family: 宋体;">端口Q在览器地址栏中键入</span> <span lang="EN-US"> <a href="http://localhost:8080/" _fcksavedurl="http://localhost:8080/"> <span style="color: windowtext; text-decoration: none;"> <font face="Times New Roman">http://localhost:8080</font> </span> </a> </span> <span style="font-family: 宋体;">Q我们会发现一个错误页面,内容为?/span> <span lang="EN-US"> <font face="Times New Roman">HTTP ERROR: 404 / Not Found<span style="">  </span>RequestURI=/</font> </span> <span style="font-family: 宋体;">”这是正常的Q因ZҎ没有页面可以显C?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span style="font-family: 宋体;">在按照网上资料和</span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf</font> </span> <span style="font-family: 宋体;">的要求查?/span> <span lang="EN-US"> <font face="Times New Roman">8082</font> </span> <span style="font-family: 宋体;">端口Ӟ我们׃发现Q根本和资料中讲qC一致了?/span> <span lang="EN-US"> <font face="Times New Roman">JBoss.3.0QuickStart.Draft3.pdf</font> </span> <span style="font-family: 宋体;">中的原文是这LQ?/span> <span lang="EN-US"> <font face="Times New Roman">To check if JBoss is running please open a browser and enter </font> <a href="http://localhost:8082/" _fcksavedurl="http://localhost:8082/"> <u> <font color="#0000ff" face="Times New Roman">http://localhost:8082</font> </u> </a> <font face="Times New Roman"> which will list all JBoss components running.</font> </span> <span style="font-family: 宋体;">”但是,我们会出现一个错误页面!q不是象它所说的会列出所有运行的</span> <span lang="EN-US"> <font face="Times New Roman">JBOSS</font> </span> <span style="font-family: 宋体;">lg。经q查找,发现其实应该?/span> <span lang="EN-US"> <a href="http://localhost:8080/jmx-console" _fcksavedurl="http://localhost:8080/jmx-console"> <u> <font color="#800080" face="Times New Roman">http://localhost:8080/jmx-console</font> </u> </a> <font face="Times New Roman"> </font> </span> <span style="font-family: 宋体;">。此点一定注意,否则会打d学者学?/span> <span lang="EN-US"> <font face="Times New Roman">jboss</font> </span> <span style="font-family: 宋体;">的兴的。我们通过q个面q行?/span> <span lang="EN-US"> <font face="Times New Roman">JBOSS</font> </span> <span style="font-family: 宋体;">的各服务的配|和理?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span style="font-family: 宋体;">我们再查?/span> <span lang="EN-US"> <a href="http://localhost:8083/" _fcksavedurl="http://localhost:8083/"> <u> <font color="#800080" face="Times New Roman">http://localhost:8083</font> </u> </a> <font face="Times New Roman"> </font> </span> <span style="font-family: 宋体;">会出C个没有错误的I白,正常Q应该是q样?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span style="font-family: 宋体;">我们再查?/span> <span lang="EN-US"> <a href="http://localhost:1099/" _fcksavedurl="http://localhost:1099/"> <u> <font color="#800080" face="Times New Roman">http://localhost:1099</font> </u> </a> <font face="Times New Roman"> </font> </span> <span style="font-family: 宋体;">会出C大堆乱字W,当然Q里面包含了你的</span> <span lang="EN-US"> <font face="Times New Roman">IP</font> </span> <span style="font-family: 宋体;">地址{等cM的信息?/span> <span lang="EN-US"> <font face="Times New Roman">1099</font> </span> <span style="font-family: 宋体;">?/span> <span lang="EN-US"> <font face="Times New Roman">jnp</font> </span> <span style="font-family: 宋体;">协议监听名字服务的缺省端口,</span> <span lang="EN-US"> <font face="Times New Roman">RMI</font> </span> <span style="font-family: 宋体;">的缺省端口也是一L。在</span> <span lang="EN-US"> <font face="Times New Roman">JNDI</font> </span> <span style="font-family: 宋体;">中,我们需要用到此端口?/span> </font> </p> <p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 21pt;"> <font size="2"> <span lang="EN-US"> <font face="Times New Roman">OK</font> </span> <span style="font-family: 宋体;">Q基本端口信息就q些?/span> </font> </p> <img src ="http://www.aygfsteel.com/hengheng123456789/aggbug/65338.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/hengheng123456789/" target="_blank">哼哼</a> 2006-08-23 18:19 <a href="http://www.aygfsteel.com/hengheng123456789/articles/65338.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ʊ</a>| <a href="http://" target="_blank">¯</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">пǰ</a>| <a href="http://" target="_blank">Դ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">²</a>| <a href="http://" target="_blank">ʡ</a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƺ</a>| <a href="http://" target="_blank">ʦ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">差</a>| <a href="http://" target="_blank">º</a>| <a href="http://" target="_blank">ʩ</a>| <a href="http://" target="_blank">Ƽ</a>| <a href="http://" target="_blank">䶨</a>| <a href="http://" target="_blank">ɽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ζ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ϻ</a>| <a href="http://" target="_blank">ָɽ</a>| <a href="http://" target="_blank">ɳ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ͻ</a>| <a href="http://" target="_blank">ɳ</a>| <a href="http://" target="_blank">̨</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">³</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>