[JBoss-user] [Beginners Corner] - Re: Sending e-mail from bean

2005-08-23 Thread Cinimod
but i want to set the serverproperties as servername and the password/username 
dynamically. If the user is connecting he provides these parameters.

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

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


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Sending e-mail from bean

2005-08-22 Thread Cinimod
Hi,

within my stateful session bean i am using the following method, for sending an 
e-mail:

  | private void sendMail(String subject, String receiver, String sender,
  | String content, String mailbox, String 
password,  
  | String  mailServer) {
  |  Password authenticator = new Password(mailbox, password);
  |  Properties sendProps = new Properties();
  |  sendProps.put("mail.smtp.host", mailServer);
  |  session = Session.getInstance(sendProps, authenticator);
  |  try{
  |Message message = new MimeMessage(session);
  |message.setFrom(new InternetAddress(sender));
  |InternetAddress[] to = { new InternetAddress(receiver)};
  |message.setRecipients(Message.RecipientType.TO, to);
  |message.setSubject(subject);
  |message.setSentDate(new Date());
  |message.setText(content);
  |Transport.send(message);
  | }catch(MessagingException mex) { mex.printStackTrace(); }
  | }
  | 

but if i try sending i receive the following error:


  | 
  | 12:29:28,592 INFO  [STDOUT] javax.mail.MessagingException: Could not 
connect to SMTP host: localhost, port: 25, response: -1
  | 12:29:28,592 INFO  [STDOUT] at 
com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1201)
  | 12:29:28,592 INFO  [STDOUT] at 
com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:311)
  | 

As you can see, the smtp host is set to localhost - but that is not what i set 
for the mailServer parameter, when i am calling up the method.

Of course, i can set a resource-reference in the ejb-jar.xml respectively 
jboss.xml but i want the parameters to be different for each method call.

Does anybody have a solution to this problem?

Thanks for any advices!

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

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


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - [CashedConnectionManager] Closing connection for you...

2005-08-12 Thread Cinimod
Hi,

i am sending messages to a messagedriven bean that delegates them to a stateful 
session bean, that responds to the client by sending messages to the specific 
topic the client is also "connected" to.

My messages are received correctly by the client but the jboss log tells me 

  |  11:47:07,436 INFO  [CachedConnectionManager] Closing a connection for you. 
 Please close them yourself: [EMAIL PROTECTED]
  | java.lang.Exception: STACKTRACE
  | at 
org.jboss.resource.connectionmanager.CachedConnectionManager.register
  | Connection(CachedConnectionManager.java:319)
  | at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateC
  | onnection(BaseConnectionManager2.java:477)
  | 

i thought that the topicConnection should be closed, but i do this in the 
ejbRemove() method of the stateful session bean.

Can you explain me why this log is output?

Thanks for answers.

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

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


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - No message-driven destination given

2005-08-08 Thread Cinimod
Hi,

when i deploy my bean the log tells me the following:

[JMSContainerInvoker] No message-driven-destination given; using; guessing type.

In my ejb.jar i use version 2.1 and not 2.0, where it is necessary to set this 
entry. Why does jboss 4.0.0 give me this output?

Thanks for answers!

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

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


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Why do messages stay in the Queue?

2005-08-08 Thread Cinimod
Hi,

i have a problem when sending a message to a message driven bean.
The onMessage(Message m) method is invoked and i can process the message, but 
the message stays in the queue - or topic. So, if the MDBean checks the queue 
for new messages, there will always exist - at least - one.

How can i solve this problem? 

Thanks for any suggestions!

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

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


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-20 Thread Cinimod
it works...i typed WiseSessionLocalHome instead of WiseSessionHomeLocal.

Thanks for your good advices!

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-20 Thread Cinimod
ok, here are all the relevant deployment descriptors - updated:

part of ejb-jar.xml

  |  
  |WiseSessionBean
  |beans.session.WiseSessionHomeLocal
  |beans.session.WiseSessionLocal
  |beans.session.WiseSessionBean
  |Stateful
  |Container
  |
  |   
  | 

jboss.xml:

  |   
  |
  | 
  |
  | WiseSessionBean
  | WiseSessionHomeLocal
  | 
  | 
  |   
  | 
  |  
  | 

part of web.xml:

  |  
  |WiseSessionHomeLocal
  |Session
  |beans.session.WiseSessionHomeLocal
  |beans.session.WiseSessionLocal
  |WiseSessionBean
  |   
  | 

Deployment works fine, but as soon as my servlet runs, trying to call up the 
bean it tells me again:
javax.naming.NameNotFoundException: WiseSessionHomeLocal not bound.




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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-20 Thread Cinimod
is the name of my jar where i put the bean classes in, of importance?



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Error in accessing application metadata

2005-07-19 Thread Cinimod
Hi,

Deploying my application i receive the following error:

javax.management.InstanceAlreadyExistsException: 
jboss.j2ee:service=EARDeployment,url='app.ear' already registered.

If i do a complete shut down, i can deploy it when restarting. 
Just deleting the file and deploy it again, while the server is running, does 
not work.

Does anybody know how to handle this?


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-19 Thread Cinimod
ok, i change the following:

now:

  | WiseSessionBean
  | WiseSessionHomeLocal
  | 
i had it just the other way round...


also i added this to the jboss-web.xml

  | 
  |  WiseSessionBean
  |  WiseSessionHomeLocal
  |  WiseSessionBean
  |  
  | 

deployment works, but when i run the application the log says:

javax.naming.NameNotFoundException: WiseSessionHomeLocal not bound.

What´s wrong? 


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-19 Thread Cinimod
the .jar and .war are both contained in the same ear file.

Any ideas how to solve this?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: why is my LocalBean not bound?

2005-07-18 Thread Cinimod
ok, i did add the following in the web.xml:

  |  
  |WiseSessionHomeLocal
  |Session
  |beans.session.WiseSessionHomeLocal
  |beans.session.WiseSessionLocal
  |WiseSessionBean
  |   

But when i deploy the log tells me a NamingException:
ejb-local-ref: "WiseSessionBean", with web.xml ejb-link: "WiseSessionBean" 
failed to resolve to an ejb with a LocalHome.

As you can see above the  value is the same as the  value 
in ejb-jar.xml, shown in my first post. 

what´s the problem and how to solve it?

Thanks for any suggestions.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - why is my LocalBean not bound?

2005-07-18 Thread Cinimod
Hi,

i have a problem working with a LocalBean that i call from a servlet.


  |  jndi = new InitialContext();
  | WiseSessionHomeLocal localHome =  (WiseSessionHomeLocal) 
jndi.lookup("java:comp/env/WiseSessionHomeLocal"); //load the bean
  | 

 The log says that the name of my bean is not bound - but everything is ok 
considering the jboss-web.xml and ejb-jar.xml:


  | 
  | 
  |   
  |
  | 
  |
  | WiseSessionBean
  | WiseSessionHomeLocal
  | 
  | 
  |   
  | 
  |  
  | 


  | 
  |WiseSessionBean
  |beans.session.WiseSessionHomeLocal
  |beans.session.WiseSessionLocal
  |beans.session.WiseSessionBean
  |stateful
  |false
  |2.x
  |WiseSession
  |
  | 
  | 

is this a problem depending on jboss? I am using version 4.0.0

Thanks for any suggestions how to solve this problem.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - NoClassDefFoundError?

2005-07-06 Thread Cinimod
Hi,

everything worked fine, but i had to re-install jboss and the jdk and now there 
is a problem occuring, when i am running my application:

java.lang.NoClassDefFoundError  
org.apache.avalon.framework.configuration.DefaultConfigurationBuilder

i am using jboss version 4.0.2 and jdk 5 update 3 and i think the problem is 
the integrated apache serverbut how to solve this?

Thanks for any advices!

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Sending a simple message

2005-06-28 Thread Cinimod
ok, problem solved. 

just put the entries for the topic(factory) wrong.



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Sending a simple message

2005-06-27 Thread Cinimod
Hi,

within my session bean i want to lookup a ConnectionFactory:

  |  jndi = new InitialContext();
  |  topicFactory = (TopicConnectionFactory)  
jndi.lookup("java:comp/env/topic/MailTopicFactory");
  | 

but the following exception is thrown:

15:13:25,932 INFO  [STDOUT] javax.naming.NameNotFoundException: comp not bound


the important entries in the ejb-jar.xml and jboss.xml are:

ejb-jar.xml:

  | 
  |   MailTopicFactory
  |   javax.jms.TopicConnectionFactory
  |   Container
  | 
  | 

jboss.xml:


  |  MailTopicFactory
  |   java:/JmsXA
  |  
  | 

I have no idea what´s the problem?

Does anybody know how to solve this?

Thanks a lot for any suggestions!

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Class not found exception?

2005-06-16 Thread Cinimod
Hi,

the following output is generated when starting up jboss:

11:44:50,108 INFO  [Catalina] Server startup in 70 ms
11:44:50,178 ERROR [WebModule] Starting failed 
jboss.web.deployment:war=invoker.war,id=-689487939
org.jboss.deployment.DeploymentException: Error during deploy; - nested 
throwable: (java.lang.ClassNotFoundException: JACC:Error 
PolicyConfigurationFactory : cannot find class : null)
at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:366)
at org.jboss.web.WebModule.startModule(WebModule.java:68)
at org.jboss.web.WebModule.startService(WebModule.java:46)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)

Where do i get the missing class from?

Thanks for helping.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - again a hello World servlet

2005-05-20 Thread Cinimod
hi,

i have a helloWorldServlet and it works fine in another application server. The 
only problem that i have is that the jboss-web.xml seems to be wrong:


  | 
  | http://www.jboss.org/j2ee/dtd/jboss-web.dtd";>
  | 
  | 
  |   /helloWorldServlet
  | 
  | 

i call it up localhost:8080/helloWorldServlet/helloWorld
(of course i used the servlet-mapping in the web.xml so that i can call simply 
helloWorld)

As i said, it must be this wrong entry, and i would really like to know what it 
is...

Another question: Where do i get to know how to set this entries? Is there a 
document online that i just havenÂt found yet?

Thanks for helping.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_idt12&alloc_id344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Error when starting up

2005-05-19 Thread Cinimod
ok, i had to press strg+c to stop the server, so that i can get the early 
messages, so i donÂt know if the ones listed here e.g. "Shutting down" are
caused of this, but i do think sohere the early - strange - outputs follow:

[Server] Core system initialized
[Server} JBoss SHUTDOWN: Undeploying all packages
ERROR [MainDeployer} could not create deployment: 
file:/c:/jboss-4.0.2/server/default/conf/jboss-service.xml
org.jboss.deployment.DeploymentException: jmx.loading:UCL=13e58d4 is not 
registered.; - nested throwable: 
(javax.management.InstanceNotFoundException:jmx.loading:UCL=13e58d4 is not 
registered)
.

is that ok, or should i search for any special output? 

Thanks for help!

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_idt12&alloc_id344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Error when starting up

2005-05-19 Thread Cinimod
Hi,

itÂs seems really strange to, since everything worked fine, since i changed 
some directory structures...e.g. i put the jdk somewhere else - but also 
corrected the JAVA_HOME settings. 

now, when i start up, a lot of exceptions (also class not Found Exceptions) 
occur.

Well, i just unzipped the jboss file - deleted an former jboss directory - and 
started the run.bat. 
No more configurations have to be done, i think, since i havenÂt found some in 
the documentation.

hope you can help me to get the server running again...seems to be a trivial 
problem, but what could solve it?


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_idt12&alloc_id344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user