In my web service, I would like to get information about the peer, for example
IP address etc. How can I do that? I expect it to be something like JSPContext?
For secured web service through LDAP, is there a way to get the user id etc.?
Thanks very much,
Peter
View the original post :
http://w
anonymous wrote : I want to call the /portal/j_security_check from within my
own portlet.
You can't. "j_security_check" is not a real URL, but a magic bullet which only
the underlying web app server (e.g. Tomcat) is allowed to fire or catch, part
of the J2EE form-login spec. As far as I know t
Please disregard.
I had an exceptionListener set on the connection that was causing the issue.
THanks.
-brad
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970158#3970158
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=
There is one problem with performing validation during the action phase: if you
are using an extended persistence context, you would prefer to do validation
before applying values onto the model object. But by the time we get to the
action method, the values have already been applied. It is then
Is 192.168.0.2 the IP address of the host running JBoss? What is the IP
address of the client machine? Also, which operatin system are you using?
I tried pinging 127.0.0.2 and 127.0.0.3 and in both cases ping converted the
address to 127.0.0.1. Which leads me to assume that 192.168.0.2 is the I
That worked, thanks!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970167#3970167
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970167
___
jboss-user mailing list
jboss-user
>From within the container, your InitialContext will be configured properly
>when using the default constructor. From a remote client (another JVM, like
>your JUnit Test), this isn't the case, and you'll have to get your context:
| Hashtable props= new Hashtable();
| props.put(Context.INI
nope.. i aml ost!
even using onlyneeded jar files, plus the updated wsdlj4 from this link
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3968854
doesnot work
and that sounds more strange... i have done a javap on the missing class's
method, and the method shows just fine
| Compil
Create a jndi.properties file, place it in the classpath (usually in the base
directory of the jar file), with these contents:
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
| java.naming.provider.url=localhost:1099
| java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.
Hi All,
If I want to change myDomain.com so that it automaticly points to
myDomain.com/portal with out the portal I need to change the context-root.
As described here:
http://wiki.jboss.org/wiki/Wiki.jsp?page=SetupARootContextApp
But which jboss-web.xml do I change for the portal?
...\deploy\j
That worked perfectly!
Was it actually defaulting to "STATELESS" scope? I seem to remember that
somewhere.
BTW, what are EVENT and PAGE scope useful for (since they didn't work for me in
this example)?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970160
Yes, anyone?
I'm having the exact same problem..
Thanks,
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970157#3970157
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970157
i think that if you see something like this
-->http://wiki.jboss.org/wiki/Wiki.jsp?page=AGWTWebBasedGui<-- this
automatically indicates a web link(see my first post). The sources are under
LGPL even though that is not written inside the code but you can make any
modification you want and you d
Ok, here comes the stack trace:
07.09.2006 19:55:19 de.hackemesser.frieshouse.client.Manager getContext
| INFO: Creating jndi context
| javax.naming.CommunicationException [Root exception is
java.rmi.ConnectException: Connection refused to host: 127.0.0.2; nested
exception is:
| java.
I experienced the same issue in 4.0.4 release. Discriminator does not show up
in the generated SQL statement.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970154#3970154
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=
I'm having similar issues trying to connect to Active Directory using LDAP with
JBoss.
The username is valid in AD I can login to a windows box that authenticates
against the AD server.
jboss-web.xml
java:/jaas/MyApp-ldap
/MyApp
web.xml
Restrict SEAM pages
Thanks Alex,
This fix one error in the log file but an other one appear :
anonymous wrote :
| 13:22:57,728 WARN [ServiceController] Problem starting service
jboss.j2ee:service=EjbModule,module=tambur-billing.jar
| org.jboss.deployment.DeploymentException: Error while creating table
BILLIN
Hello.
I realize this may be a JBoss Remoting issue, please tell me if it is, but I
decided to post here because it may be an issue with the config for JBoss
Messaging (the lines get blurry).
I have just upgraded my jboss-4.0.4.GA installations with
jboss-messaging-1.0.1.CR4. I have used the
my guess is that you would have to outject to at least a conversation scope.
| try @Out(scope=ScopeType.CONVERSATION)
| private Bean bean;
| {/code]
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970153#3970153
Reply to the post :
http://www.jboss.com/
I can't get @Out to work as I expected. I'm just testing a trivial stateless
session bean with a trivial page. I create a bean, outject it, and try to
display its attribute on the page.
The problem is, the bean never makes into the scope that the page is rendered
under. If I view "debug.seam
That JIRA issue indicates that the fix will be in the 2.0 beta for JBossWS, and
the timeframe for that final release, based on the roadmap, is not even known
yet. Short of trying to patch this myself, is there anything I can do to
increase the possibility that it could be added to the 1.x set o
Dear all,
I want to write JUnit Tests for my EJB3.0 SessionBeans. How do I access the
application server?
InitialContext ctx = new InitialContext();
bean = (BeanInterface) ctx.lookup("...");
does not work since the initial context cannot be resolved
(javax.naming.NoInitialContextException: Nee
Thanks petemuir. Equals helps :)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970149#3970149
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970149
___
jboss-user mailing lis
Ask in the portal forums. You will get a response for the portal issues.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970145#3970145
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970145
__
Brian,
That definitely gets me closer. I don't get the apache test page anymore but
I get the JBoss default page. Not the JBoss/portal page. Was
myServer/deploy/jboss-portal.sar/portal-server.war/WEB-INF/jboss-web.xml
The correct jboss-web.xml to change the context in?
Thanks,
Andrew
View
I am facing a similar problem.
greetings
Tobias
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970143#3970143
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970143
___
jboss-
I upgraded Seam to CVS HEAD version on 9/5/2006 to get around a problem with
back button pageflow redirects. Now the redirects work correctly but I am
receiving exceptions in the log during object finialization.
org.jboss.seam.RequiredException: In attribute requires value for component:
tradeD
Hi,
I would like to know what functionalities, in particular, would be affected if
the following libraries are corrupted?
default/deploy/http-invoker.sar
default/deploy/jms/jbossmq-httpil.sar
default/deploy/jmx-console.war
default/deploy/management/console-mgr.sar
Thanks in adva
I have this issue as well. This is definitely a bug. The interceptors fire only
when non set/list/array values are changed.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970140#3970140
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=postin
Where's the source, and what's the license?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970139#3970139
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970139
___
jboss-user
You have to edit uriworkersmap.properties to map /* to loadbalancer.
Downside is now everything goes back to the jboss servers, which may not be
what you want.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970138#3970138
Reply to the post :
http://www.jbos
Hi all,
I try to write a portlet in which a user can select the language of the
information displayed in all other portlets. So far I can change the language
for each portlet seperately. Please see the code below for details.
The managed Bean:
public class ChangeLocaleBean {
|
|
|
Thanks for the reply Brian,
I changed the context in:
myServer/deploy/jboss-portal.sar/portal-server.war/WEB-INF/jboss-web.xml
from /portal to /
However, when I go to myDomain.com I'm still getting the Apache test page.
Don't I need to tell Apache where to send "the default" page?
Thanks,
A
Thanks for the reply Brian,
I changed the context in:
/deploy/jboss-portal.sar/portal-server.war/WEB-INF/jboss-web.xml
from /portal to /
However, when I go to myDomain.com I'm still getting the Apache test page.
Don't I need to tell Apache where to send "the default" page?
Thanks,
Andrew
V
thanks ! :)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970134#3970134
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970134
___
jboss-user mailing list
jboss-user@lists.jb
You can either funnel all of your queries/find operations through a central
controller which filters for these "deleted items" or you could construct the
controller to always add a parameter to your queries to not return said items.
Another option is to use triggers to move those rows to a hist
http://jira.jboss.org/jira/browse/JBSEAM-343
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970132#3970132
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970132
___
jboss-use
cpob,
Thanks for the very helpful reply and answer. I greatly appreciate it. Your
answer brings up another question I have had, which is when should new
JbpmContext be created, and when should the current context be obtained
instead?
The reason that this question hasn't been completely clear
Yes!!! Now is working!
Thanks,
Andru
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970130#3970130
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970130
___
jboss-user mail
Actually, you should avoid casting to HttpServletRequest if at all possible
because your application will break if/when you run it as a portlet.
ExternalContext has methods available for path information.
ExternalContext extCtx = facesContext.getExternalContext();
extCtx.getRequestContextPath();
Hi,
Where is the best JBoss plugin download place if I am developing j2ee 1.4 on
netbeans 5.0? I noticed there a bundle for nb5.5 + jboss4.04. But I am on nb
5.0, and want to have features like jboss dd wizard from inside the IDE
Thanks,
Qingtian
View the original post :
http://www.jboss
I think it is appropriate to post my need for support here as well:
I'm running JBoss-IDE 2.0.0-beta on Windows XP with JBossAS 4.0 and trying to
do the JBoss-IDE tutorial. Unfortunately I can't configure the AS as shown in
the tutorial because of the changes made to the IDE since version 1.5.
Hi all,
I have a pojo that tries to invoke a method on a service (i lookup the service
and then perform the invocation).
I get the following exception:
14:31:00,125 INFO [STDOUT] Getting job
14:31:00,391 ERROR [AMSAddContentRequest] Error during adding content
java.lang.RuntimeException: Could
Shall submit that change myself ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970125#3970125
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970125
___
jboss-user mailing li
Please provide a JBPM feature request in JIRA referencing this thread.
Regards,
Koen
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970124#3970124
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970124
_
It "hangs around" because temp conversations propagate across redirects.
No, you cannot use a cookie, because that is not scoped to a browser window.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970123#3970123
Reply to the post :
http://www.jboss.com/index
Definitely NOT!
PCs are not supposed to be shared between users. If this is causing you
problems, it means that the scope of your PC is too long.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970122#3970122
Reply to the post :
http://www.jboss.com/index.ht
The header area is a div whose height and contents depend on the settings in
the CCS file, and on what portlets you add to the navigation panel. Use 'view
source' within your browser, the layout is fairly easy to interpret.
If you really want dynamic content in the header area, add a portlet to
Basel,
Thanks!! You saved me many nightmares!!. I 'll not try to use it for business
logic, I will simple use to get a node from the database using the servlet path
instead of putting a node's id variable in the url parameter :P.
juan.
View the original post :
http://www.jboss.com/index.html?
rcjboss wrote : Would like to know the product roadmap, specially when the
version 1.2 will be available (cluster aware/enabled for failover).
It's here:
http://jira.jboss.org/jira/browse/JBMESSAGING?report=com.atlassian.jira.plugin.system.project:roadmap-panel
To see all of it, click "all vers
HI GAYS!
Please I'm new to Jboss and JBPM, and JBPM-BPEL, I tried to follow the user
guide of jbpm-bpel but still unable to deploy jbpm-bpel.sar.
I need your help gays! thanks :-)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970116#3970116
Reply to the po
It would help if you posted the exact error message. The IP address 127.0.0.1
is for localhost, I am not familiar with 127.0.0.2. In your client, what is
java.naming.provider.url set to?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970115#3970115
Reply
Sorry if I was a little bit confusing
Server #1 (the first to be running) is 10.6.100.35
Server #2(starts when #1 is already running) is 10.6.100.37 and in this is
where I got the Exceptions
And for every TreeCache or PojoCache I'm using I use a different cluster name.
View the original post :
Hi everybody!
I'm new to JBPM and JBPM-BPEL Extension.
I tried to deploy jbpm-bpel under Jboss AS as mentioned in the documentation. I
have the following Jboss products versions :
Jboss 4.0.3SP1
jbpm-bpel-1.0-alpha4 wich use the jbpm 3.0 version
When I try to deploy "jbpm-bpel.sar" archive under
Or you could use the annotation "org.jboss.annotation.ejb.LocalBinding" to bind
the EJB to a different JNDI name (same effect as an entry in "jboss.xml" in the
EJB project).
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970112#3970112
Reply to the post :
h
The cid (what conversationId has been shortened to in cvs) shouldn't be
necessary after a conversation has ended. It does have a tendency to hang
around however, at least as I've observed in the seam scaffold application. I
wonder if cid could be stuck in a cookie instead?
You want nasty look
I've found a workaround: use the OCI driver. It works then.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970110#3970110
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970110
___
http://wiki.jboss.org/wiki/Wiki.jsp?page=SetupARootContextApp
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970109#3970109
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970109
_
OK,
now every thing is clear to me.
1) When using NB + Jboss, nb finds hibernate JPA in jboss' installation .
but by default hibernate JPA is not available for nb standalone, to add
hibernate JPA to a non jboss project, use this guide.
http://www.netbeans.org/kb/articles/hibernate-javaee.html
Next question: How did you create the war file? What are your war file
contents?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970107#3970107
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970107
Try:
Object ref = jndiContext.lookup("testejb301-0.1/UsersServiceBean/remote");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970106#3970106
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970106
_
Can anyone provide a rough estimate as to when EJB 3.0 GA will be available?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970105#3970105
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970105
__
Try not to use the Servlet API unless you have. Try something similar to this:
| @In
| private FacesContext facesContext;
| private HttpServletRequest request;
|
| public void initComponent(){
| request =
(HttpServletRequest)facesContext.getExternalContext().getRequest();
| }
The goal for JVoip (which is, sadly, now dormant due to lack of time) was to
have it run on J2ME phones using the JGroups-J2ME port as a transport.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970103#3970103
Reply to the post :
http://www.jboss.com/index.h
Hello,
I configured my JBoss 4.0.4 application server to point to MySQL database. I
changed jBPM configuration to point to MySQL database as well. I created jBPM
tables in MySQL db.
I am putting my jpdl file in the ear file and defining this information in
components.xml file also. But someho
re: 3) I'd still like to figure out how and why people use JMX to get a hold of
a cache instance.
I mean, maybe we should provide a JNDI binding for this sort of thing and only
provide a trimmed down JMX interface for statistics, configuration, lifecycle.
Basically, management, not operation.
You can certainly do load balancing without replication of session state; just
don't add the "distributable" tag to web.xml. But, we currently don't have the
ability to replicate application level state (ServletContext). There is a
feature request for this at http://jira.jboss.com/jira/browse/
1. You are right on printDetails(). So I guess if config element output is
formatted for human reading, a string output is fine as well.
2. If we will have mbean on the interceptor level, then I'd suggest to push as
much config attributes as possible since you are passing the config object in
t
Basically it just doesnt work, and probably wont be fixed, because they are
working on a new version for the 3.2 CVS head.
It IS fixed in the newer version, and groups show up fine, though it appears
that pooled users dont. We are looking at that now.
So if you can get the CVS head working, t
You probably have more success in posting to the JGroups dev and/or users
mailing lists (http://sourceforge.net/mail/?group_id=6081).
That said, Manik once started a JVoip project for Voice-over-JGroups, and we
even had a decent conversation over JVoipd between Switzerland and London. You
can c
Hi,
I am trying to package a webservice starting with a WSDL, I have to deploy it
on JBoss 4.0.2 (So, I can't use JBossWS tool). I have to handcraft the
deployment descriptors - webservices.xml, mapping.xml etc after generating
server side stubs from Apache Axis WSDL2Java Tool.
Are there any
Hello,
Could you please tell me if there are projects (or howtos) using jgroups for
online voice communication?
I would appreciate links and references!
Daniel
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970091#3970091
Reply to the post :
http://www.jb
You -object.xml should have a keep flag. Is it there?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970090#3970090
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970090
___
j
Did you download the IPC sample from Portletswap.com?
Some of the calls have changed in the api from 2.2 to 2.4.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970089#3970089
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=repl
JBoss IDE 1.6 is not made for Eclipse 3.2. Only JBoss IDE 2.0 (currently in
Beta) is.
Eclipse changed some underlying APIs, which made 1.6 unworkable with 3.2.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970088#3970088
Reply to the post :
http://www.j
Instructions for retrieving the project sources are on this page:
http://wiki.jboss.org/wiki/Wiki.jsp?page=PortalSVNRepo
(That page also includes documentation source retrieval)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970087#3970087
Reply to the pos
Hi,
Do you mind sharing your steps to configure the redirector?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970085#3970085
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970085
_
Hi all,
i think i m having a clash between wsdl4j and jbossall-client.jar, in the
sense that evenif i download (like i hav edone) wsdl4j.jar and replace jar in
jboss, i still have an old copy of jbossall-client.jar which contains same
classes (i installed jboss at end of july)
i try to get h
Glad I could help. We too are very new to bpm.
As for the persistence, in our situation we have a very slow process (Months)
which is externally moved forward via a custom webapp, so obviously we need to
persist the token counter. It seemed most logical to us to persist it in the
join at upda
I'm facing the same error!!
Eclipse 3.2 JBoss IDE 1.6.
Fil
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970082#3970082
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970082
___
OK, never mind, I do not need this any more.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970081#3970081
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970081
___
jboss-user
LOL
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970080#3970080
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970080
___
jboss-user mailing list
jboss-user@lists.
Well, doing a printDetails() can be even longer. :-)
Pushing the config elements to various interceptor MBeans is a holy grail of
sorts, but is not feasible for all elements (some aren't attached to any
interceptor, others are used by >1 interceptor, etc).
Re: operations on the cache via the
Because you are using the JbpmContextFilter, which opens and closes the context
for you in your servlet. Your servlet should not create a context, but should
get the current context.
JbpmConfiguration jc = JbpmConfiguration.getInstance();JbpmContext jbpmContext
= jc.getCurrentJbpmContext();
V
Does anyone had any idea on how could I possibly solve my problem to my recent
posts in this thread? Here is my configuration of my datasource:
|
|
|
| PortalDS
|
jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=jbossportal;SelectMethod=cursor,"portal","portalpasswo
Hi All,
This question is pretty trivial from the old model (Servlet or Struts). I'm
moving to JSF because of the component model, but I need to retrieve the
current path of the page, because of the permission mapped to this page in the
database. So, how to get the current path inside seam compo
hi all,
i m trying to generate a client using jbossws wstools ant task (within
maven2)..
here's my task
|
|
|
|
|
|
|
|
adding the log.
!ENTRY org.eclipse.ui 4 4 2006-09-07 17:45:07.843
!MESSAGE Unhandled event loop exception
!ENTRY org.eclipse.ui 4 0 2006-09-07 17:45:07.858
!MESSAGE org/eclipse/jdt/internal/debug/ui/launcher/JavaLaunchConfigurationTab
!STACK 0
java.lang.NoClassDefFoundError:
org/eclipse/jdt/int
Hi,
I have successfull configured a JBoss Security Domain for IBM Lotus Domino
using the org.jboss.security.auth.spi.LdapLoginModule.
I can authenticate to my Demo WebApp and also searching for roles
(isUserInRole) works correct.
My question is how to map the CallerPricipal to the DN.
My users
I am having the same issue. It would seem that even after specifying the target
namespace, the wsdl that is generated contains 2 complex elements of the same
java type. This then causes confusion to the client when calling the method
that would return or accept this type.
View the original pos
Hi.
It starts up the example queues and topics fine:
07:50:50,404 INFO [Queue] Queue[/queue/C] started, fullSize=75000,
pageSize=2000, downCacheSize=2000
I then copy the definition for one of those topics to my deployment file:
| jboss.messaging:service=ServerPeer
|
Actually no I had used the standard JBoss install via the installer, but it
turns out for whatever reason certian key jar files either did not get
installed or were removed by someone after the fact.
I've since tracked down all the needed Jars and everything works properly.
Thanks for your hold
Hi ALL:
Could anyone give me some hint to get MDB instance number from JMX-Console?
Thanks!
Kingofhawks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970068#3970068
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=397
Hi,
I am working with Eclipse 3.2 and just wanted to try JBoss IDE. I updated my
eclipse through Help -> Software Update -> Find & Install and the remote site
url being http://download.jboss.org/jbosside/updates/stable , I tried to
configure JBoss server through run -> debug option, but when I
Hi,
I created 2 different version of EJB Applications sharing the same EJB
Modules..Both are need to be deployed.To avoid class name conflict I need to
load different classloader for each applications.Where to do this?Is thr any
option to mention the classloader?
Thanks
Bala.
View the origina
I am attempting to accomplish a soft delete of entities without much luck. I
have constructed each table to have a column indicating "deleted". I would like
to be able to mark the object as deleted instead of the DB removal. How can
this be accomplished?
View the original post :
http://www.j
A new management alarm console is available under
http://wiki.jboss.org/wiki/Wiki.jsp?page=AGWTWebBasedGui
Source code and the ready to deploy war file is included.
Make your self free to use it and make your remarks
jiorgos
View the original post :
http://www.jboss.com/index.html?module=bb&
Yes it is the NavigationPortlet
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970060#3970060
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970060
___
jboss-user mailing list
Hi All,
A quick question: Is the area behind the tabs a portlet? If so what Class
is it?
I'm trying to get some dynamic content there and Don't know how if it is just
one big image.
Thanks,
andrew
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39700
anonymous wrote : Which got me to thinking. Why, if we're using EJB3 to manage
our POJO Entities, it is acceptable to return an object with Hibernate classes
to the client in the first place? JBoss itself is requiring EJB3 clients to
know Hibernate's involved?! Shouldn't the container be remo
101 - 200 of 255 matches
Mail list logo