Creating connections is (relatively) a very slow process, so you should avoid
creating them every time you want to check a message (it's an anti-pattern
creating a connection every time).
Also your call to session.close() is redundant since you're calling
conn.close() which will close the sessi
However you should avoid using selectors on queues that do not match most
messages - it is an antipattern and they won't scale.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952232#3952232
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=p
Problem solved; first I was stupid, and second is I'm not sure. ;-)
First.
As I mentioned earlier, I run JBoss with this command line:
%JBOSS_HOME%\bin\run.bat -Djboss.server.base.dir=%JBOSS_PRIVATE_DIR%\jboss
Investigation showed me that run.bat don't pass its arguments to JVM under the
hood, and
Hello,
You can change the port number in the file server.xml in the
path:/deploy/jbossweb-tomcat55.sar
For example, In server.xml,
|
|
|
Now, JBoss will start in the port 8082 instead of 8080.
You can change port number as your wish before that, make sure tha
How can change the User's profile in program ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952228#3952228
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952228
___
JBoss-
Can avoid the error with "-server" by changing the EJB/Hibernate loading
sequence, i.e. by pre-loading some reference Entity objects earlier rather than
on-demand.
Does JBoss do any major initialisation load testing with EJB3? I mean 20+ SQL
statements on Web-App startup (i.e. in first request)
I will give it a try without 1.
Thanks
L
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952225#3952225
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952225
___
JBoss-use
Hi All,
How do i make the JBoss server listen on some other port than 8080? As i have a
dedicated service running on 8080, i cannot use this for JBOss.
I am running JBoss 4.0.4 GA and i have jdk 1.4.2_01-b06.
Thanks,
Santosh
View the original post :
http://www.jboss.com/index.html?module=bb
I read all the documentation and examples, but am still stuck.
I understand your reply for scenarios where the subnodes are fixed and hence
can be configured in a region. But what if the subnodes are created at run-time
and can be named anything. As I understand we can't create regions at run-ti
Using JBoss 4.0.3 wsee webservice stack and webservices with attachments. When
the webservice receives a request that uses a javax.xml.transform.Source as one
of the method arguments a NullPointer is hit in the JavaUtils convert code.
Here is the error:
2006-06-21 03:00:23,116 ERROR [org.jboss.a
I can get what I need by associating an action with a node-enter event on the
process-state and then having that action copy properties into context
variables, i.e.
"" +
| " " +
| "" +
| " " +
| " " +
| "" +
| " " +
|
In my application I connect to a different JBoss servers and take the same
types of CMP entity beans with unknown primary keys. So when I check for
"isIdentical" two beans from different servers, then sometimes I had an
unexpected result, that this beans are IDENTICAL!
I found in the sources, th
I have problem too .
After XDoclet configurations, I would like to run XDOCLET , but the result is
below
BUILD FAILE
\xdoclet-build.xml:33: Unexpected error
Can anybody help me?
Thank you
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952215#3952215
FYI to those following the EJB 3 Trail from their locally installed Trail -- I
had the problem with 4.0.4 GA where I would get "EJB3Trail not bound". To fix,
I downloaded the (latest) EJB3 code from here:
http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=132063
Inside thi
Dear all,
I am using JBoss 4.0.3sp1 .
I have some applications that need to read some xml files in the server. In
two nodes, there have 2 set of xml files. I want that if I change the file in 1
node, the other node can also change its local copy. I know I can put in "farm"
directory, but the
It is stored in the JSF ViewRoot attributes.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952209#3952209
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952209
___
JBoss-us
Another simple question: My overall goal is to use JSF to build an application
with persistence. I was going to use Hibernate (which I am familiar with) but
that does not seem like a good way to go, because there isn't a natural way for
JSF backing beans to deal with Hibernate Sessions. It loo
Can you send me the JBoss server output please?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952207#3952207
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952207
___
JBoss
The base source was fine. Thanks, it compiles now. Unfortunately, I'm still
getting the same exception in the consumed portlet.
I've a fresh check out into Eclipse, so tomorrow I'll poke around a bit and see
if I can help fix this.
Thanks for getting the source in shape.
View the original p
I'm getting this exception with my JSF application:
| 2006-06-20 16:29:02,603 ERROR
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/ChargeMyMobile-war]]
StandardWrapper.Throwable
| java.lang.NullPointerException
| at javax.faces.webapp.FacesServlet.init(FacesSer
Hello Forum Folks,
I'm trying to retrieve the j_username value from the session after a user
SUCCESSFULLY logs in. I have the form authenticator setup and the user is able
to log in correctly, however, I am getting null for the j_username value. I'm
probably missing some small detail somewhere
I've written in web.xml these role:
|
|
|
|
| Secure Content for
administrators
| /administrator/*
|
|
| Administrators
|
|
| NONE
|
|
|
We do not have a syntax for automatically substituting the value of a variable
while initializing an action handler field. You can, however, interpret the
literal from the process definition as a variable name and retrieve the
variable value from the execution context:
public class MyActionHandl
I think the answer is the same for all of us -- don't use List, unless you have
a really good reason. Use SortedSet.
Then you can use @Sort(type=SortType.NATURAL) if you have Comparable
implemented, make your own Comparator, or leave it unsorted. I'm assuming that
like me, you only used List b
As we discussed, I can work around this for Session scoped SFSB's by using the
JBoss specific @CacheInfo annotation, setting the timeout to be the same as an
HttpSession.
But what about Application scoped SFSB's? We run into this same problem due to
the aforementioned reasons in this thread.
Here's a code snippet:
InitialContext iniCtx = new InitialContext();
|
| Object tmp = iniCtx.lookup("java:/JmsXA");
| QueueConnectionFactory qcf = (QueueConnectionFactory) tmp;
| QueueConnection jmsConn = qcf.createQueueConnection();
|
| jmsConn.start();
|
| Session sess = jmsCo
Can some provide a list of open source JTA implementations that have been
tested with JBoss cache? I am looking for a JTA implementation that doesn't
require a database to write transaction logs. Is that possible?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&
I don't know if this has been discussed here, but how can we secure AOP
applications running standalone on a client? With this feature (byte code
manipulation) how can I stop malicious coders from injecting code into my app?
Lets say I have already distributed an unsigned application. A hacker m
Forgive the newbie question...
Looking at the jpdl schema it doesn't appear that there is a way to directly
specify (inject) process context variables from the process definition itself.
The nearest you can come is to specify a property on a delegation class such as
an Action e.g.
|
It works like a charm now. There were some minor setbacks like the .sh to build
the classloader does not work in mac, but it can be compiled easily. Also when
running the application, there are several warnings and harmless errors, but i
think i can figure this one out. Thanks again.
Regards,
Yes, I'm using the JmsXA to create a connection on each request.
Any idea what the createQueueSession method might be waiting on?
Is there a connection pool setting that I should play with? I tried changing
the max-pool-size on the JmsXA resource but it didn't seem to have any effect.
Also, no
Hi ArnieAustin,
envirnoment:
JBOSS4.0.3SP1 Application serve r
JBoss-portal2.2
LDAP
I was also getting the same error when I made the changes as per the link :
http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingAnLDAPSourceForPortalAuthentication
| **error message***
Indeed:
http://wiki.jboss.org/wiki/Wiki.jsp?page=AvoidMySQL5DataTruncationErrors
:)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952187#3952187
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952187
It should be fixed now.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952185#3952185
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952185
___
JBoss-user mailing list
JBoss
Thanks for finding this issue. Submitted
http://jira.jboss.com/jira/browse/JBINSTALL-54.
If you are just trying to install one of the bundled profiles (default,
minimal, ejb3, etc) without having to customize the packs selected, then you
can run installer from command line and specify installg
Oh, I get what you mean now. Your string contains markup and the engine does
not escape the delimiters. The BPEL spec does not require that delimiters be
escaped when sending messages over the wire. That is the responsibility of the
process designer.
>From your stack trace, I guess the target s
I am using a durableSubscriber with JBoss Messaging. After running for a while
and publishing to topics and retrieving them with the durableSubscriber I get
the following error:
java.io.IOException: Can not find a free port for use.
I am not sure why I am getting this, I am pretty sure I am cl
Hi,
I use Spring/Hibernate in my web app for data access. When the app is running
and the database has been brought down and then UP after some time, the default
connection pooling in jboss is not active and am getting exception. Can
somebody help me how to fix this up?
This is what i use in app
You can call me lazy. But neverthless I ask.
Is there any JSF component that presents the JBPM process flow to the user. My
idea is actor can interact with this component and trigger completion of each
task.
Thanks
Vamsi
View the original post :
http://www.jboss.com/index.html?module=bb&op=vi
Interesting. Are you using the JCA adapter, i.e. "java:/JmsXA"? You should use
this to obtain a new JMS connection each time.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952178#3952178
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=post
|
| Allows the override of the suffix order declared by
subdeployers, using the syntax [order:]suffix
|
| EnhancedSuffixOrder
| [Ljava.lang.String;
|
|
|
|
|
View the original post :
http://www.jboss.com/index.html
This is what am using in the MainDeployer XML so that oracle-ds.xml gets
deployed before the web app.
Also if am not looking the JNDI in my app during the startup(ie in listener),
everything is fine and the server gets started and app gets deployed, and if
lookup the JNDI at this stage, am abl
actually i tried changing the order of deployment after i got the
NameNotFoundException. I guess in default, the oracle-ds.xml will be deployed
before the web app gets deployed, correct me if am wrong? If so why in my
listener class it says NameNotException when i try to lookup the JNDI
name(ja
are you sure that the problem is the order of deployment and not some other
jndi configuration problem? you can try to hot deploy your application after
the sever is already running...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952171#3952171
Reply to th
applicationContext.xml
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952170#3952170
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952170
___
JBoss-user mail
This is what i use in applicationContext.xml
And my oracle-ds.xml is
CcpiDS
{T}db.ccpi.url{/T}
{T}db.driver{/T}
{T}db.ccpi.user{/T}
{T}db.ccpi.password{/T}
org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSort
Here's what I think I need for my use case.
When I call Client.invoke(InputStream, Object), I want to be able to give it my
own Connector. In other words, my client will create and setup its own
connector - I just want the Client to wrap my connector in the StreamServer
object (the StreamServe
Hi,
I have web application which access the database reading the details from
oracle-ds.xml. I want the oracle-ds.xml to be deployed first and the JNDI name
be readily available so that when my application gets deployed, it can access
it thru the JNDI name, but my app gets deployed first and so
Hello,
Delete this post - it was a case of stupidity.
The message selector works great.
Dennis
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952159#3952159
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952159
Indeed last CVS version doesn't compile... Gonna fix that.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952158#3952158
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952158
__
http://jira.jboss.com/jira/browse/JBREM-519
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952156#3952156
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952156
___
JBoss-use
You're not able to build the latest CVS version? Or Beta 1 with modified files?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952155#3952155
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952155
_
According to the Javadocs of StreamServer:
anonymous wrote :
| * NOTE: That once this class receives the close() method called
| * from the server, it will also stop and destroy the internal
| * remoting server, since is assumed there will be no more callbacks
| * (since the stream it
Hello,
I am passing messages around in a couple queues and want to filter the messages
based a session key.
I have a SessionKey string property in the TextMessages and try to filter the
messages with this code:
String messageSelector = "SessionKey='" + sessionKey + "'";
Sorry, the size is 4474 bytes.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952150#3952150
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952150
___
JBoss-user mailing lis
Chris,
I'm using the version that was in CVS as of last night. It's dated 6/11/06 and
is 2442 bytes.
I've banged my head against the wall with wsrp4j and uPortal and feel like I'm
real close to getting JBoss to work here.
I also updated the wsdl_services.wsdl based on a thread in the WSRP Dev
I've seen this method, its return value is boolean. There is a method that
return the string of the role?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952147#3952147
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952
Hi,
I am new to Both Fedora 5 and Jboss.I an unable to access the JBoss We
console.This is the error which i am getting when running the JBoss server.
i started the server by command ./run.sh &
I am getting the JBoss starting window,but getting an error when accessing Web
Console.
Please let
Hello,
I am writing my master thesis about Jboss Seam/EJB3/JSF and I am looking for
some information about how the client-state saving takes place. In the Seam
reference documentation is written the state is saved within the client
browser. But where is the information exactly, is it in the cac
I have a TestNG test suite that runs to test my integration with the remoting's
streaming feature. The first test runs fine but the rest of the tests fail
with this:
| Caused by: org.jboss.remoting.InvalidConfigurationException: The invoker
for locator (InvokerLocator [socket://192.168.0.2:
XML schema allows you todo that.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952142#3952142
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952142
___
JBoss-user mailing l
I looked for in this forum for the following message:
Http Status 400 : Invalid direct reference to form login page
I found some reply, but I did not obtain to decide my problem.
Where I can find a skill simple to implement a security in my application being
used struts and JAAS. It follows be
http://jira.jboss.org/jira/browse/JBWS-996
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952139#3952139
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952139
___
JBoss-user
Thanks Gavin. Problem solved.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952138#3952138
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952138
___
JBoss-user mailing list
Hi,
I'm running JBoss AS 4.03 to perform some simulation work. I've got an MBean
which spawns off various threads. Each thread in turn calls
java.lang.Runtime.exec() to create a native process. Invocation of this works
find. I can create processes all day long and interrupt my threads. However,
Of course the @Begin is what was missing. For some reason, when I read the
reference doc, I got the idea that it wasn't need when starting a "Push"-style
MVC page action!
Now that I read it again, I must say it was written properly :)
Thanks again,
Richard
View the original post :
http://www
Which version of webservices.xml are you using? I have re-added extension
stripping that had been removed at some point starting with version 1.4. That
is the problem you are experiencing.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952133#3952133
Reply t
I am running into the same issue as well.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952129#3952129
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952129
___
JBoss-user
Aw dang!
I used Confluence markup tags instead of the BBCode tags - now my post is more
difficult to deciper. :(
(Help still?)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952128#3952128
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=p
request.isUserInRole("abc"), of course read the spec as you need to declare you
role in the portlet.xml
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952126#3952126
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=395212
Probably a bit late but as I was also looking for a Tutorial thought I'd post
for other people.
There is a demo at
http://labs.jboss.com/portal/jbossrules/livetrails/index.html which shows you
how to create a project and run it in Eclispe.
View the original post :
http://www.jboss.com/index.h
after many long hours...
I have come to the conclusion that JBoss Portal does not work with MySQL 5.0...
This has probably already been stated...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952124#3952124
Reply to the post :
http://www.jboss.com/index.
Hi all,
We are running into a problem using JBoss 4.0.2 and Hibernate 3, and we're out
of ideas at the moment. Let me describe our design: we have a core EAR file
which contains some core classes, used by all of our applications. So far, all
the applications used JDBC to access the database, bu
You can try commenting the following line inside jbpm.cfg.xml:
Let me know if this doesn't work for you.
Btw, are you using this in production and how is your performance?
I didn't really try running any profilers or something yet to determine the
performance issues but would appreciate hea
Very new to JBossWS. I have JBoss 4.0.4.GA, JDK 1.5 and EJB3 installation. I
deleted the existing jbossws.sar and expanded the new jbossws.SAR from JBossWS
1.0.1.GA as the user guide says. Started the server and I am getting this:
| 2006-06-20 23:31:58,921 DEBUG [org.jboss.deployment.MainDepl
Hello all,
I am having intermittent trouble with JMS provider failover. I am setting up a
number of JBoss instances (4.0.1sp1), each running the 'all' configuration, on
separate boxes. They are each being deployed under the default partition. My
goal is to have a uniform server configuration
hey guys how good are hotcerts.com preps for solaris exams ? .
iam going to take one soon and i need ur guys help ..please do let me know
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952116#3952116
Reply to the post :
http://www.jboss.com/index.html?m
Has anyone successfully run unit tests with a Maven 2 pom.xml for a Seam
project?
I am having some trouble getting this to work... here is what I have attempted
to do:
1. I downloaded the latest Embeddable EJB3 (Alpha 8 - patch 2)(?)
2. installed the .jar's with this distro in my .m2 reposito
A request: As you answer various questions about architecture approaches, is
it possible to mirror those back to this topic for the rest of us to enjoy?
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952113#3952113
Reply to the post :
http://www.jb
I'm very new to seam, jsf, ejb3... But I thought I could get the demo running
with the instructions provided. I'm having trouble with the Lab 3 Step 1. I
don't know where to put the @End, is this in the NewHotelAction class?
View the original post :
http://www.jboss.com/index.html?module=bb
Hello again.
Indeed, the ExecutionContext has a getTimer method, but it seems it always
returns null. Has it has no javadoc, i'm not sure this is the good way to
retrieve the timer of a task. Perhaps it just works when you use it from a
timer action...
I'd prefer use only the jBPM API, and avo
same issue :( sry
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952106#3952106
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952106
___
JBoss-user mailing list
JBoss-user@
Yes - SP2 did fix some issues around transaction handling and this may apply to
your case.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952103#3952103
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952103
___
I can successfully build the base beta1 source and swapped out the
webservices.xml and wsdl_services.wsdl.
Unfortunately, I'm still getting this exception from the WebLogic consumer:
| Fault: {http://schemas.xmlsoap.org/soap/envelope/}Client
| javax.xml.rpc.JAXRPCException: org.jboss.ws.bin
Thanks for considering it, Gavin.
However, I don't like it either because it doesn't fully solve the problem: in
the example above, the same class would be used as a Seam component in some
roles but not in others.
My suggestion: a "create" property in the @Role annotation (and in @Scope?).
Def
I resolved.
Simply add windows and ref to the instances in *-object.xml file.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952099#3952099
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952099
___
Thank you for your response and the link.
It's working now!
I had the helloworld.jsp in the Helloworld.war folder and used the
http://localhost:8080\Helloworld\helloworld.jsp
But, It seems I had "Helloworld.jsp" and an extra "<" in the web.xml file.
View the original post :
http://www.jb
I'm looking at the streaming functionality of remoting and would like to
initiate a discussion on its shortcomings and how to address.
First, it looks like the client side creates its own server connector. I don't
see a way to customize it other than setting System properties for the
transport
I noted a 10 second increasing on a total of 50 seconds when I switched from
alfa6 to alfa8.
DEBUG 20-06 19:35:32,937 (KernelFactory.java:assembleNewKernel:86) -Starting
JBoss Kernel construction...
DEBUG 20-06 19:35:33,078 (KernelFactory.java:assembleNewKernel:112) -Completed
JBoss Kernel co
Ah, I have never actually figured out how to make urls without extensions work
in JSF. Not saying its impossible, it is something I don't know the answer to.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952095#3952095
Reply to the post :
http://www.jboss.c
Yes, that is what appears to have been the problem, thanks!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952094#3952094
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952094
_
It seems he's trying to locate the local mbeanserver, which doesn't exist.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952093#3952093
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952093
__
I suppose I could let you write @Scope on a class with no @Name. Put it in JIRA
and I'll make a decision about that later. I don't love it, but maybe I can
grow to like it.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952092#3952092
Reply to the post :
ht
It worked.
Thanks a lot.
Luan
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952091#3952091
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952091
___
JBoss-user mailing list
You should definitely NOT have to do (1). The other steps should be enough.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952090#3952090
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952090
_
Would it make sense for me to just copy the webservices.xml and
wsdl_services.wsdl updates to the base source and build from there? It appears
as if some refactoring is going on and rolling back just a file or two isn't
going to do the trick.
View the original post :
http://www.jboss.com/index
I don't see where you start the conversation.
Should perform() have an @Begin annotation?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952088#3952088
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952088
__
Hi,
I have to make a redirection based on user role, how can I get user role?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952087#3952087
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952087
___
I've tried to do something based on the Hibernate Wiki Audit logging. My
problem was to be able to get updated properties of an object.
Results was this post:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=70335
I don't know if the method has been added in hibernate. For me that activi
I think that this isn't possible until last 2.4 release...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952084#3952084
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952084
__
1 - 100 of 284 matches
Mail list logo