• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

where is the 'service=Hypersonic' link

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I was going through this tutorial on JBoss setup with eclipse and Ive got the Jboss run successfully, since I can see the jmx page in local host. On this tutorial: http://www.tusc.com.au/tutorial/html/chap1.html
it refers to the http://localhost:8080/jmx-console/index.jsp and on this page I should be able to go to the following link but I dont have it on my page....
"Note that on this page under the sub-heading of 'jboss' there is a link 'service=Hypersonic'. Go to that link; that will bring up an 'MBean View' page. On this page there is an MBean operation called 'startDatabaseManager'; go there and press the 'Invoke' button. This will bring up the console for the embedded Hypersonic database, from where you can access schemas and do other database management operations."
Please can anyone enlighten me !
thanks
S
 
Ranch Hand
Posts: 7729
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well it's right there: 5th line in the jboss section (for me using "out the box" jboss-3.2.2RC4).
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
S - did you ever get this resolved? I have the same problem: no hypersonic listed on my jmx-console page.
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You didn't mentiond the version of jboss you are running.
The latest version of jboss comes with hypersonic db embedded and the default JNDI settings are point to hyspersonic. It's quite possible that in service.xml you are not starting the hypersonic database. Post your service.xml if you have any difficulty.
- Walker
 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the same problem, and my JBoss version is 3.2.3.
I think this line can be found in previous versions, not in 3.2.3. So who knows how to open Hypersonic database manager?
Thanks in advance !
 
Ranch Hand
Posts: 563
Google Web Toolkit Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the same problem.
Using version 3.2.3.
I am quite disappointed with JBoss, this is a mess, nothing works, I am wasting an incredible amount of time always trying to figure out what is wrong, why this, why that ...
and meanwhile, I have not been able to write any EJB since I started my training ...
help please ...
thanks
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm following the same tutorial, and here's how I made the link show up (Don't know if it actually works yet!):
At the end of the hsqldb-ds.xml file in the C:\jboss\server\default\deploy folder, uncomment the stuff about the hypersonic service so it looks like this:


<!-- Add this depends tag if you are using the tcp connection url-->
<depends>jboss:service=Hypersonic</depends>

</local-tx-datasource>
<!-- This mbean should be used only when using tcp connections. Uncomment
when the tcp based connection-url is used. -->
<mbean code="org.jboss.jdbc.HypersonicDatabase"
name="jboss:service=Hypersonic">
<attribute name="Port">1701</attribute>
<attribute name="Silent">true</attribute>
<attribute name="Database">default</attribute>
<attribute name="Trace">false</attribute>
<attribute name="No_system_exit">true</attribute>
</mbean>
</datasources>


Hope this helps!
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic