Thank you for helping this poor sole :)
I think this should go into documentation ...
Best regards,
Jo
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097155#4097155
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40
Hi,
I'm pondering how Seam solves the problem of decoupling a ui element from its
action class so that it can be reused. Lets take an example, suppose I have a
datatable that I want to re-use in several places but i want different
clickable actions on (unknown at design time) action classes on
Here it is :)
| @Name("items")
| @Scope(ScopeType.CONVERSATION)
| public class Items {
|
| @Logger Log log;
| @In EntityManager entityManager;
|
| private List groups;
|
| @Create
| public void init() {
| log.info("init()");
|
Can we see the session bean that #{items} refer to?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097152#4097152
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097152
___
jb
Hi,
I've read the doc and still can't get this Seam feature to work. Essentially I
have something simple but I keep getting this:
| 15:18:15,305 WARN [lifecycle] EntityManager is closed
| java.lang.IllegalStateException: EntityManager is closed
| at
org.hibernate.ejb.EntityManagerIm
Got it. stateAdvisor was a solution.
Regards,
Yuriy
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097150#4097150
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097150
___
j
check out this link
http://jboss.com/index.html?module=bb&op=viewtopic&t=120031
hope this will answer your question
SGM
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097149#4097149
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&m
Hi,
Any ideas on how to have all nodes of rich:tree to be expanded by default?
Thank you,
Yuriy
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097145#4097145
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097145
Hi btsibr-
Sorry, we will answer this in due course. We're just very busy at the moment!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097144#4097144
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097144
_
There's no way to do this automatically currently.
If you like you could add a feature request in JIRA to add a parameter which if
true would enable message counters on start up.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097143#4097143
Reply to the post
Same problem happening to me. Trying to run seam-gen, in particular "seam
setup" and get error message during the init phase:
anonymous wrote : 1 required artifact is missing.
|
| for artifact:
| unspecified:unspecified:jar:0.0
|
| from the specified remote repositories:
| cent
Just tested this in my case works great! Good stuff.
|
|
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097140#4097140
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=
Ok. This sounds suspiciously like a problem that I thought was fixed. I'll
take a look at your test case in a little bit.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097137#4097137
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=postin
May be it's a late reply (just found this post occasionally). Try to use
resource adapters (look up for J2EE Connector Architecture)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097136#4097136
Reply to the post :
http://www.jboss.com/index.html?module=bb&o
@Stateful
@Name("registerNewMember")
public class RegisterNewMemberAction
implements RegisterNewMember
{
@PersistenceContext
EntityManager em;
//@Resource
//SessionContext ctx;
@In
Context sessionContext;
@In(create=true)
@Out
NewMember newMember;
@
Actually the status field is a var used in interation in a rich:dataTable, in
addition the JavaScript I want to pass the object to does not use AJAX put
manipulates decorations on a already rendered GoogleMap.
S.D.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic
Thanks for the response, I'll take a look at that the jsFunction you mentioned.
S.D.
"IGx89" wrote : One solution would be to have something like the following in
your HEAD section:
|
|
| |
| | var status = #{status};
| |
| |
|
| and just use that var in your script
Either use a4j:support nested inside your button using "onclick" or use an
a4j:commandButton instead of an s:button.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097130#4097130
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=
Did the library ever get opened up? If this is available, I'd love to
take a look at it. We're about to be generating really basic (yet functionally
important to our customers) XLS reports, and this would be all we needed.
View the original post :
http://www.jboss.com/index.html?module=bb&op
Hi Norman,
Yes I can confirm that by simply changing the scope to SESSION and removing the
@Begin does make the example work.
I also tried the @Out(required=false) Item and changed the page to read the
@Out-jected item instead of the action class getter and left the scope as
CONVERSATION. I g
I am using
Eclipse Version 2.0.0 with bundled plugin
and jbpm-jpdl-3.2.2
I am trying to deploy/run first example on jBoss site (Holiday Request).
Everything goes fine till I start running the instance.
On task form I see blank form, can someone advise how I can resolve it.
Thanks in advance.
Hi!
When I deploy my application in Jboss4.0.5GA ( clustered) I get nullpointer
exception at org.jboss.ejb.txtimer.DatabasePersistencePolicy.listTimerHandles
.
Is it some database-connection problem or some configuration error ?
I've succed to deploy it when running non-clustered
hi,
my problem is a well known problem but nonetheless i'm wondering how to do it
right..maybe one of you can help me with this issue:
i have a datatable which uses an extended datamodel (similar to this example
http://wiki.apache.org/myfaces/WorkingWithLargeTables) to cope with large
amount o
Thanks !!
I will put a side saturday for this
and get back to you!
regards, Inkimar
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097120#4097120
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097120
_
One solution would be to have something like the following in your HEAD section:
|
| var status = #{status};
|
|
and just use that var in your script.
Another possible (much more elaborate) method would be to use a4j:jsFunction
View the original post :
http://www.jboss.com/index.ht
The ear comprises of the wars and jars that depend on each other. There's no
seperate files away from the ear.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097116#4097116
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p
Basically I want to do something like this but it doesn't appear to work. Is
there something I can do to make it work?
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097115#4097115
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=
Forget it :)
Correct way was messageListenerInterface=MessageListener.class
Sorry :P
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097114#4097114
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097114
expand the europa update site first then eclipse update manager can figure out
to get the proper dependencies.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097113#4097113
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p
thx for the reply. It seems you're right based on the view source (HTML
rendered) in IE:
bigout
I don't know why the hidden field's value ("hideme") is not showing above.
val1 is blank and val2 is undefined in the javascript function when I run the
app. I modified the main.xhtml from the se
Hello there! I'm running JBoss 4.2.1 and I have this class inheritance:
| public abstract class AbstractMDB implements MessageListener{
| @EJB
| private bizRef;
|
| public abstract void operateMessage(Element message);
|
| public void onMessage(Message message){
| bizRef
in ejb-jar.xml -
inside the tag defining the EJB -
SECURITY_PRINCIPAL
java.lang.String
foo
SECURITY_CREDENTIALS
java.lang.String
bar
-
So that worked. Next I wanted to externalize the uid/pwd, i.e. remove the
hard-coded values. For that see:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=121632
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097108#4097108
Reply to the post :
ht
JOSSO forums may help you.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097106#4097106
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097106
___
jboss-user mailing list
jbos
The jboss.server.config.url property is only available when running JBoss AS.
It is not available in standalone Tomcat.
I suggest you define your own system property for the location of the
properties file and pass it in on the JVM command line.
View the original post :
http://www.jboss.com/in
http://wiki.jboss.org/wiki/Wiki.jsp?page=SecurityFAQ
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097105#4097105
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097105
___
jb
http://wiki.jboss.org/wiki/Wiki.jsp?page=SecurityFAQ
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097104#4097104
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097104
___
jb
OpenSAML2 implementation is happening in the community. I guess the JBoss-SSO
v2 work can start sometime.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097102#4097102
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097
You will need to provide an implementation of the CertificatePrincipal
interface.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097103#4097103
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097103
here's one i threw together, i'll leave it to you to figure out the dir
structure that goes along with it :)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
I don't know if it's working with cluster or not. But cluster and JBoss Portal
are two different things, so I don't understand your question. I do know that
JBoss Portal is using a custom classloader to deal with some of the JSF issues
discussed earlier in this thread.
For your OutOfMemoryErr
I'm having a problem using the updated to get this new version. Eclipse keeps
complaining about dependencies when I select the JBossTools Core 2.0.0beta4
Eclipse Modeling Framework Technology Workbench Integration
(1.1.0.v200702011903) requires plug-in "org.eclipse.emf.edit.ui (2.2.0)", or
com
You need an authenticator along the lines of GenericHeaderAuthenticator.
http://anil-identity.blogspot.com/2007/04/tip-3-token-based-perimeter.html
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097098#4097098
Reply to the post :
http://www.jboss.com/index.h
Disable container authentication and use your own authentication.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097096#4097096
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097096
_
The scenario:
I have a payment form where the user select a supplier by choosing from a
dropdown menu.
The user can edit supplier's data by selecting one from the menu and clicking
the "Edit" button. After editing (or canceling) changes, it returns to the
payment form.
So,
I need to get the
If u r using container authentication, then JAAS is an internal aspect of JBoss
AS.
Now if you want to do authentication in your application and want to do JAAS,
then you instantiate the login context. But the configuration of the login
module, still happens in conf/login-config.xml or using
JBoss implements the JACC specification in line with the Java EE 1.4
requirements.
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSX
http://wiki.jboss.org/wiki/Wiki.jsp?page=JACC
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097094#4097094
Reply to the post
Enable the apache single sign on valve in tomcat server.xml
http://wiki.jboss.org/wiki/Wiki.jsp?page=SingleSignOn
http://anil-identity.blogspot.com/2007/10/tip-7-sso-between-web-applications.html
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097093#4097093
R
i don't know much about web logic, but i imagine JBoss has a different default
JNDI naming convention. so, you could probably share the same java code, but
you'd still have to provide an app. server specific deployment descriptor.
View the original post :
http://www.jboss.com/index.html?module=
have you tried putting the persistence.xml in the META-INF dir?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097090#4097090
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097090
___
is there a separate war or jar that depends on classes in the ear?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097089#4097089
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097089
Can you verify that your example does or doesn't work if you change the scope
to SESSION and remove the @Begin. (still using an entity)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097088#4097088
Reply to the post :
http://www.jboss.com/index.html?modul
JBoss 4.2 uses the JSF RI whereas JBoss 4.0 uses myfaces. Your app will not
work until you make the appropriate configuration changes.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097086#4097086
Reply to the post :
http://www.jboss.com/index.html?module=b
JIRA for 2.0.0.GA states 53 of 53 complete. good job.
when can we download it?
it's not available yet on http://labs.jboss.com/jbossseam/download/index.html
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097077#4097077
Reply to the post :
http://www.jboss.
I also think these libraries can be in a Tomcat server as well. Sorry I forgot
to say that.
The above would only work in JBoss?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097074#4097074
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=p
I actually posted this in the JBossWS forum, but due to the underwhelming
response (0 replies to date) I was thinking maybe I posted in the wrong forum
so I'm posting here, where the EJB3 audience lives. It involves exposing my
EJB3 SLSBs as @WebServices.
Here's the original post from
http:/
In the interest of purity, the "Assignable" interface is admirably sparse.
However, from a practical point of view, it seems it would be useful if the
"Assignable" interface included the following methods:
getId()
getName()
getActorId()
getPooledActors()
These methods could help in writing reus
"kukeltje" wrote : That is because there is no jbpm source tarball anymore.
Use anonymous cvs access to get the source.
Nah. I can't access the cvs server from work and don't need the hassle.
Thanks anyway.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40970
What does the top declaration of your facelet page look like?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097064#4097064
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097064
_
Thanks for the link.
The documents I found before were outdated. Almost all of them referred JBoss
IDE instead of JBoss Tools.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097063#4097063
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=pos
how can I disable action for @Indexed from persistence.xml ?
thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097060#4097060
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097060
Ok, i've found the solution.
Mac OSX default ant installation is not provided with ant-antlr.jar ... so you
just have to copy ant-antlr.jar to /usr/share/ant/lib ant that's it !!
Vincent
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097055#4097055
Reply to
Thanks for the reply. I was able to use the prototype form.getInputs('text') to
get an array of my form elements and replace the values that way. However, this
doesn't work like I expected. Even though the HTML form contains the correct
values, the bean that the search is bound to has the old v
Disclosure: I have about four hours of experience with drools.
This contrived rule works:
rule ReadJobTicket
| no-loop
| activation-group "permissions"
| when
| check: PermissionCheck(name == "jt", action == "read", granted == false)
| JobTicket(titleName : title)
| Role(n
I am using Woodstock component library and its because of the Woodstock
UIComponentELResolver, that the seam built-in components are not working.
Is there any way this can be resolved so that we can use Woodstock and Seam
together?
Thanks !
View the original post :
http://www.jboss.com/index
One solution would be to have "@Out private Item item;" in TestPageAction.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097046#4097046
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097046
JSF pretty much generates id's of the form : container1ID:container2ID:elementID
but it depends on the container.
If you are still stuck there are other ways to approch this.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097044#4097044
Reply to the post :
"PeterJ" wrote : The "cannot find the server" message usually means that there
is no host that corresponds to the IP address. Can you ping the server?
|
| What is in the /etc/hosts file?
|
| Have you tried setting -Djava.net.preferIPv4Stack=true in the JVM command
options.
|
| So m
I forget to put first line of Exception :
anonymous wrote :
| 17:45:12,171 ERROR [[/pvente]] Exception sending context initialized event
to listener instance of class
org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
| ...
|
View the original post :
http://www.jboss.com/in
How did you encounter this class? It is not in 4.0.5, 4.2.1 or 5.0beta2. I even
searched the sources.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097035#4097035
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097035
You could access the properties file using one of the system properties that
identifies jboss directories. For example, if the properties file is at
server/xxx/config/app.properties, you can access it as follows:
String configDir = System.getProperties("jboss.server/config.url");
| Properties
I get an an javax/el/ELResolver Exception when project is deployed on Server
4.2.1.GA.
project has been created using Seam-Gen with Server 4.0.5.GA and is working
fine on 4.0.5.GA.
If I check the libraries folder on the server
jboss-4.2.1.GA\server\default\lib, I can see the jar : el-api.jar
The "cannot find the server" message usually means that there is no host that
corresponds to the IP address. Can you ping the server?
What is in the /etc/hosts file?
Have you tried setting -Djava.net.preferIPv4Stack=true in the JVM command
options.
So many things that can go wrong. Ain't Linux
Hello !
I have the same problem but I am using panel collapsible.
Is there any solution for this problem?
help me please T_T
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097028#4097028
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posti
Is there a good template for an ANT build.xml
file?
I would like to compile, build, deploy, undeploy, test an ear application.
Thanks for Your support.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097027#4097027
Reply to the post :
http://www.jboss.com/ind
So use one out of whatever other component set you use - pretty much everyone
has one ;)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097025#4097025
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097025
_
Can someone help I am using seams 2.0 and I am getting this error when trying
it run my code
@Stateful
@Name("registerNewMember")
public class RegisterNewMemberAction
implements RegisterNewMember
{
@PersistenceContext
EntityManager em;
//@Resource
//SessionContext ct
Hello All,
Using Seam 2.0.0CR1, I have a form where I want to change the value of a
element based on the selection of a DDLB. It seems overkill
to use Ajax, and to make a round trip to the server in order to change the
value of an HTML input -- so I wrote a simple JS function to change the
Hi,
Thank you for your reply.
I have found a solution for decouple my App with the SLSB, but i want a way to
kill that SLSB that is consuming 100% of CPU. Is there a way to signal the
JBoss to kill that instance that is not functioning well ?
Because i am dependent of external SLSB which are o
I think that is bad idea ! I need to use this tag but I dont`t wont to use rich
faces library !!!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097021#4097021
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097021
___
1) thinks in JMS for decouple APPs.
2) SLSB not support @Remove. Remove is a SFSB event.
regards,
DC
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097016#4097016
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097016
_
Hi,
The isUserInRole("String") always returns false for the default roles in jboss
which are "Admin" and "Users" or whatever default roles comes with jboss.
I don't know if there are any configurations that I should do first. Searching
in this forum for this question is hard since there are lots
We have 3 JBoss server instances with Java libraries as war files. In the code
they access a common java "properties" file. This is common across the 3
servers, since they share the same code.
I need to find a way to qualify the variables in the property file with the
name of the server insta
Hi,
I had problems encoding in Mail.java on subject and
text.
I changed like this :
message.addHeader("Content-Transfer-Encoding", "UTF-8");
| message.setSubject(subject, "UTF-8");
| message.setText(text, "UTF-8");
View the original post :
http://www.jboss.com/index.html?module=bb&op=view
Apparently this is a hibernate bug
http://opensource.atlassian.com/projects/hibernate/browse/HHH-2018
the good one for you is this was recently corrected :) just check out the last
sources...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097005#4097005
Rep
I've started work on a new Getting Started Guide which you can find in SVN here:
http://anonsvn.jboss.org/repos/jbossas/projects/microcontainer/trunk/docs/Getting_Started_Guide/
It's only a couple of pages at the moment as I have still to check in my
examples and additional content.
To build it
The first four are the standard ones. The last only comes into play if you go
out of your way to use an obscure feature in the jmx-console.
Unfortunately there's no simple way to verify isolation. A good approach is to
give each cluster a different partition name (via the -g swtich at startup)
Hi,
have a look at soapUI (http://www.soapui.org), which is an extremely popular
free open-source desktop app for invoking, testing and simulating any
web-service. It even has built-in support for the jbossws wsconsume toolset and
there are plugins for eclipse, netbeans and IDEA..
Previously
Hi guys,
It's really urgent!
Does anybody has a solution for that??? Anything!
Thanks,
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096998#4096998
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096998
_
Yes, although at this point mod_jk remains the preferred solution.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096996#4096996
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096996
"PeterJ" wrote : Don't forget to open the ports in your firewall. I opened
8080, 1099, 1098, , 4445.
The guy that opens up ports here at work isn't available right now to do that
for me.
Is port 8080 good enough because I know for a fact that port 8080 has been
opened but I still get "Cann
:)
the problem was my constructor was not declard with PUBLIC modifier. The second
thing, the war file is never published if it is renamed from .rar extension to
.war.
It should always be proper zip file and that can renamed to war and it works
fine.
View the original post :
http://www.jboss
"roth" wrote : Check out
http://wiki.jboss.org/wiki/Wiki.jsp?page=GiveAdminPrivileges
I did. The role name in my ldap server is called "Admin", so the name did not
change. That is where I am getting confused.
Thanks for the reply
View the original post :
http://www.jboss.com/index.html?module
I was doing a mistake and it deployed succesfully.
Now , I created consumer.java
| import java.rmi.RemoteException;
|
| import javax.xml.rpc.ServiceException;
| import de.iplabs.*;
|
| public class consumer
| {
|public static void main(String args[])
|{
|
|
Hi to all,
I have an application which calls other Statless Session Beans, and i want that
my application be independent and be protected against EJB which have high
executions times.
My application has the EJB reference which will call and tests if the execution
time of an EJB exceeds a defin
Hi all,
I'm beginner in Services and Web-Services development, but my boss asked me to
do :
jBPM-BPEL integration as a JBI component in a JBI ESB platform.
Does anybody know if that can be done, and if it is coherent to do ?
I read this topic :
http://www.jboss.com/index.html?module=bb&op=view
Hi,
JBoss currently lacks something similar to the Glassfish ws Tester, however
we're working on this. For further information, take a look at
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=121127
Feel free to comment!
In the meantime you might evaluate Wise http://www.javalinuxlabs.or
i can't see any problem, i tried it exactly with the code you have posted and
it works
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096976#4096976
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096976
___
dear vitor_b,
did you manage to do asynchronous calls as you described here? i would be very
interested in how it works.
or can anyone else help me? i don't want a stateful shopping card, but a
webservice that calls back to the client after processing the request, because
in my case this can be
Hi,
Have looked on the forums and not found any reference to the warning message:
Unable to process deoployment descriptor for context 'null'
Has anyone had this message when deploying to JBoss and discovered the solution?
Thanks in advance,
Mike
View the original post :
http://www.jboss.co
1 - 100 of 173 matches
Mail list logo