[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-16 Thread cool_xiong
I get it, thank you very much.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855345#3855345

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855345


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-16 Thread [EMAIL PROTECTED]
Where is your mbean descriptor? You are showing your xmbean descriptor but 
there must be an mbean descriptor also to either point to or include the xmbean 
descriptor.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855320#3855320

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855320


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-15 Thread cool_xiong
I understand your meaning, thanks.

I use jboss3.2.1


  | 
  | 
  | 
  | The IBS CONFIG XMBean Example
  | 
  | 
  | 
  | 
  | 
  | com.ibs.cofig.mbean.ConfigFile
  | 
  | The default constructor
  | ConfigFile
  | 
  | 
  | 
  | The location in JNDI where the Map we manage will 
be bound
  | jndiName
  | java.lang.String
  | 
  | 
  | 
  | 
  | 
  | 
  | The start lifecycle operation
  | start
  | 
  | 
  | The stop lifecycle operation
  | stop
  | 
  | 
  | Save a file into database
  | setFile
  | 
  | File's system indentifier
  | id
  | int
  | 
  | 
  | File to be saved
  | file
  | java.io.File
  | 
  | 
  | 
  | Get a file from database
  | getFile
  | 
  | File's system indentifier
  | id
  | int
  | 
  | java.io.InputStream
  | 
  | 
  | Save a file into database
  | setConfigFile
  | 
  | File's name
  | name
  | String
  | 
  | 
  | File to be saved
  | file
  | java.io.File
  | 
  | 
  | 
  | Get a file from database
  | getConfigFile
  | 
  | File's name
  | name
  | String
  | 
  | java.io.InputStream
  | 
  | 
  | Save a file into database
  | setConfigSchemaFile
  | 
  | File's name
  | name
  | String
  | 
  | 
  | File to be saved
  | file
  | java.io.File
  | 
  | 
  | 
  | Get a file from database
  | getConfigSchemaFile
  | 
  | File's name
  | name
  | String
  | 
  | java.io.InputStream
  | 
  | 
  | Save a file into database
  | setConfigExtFile
  | 
  | File's name
  | name
  | String
  | 
  | 
  | File to be saved
  | file
  | java.io.File
  | 
  | 
  | 
  | Get a file from database
  | getConfigExtFile
  | 
  | File's name
  | name
  | String
  | 
  | java.io.InputStream
  | 
  | 
  | 
  | The notification sent whenever a value is 
saved
  | javax.management.Notification
  | 
com.ibs.cofig.mbean.setFile
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855294#3855294

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855294


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-15 Thread cool_xiong


< mbean>
< description>The IBS CONFIG XMBean Example< /description>
< descriptors>
< persistence persistPolicy="Never" persistPeriod="10" 
persistLocation="data/JNDIMap.data" persistName="JNDIMap"/>
< currencyTimeLimit value="10"/>
< state-action-on-update value="keep-running"/>
< /descriptors>
< class>com.ibs.cofig.mbean.ConfigFile< /class>
< constructor>
< description>The default constructor< /description>
< name>ConfigFile< /name>
< /constructor>
< !-- Attributes -->
< attribute access="read-write" getMethod="getJndiName" 
setMethod="setJndiName">
< description>The location in JNDI where the Map we manage will 
be bound< /description>
< name>jndiName< /name>
< type>java.lang.String< /type>
< descriptors>
< default value="ibs/config/IBS_CONFIG"/>
< /descriptors>
< /attribute>
< !-- Operations -->
< operation>
< description>The start lifecycle operation< /description>
< name>start
< /operation>
< operation>
< description>The stop lifecycle operation< /description>
< name>stop
< /operation>
< operation impact="ACTION">
< description>Save a file into database< /description>
< name>setFile< /name>
< parameter>
< description>File's system indentifier< /description>
< name>id< /name>
< type>int< /type>
< /parameter>
< parameter>
< description>File to be saved< /description>
< name>file< /name>
< type>java.io.File< /type>
< /parameter>
< /operation>
< operation impact="INFO">
< description>Get a file from database< /description>
< name>getFile< /name>
< parameter>
< description>File's system indentifier< /description>
< name>id< /name>
< type>int< /type>
< /parameter>
< return-type>java.io.InputStream< /return-type>
< /operation>
< operation impact="ACTION">
< description>Save a file into database
< name>setConfigFile
< parameter>
< description>File's name< /description>
< name>name< /name>
< type>String< /type>
< /parameter>
< parameter>
< description>File to be saved< /description>
< name>file< /name>
< type>java.io.File< /type>
< /parameter>
< /operation>
< operation impact="INFO">
< description>Get a file from database< /description>
< name>getConfigFile< /name>
< parameter>
< description>File's name< /description>
< name>name< /name>
< type>String< /type>
< /parameter>
< return-type>java.io.InputStream< /return-type>
< /operation>
< operation impact="ACTION">
< description>Save a file into database
< name>setConfigSchemaFile< /name>
< parameter>
< description>File's name< /description>
< name>name< /name>
< type>String< /type>
< /parameter>
< parameter>
< description>File to be saved< /description>
< name>file< /name>
< type>java.io.File< /type>
< /parameter>
< /operation>
< operation impact="INFO">
< description>Get a file from database< /description>
< name>getConfigSchemaFile< /name>
< parameter>
< description>File's name< /description>
< name>name< /name>
< type>String< /type>
< /parameter>
< return-type>java.io.InputStream< /return-type>
< /operation>
< operation impact="ACTION">
< description>Save a file into database< /description>
< name>setConfigExtFile< /name>
< parameter>
< description>File's name< /description>
< name>name< /name>
< type>String< /type>
< /parameter>
< parameter>
< description>File to be saved< /

[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-15 Thread cool_xiong




The IBS CONFIG XMBean Example





com.ibs.cofig.mbean.ConfigFile

The default constructor
ConfigFile



The location in JNDI where the Map we manage will be bound
jndiName
java.lang.String






The start lifecycle operation
start


The stop lifecycle operation
stop


Save a file into database
setFile

File's system indentifier
id
int


File to be saved
file
java.io.File



Get a file from database
getFile

File's system indentifier
id
int

java.io.InputStream


Save a file into database
setConfigFile

File's name
name
String


File to be saved
file
java.io.File



Get a file from database
getConfigFile

File's name
name
String

java.io.InputStream


Save a file into database
setConfigSchemaFile

File's name
name
String


File to be saved
file
java.io.File



Get a file from database
getConfigSchemaFile

File's name
name
String

java.io.InputStream


Save a file into database
setConfigExtFile

File's name
name
String


File to be saved
file
java.io.File



Get a file from database
getConfigExtFile

File's name
name
String

java.io.InputStream



The notification sent whenever a value is saved
javax.management.Notification

com.ibs.cofig.mbean.setFile





View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855292#3855292

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855292


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-15 Thread [EMAIL PROTECTED]
you need to put your xml inside "code" tags, to show up correctly.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855223#3855223

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855223


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: why throw java.net.MalformedURLException: no !/ in spec

2004-11-15 Thread cool_xiong






View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855210#3855210

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855210


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user