[jboss-user] [JBoss Portal] - Need Portlet Plug-In for JBoss IDE 1.6

2008-07-31 Thread priyarao234
Hi, 
i'm developing the portlet application... my environment is JBoss IDE 1.6 and 
JBoss Portal 2.6.5 ... is there any plugin available for portlet development... 
if plz provide the url 

thanks in advance 

Priya rao.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4167897
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Need Portlet PlugIn for JBoss IDE 2.6.5

2008-07-30 Thread priyarao234
Hi,
i have to develop the portlet application... my environment is JBoss IDE 1.6 
and JBoss Portal 2.6.5 ... is there any plugin available for portlet 
development... if plz provide the url

 thanks in advance

Priya rao.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4167511
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: How to deploy an Application on a Remote Server

2008-07-14 Thread priyarao234
Hi Peter,
ThnkQ for your reply... Actually my problem is I have an ear file in my 
local machine.. and how to copy that in server/xxx/deploy directory... can u 
write the steps.

Regards,
Prriya.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4164211
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - How to deploy an Application on a Remote Server

2008-07-10 Thread priyarao234
Hi friends,
I have an Application. And I have created a .ear file for that application. And 
now my problem is i have to deploy that application on remote server (i.e jboss 
is running in another machine). Please tell me how can i deploy my application 
on that machine.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4163544
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem with connecton pooling in JBOSS 4.2.2GA

2008-06-19 Thread priyarao234
thankQ kiran 4 ur fast reply but, already i configured mysql-ds.xml filr as 
shown bellow..

mysql-ds.xml


  
DefaultDS
jdbc:mysql://localhost:3306/jmsDB
com.mysql.jdbc.Driver
root
root
   50
  10 
.
.



and as part of my progrm my code is as follows

package com.v2.util;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.sql.DataSource;

public class DBConnFactory
{ 
static Connection con=null;
@SuppressWarnings("unchecked")
public static Connection getConnection() throws NamingException, 
SQLException
{

InitialContext ic = null;
DataSource ds = null;
Hashtable env = new Hashtable();

env.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
env.put(Context.URL_PKG_PREFIXES,
"=org.jboss.naming:org.jnp.interfaces");
env.put(Context.PROVIDER_URL, "jnp://localhost:1099");
ic = new InitialContext(env);
ds=(DataSource)ic.lookup("java:/DefaultDS");
con = ds.getConnection();

return con;
}
public static void main(String[] args) {
try {
System.out.println("connection---"+ 
DBConnFactory.getConnection());
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}



But whole running my progrm it showing the following error


javax.naming.NameNotFoundException: DefaultDS not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
at sun.rmi.transport.Transport$1.run(Transport.java:153)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
at 
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at 
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
at java.lang.Thread.run(Thread.java:595)
at 
sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
at 
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at com.v2.util.DBConnFactory.getConnection(DBConnFactory.java:28)
at com.v2.util.DBConnFactory.main(DBConnFactory.java:35)


now u tell me how can i cross this




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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159433
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Problem with connecton pooling in JBOSS 4.2.2GA

2008-06-19 Thread priyarao234
many documents suggests that for connection pooling we neeed to modify the file 
named with standardjaws.xml or jaws.xml... in these files we need to set the  
and  elements.. bUt i didn't get these file in my JBoss 
instalation directory plz tell me how to configure connection pooling in 
jboss any help is appricated...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159268
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: problem in deploying MDB

2008-05-21 Thread priyarao234
Thats fine my dear Adrian,.. can you give the url where i can get the download 
examples or documents.




regards,
Priya

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4152235
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: Problem with creating an .EAR file

2008-05-21 Thread priyarao234
Thats fine my dear Adrian,.. can you give the url where i can get the download 
examples or documents.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4152234
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - problem in deploying MDB

2008-05-15 Thread priyarao234
Hi folks,
I have created an MDB with JBOSS Eclipse IDE and after that i have created .ear 
file for my project manually through command prompt the i have plzced that .ear 
file in JBOSS(server/default/deply directory).upto that there is no problem it 
works fine. But whenever i made the changes in my source file the changes will 
not effect that .ear file. S anyone tell me 3 thing...
1.How to deploy an MDB in JBOSS App Server
2.How to make the changes which effect my .ear file
3.is it right way what i ahev done to deploy an MDB?


any help is appriciated...

regards,
priya


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4151260
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Help needed Urgent Plz.....how to deploy an MDB?

2008-05-13 Thread priyarao234
Hi,
I want to deploy an MDB application, but in all examples they are created an 
.ear file and they placed it in server/default/deploy directory of JBOSS So 
plz tell me how to create an .ear fiel I have tried in this way... right 
click on my MDB application and selected the "export" option and i have given 
myapp.ear as destination file it creates an .ear file and while deploying 
this file in Jboss the Jboss server throws an excetion like No META-INF 
folder.. So plz tell me is this is the right way to create an .ear 
file? is there any way to create an .ear file? and this is the right way to 
deploy an MDB application in Jboss?

Thanks in advance,...

regards,
Priya rao.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150243
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - How to deploy an MDB application in JBOSS?

2008-05-13 Thread priyarao234
Hi,
I want to deploy an MDB application, but in all examples they are created an 
.ear file and they placed it in server/default/deploy directory of JBOSS So 
plz tell me how to create an .ear fiel I have tried in this way... right 
click on my MDB application and selected the "export" option and i have given 
myapp.ear as destination file it creates an .ear file and while deploying 
this file in Jboss the Jboss server throws an excetion like No META-INF 
folder.. So plz tell me is this is the right way to create an .ear 
file? is there any way to create an .ear file? and this is the right way to 
deploy an MDB application in Jboss?

Thanks in advance,...

regards,
Priya rao.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150240
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Problem with creating an .EAR file

2008-05-12 Thread priyarao234
Hi,I want to know how to deploy an MDB application in JBOSS server...? and i 
hav done like this i made an .ear file for my application and the i placed it 
in server/default/deploy directory of my JBOSS server but it throws an 
exception like 
org.jboss.deployment.DeploymentException: No META-INF/application.xml found
S plz tell me first how to deploy an MDB in JBOSS server and plz tell me how to 
create an .ear file. any help is appriciated...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150107
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: Problem with creating a Queue?

2008-05-12 Thread priyarao234
thanQ kiran dats fine... and me too know that creating the Queus What my 
problem is i hav downloaded an Application where they Configured Queue like 
"queue/examples/OurSampleQueue" but generally i have seen in most of the 
applications they have used like queue/testQueue, queue/myQueue.. 
But now what i want is if i configured in dat jboss file like 
then i have to specify that like "queue/testQueue" and dats fine. But if i 
want to specify leke "queue/examples/OurSampleQueue" then how to configure the 
Jboss file?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150085
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Problem with creating a Queue?

2008-05-11 Thread priyarao234
hi friends, i'm using JBoss4.2.2.GA in that is it possible to create a 
Queue in this form "queue/examples/OurSampleQueue" instead of 
"queue/OurSampleQueu". in this form only i'm specifying the Queue 
in my example But now i have seen an example where they are specifyiyng a 
Queue like "queue/examples/OurSampleQueue" ... Plz tell me how to create a 
Queu in this form. any code is appriciated..

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150039
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - How my Publisher Programme knows that message is Consumed or

2008-05-11 Thread priyarao234
Hi all i have a problem in my program... that is how my Publisher program knows 
that whether the message is consumed or not? any sample code is appriciated.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150030
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - how the publisher program knows that the message was consume

2008-05-09 Thread priyarao234
Hi all i have a problem in my program... and how my Publisher program knows 
that whether the message is consumed or not? any sample code is appriciated.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149662
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Message Consumed several Times

2008-05-09 Thread priyarao234
i'm using JBOSS as App Server and in my publisher program i'm using PERSISTENT 
like below but while running the consumer program the same message is 
consumed at first time and that is fine.. and i'm closing the consumer program 
and then again i'm running the consumer program but the same message is again 
consumed. But actually ones the message is consumed after that it has to be 
expired so please provide the solution...and how the publisher program knows 
that the message was consumed or not ? plz fell free to giv reply.. 
publisher.publish(msg, 
javax.jms.DeliveryMode.PERSISTENT, 
javax.jms.Message.DEFAULT_PRIORITY, 0); 
 


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149661
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-08 Thread priyarao234
Hi Aneesh thankQ I'm having one more doubt regarding JMS.. i.e 
i'm using JBOSSMQ as JMS Provider and in my publisher program i'm using 
PERSISTENT like below but while running the consumer program the same 
message is at first time and that is fine.. and i'm closing the consumer 
program and then again i' running the consumer program but the same message is 
again consumed. But actually ones the message is consumed after that it has to 
be expired so please provide the solution...and how the publisher program knows 
that the message was consumed or not ? plz fell free to giv reply..
publisher.publish(msg,

javax.jms.DeliveryMode.PERSISTENT,

javax.jms.Message.DEFAULT_PRIORITY, 0);

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149645
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-08 Thread priyarao234
ThankQ Aneesh,

when i'm trying to connect by typing telnet 192.116.25.23 1099 on commandprompt 
it showing the following error.

Connecting To 192.116.25.23...Could not open connection to the host, on port 
1099: Connect failed

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149399
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-08 Thread priyarao234
thanks Kiran, dats fine but what i want is how to configure that remote server 
in my jndi.properties file... dats wt i want exactly

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149376
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-08 Thread priyarao234
ThankQ marie123, i'm getting the following error

javax.naming.CommunicationException: Could not obtain connection to any of 
these urls: 192.116.25.23:1099 and discovery failed with error: 
javax.naming.CommunicationException: Receive timed out [Root exception is 
java.net.SocketTimeoutException: Receive timed out] [Root exception is 
javax.naming.CommunicationException: Failed to connect to 192.116.25.23:1099 
[Root exception is javax.naming.ServiceUnavailableException: Failed to connect 
to server 192.116.25.23:1099  [Root exception is java.net.ConnectException: 
Connection refused: connect]]]
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1414)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:594)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at com.v2.eclinic.ConcernedDeptDoctor.(ConcernedDeptDoctor.java:103)
at com.v2.eclinic.ConcernedDeptDoctor.main(ConcernedDeptDoctor.java:179)
Caused by: javax.naming.CommunicationException: Failed to connect to 
server192.116.25.23:1099 [Root exception is 
javax.naming.ServiceUnavailableException: Failed to connect to server 
192.116.25.23:1099  [Root exception is java.net.ConnectException: Connection 
refused: connect]]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:269)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1385)
... 5 more
Caused by: javax.naming.ServiceUnavailableException: Failed to connect to 
server 192.116.25.23:1099 [Root exception is java.net.ConnectException: 
Connection refused: connect]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:243)
... 6 more
Caused by: java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
at java.net.Socket.connect(Socket.java:507)
at java.net.Socket.connect(Socket.java:457)
at java.net.Socket.(Socket.java:365)
at java.net.Socket.(Socket.java:265)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:84)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:77)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:239)


.

i'm getting the above error when i tried to configure jndi in my application 
like below...

env.put(Context.INITIAL_CONTEXT_FACTORY, 
"org.jnp.interfaces.NamingContextFactory"); 
env.put(Context.URL_PKG_PREFIXES, 
"=org.jboss.naming:org.jnp.interfaces"); 
env.put(Context.PROVIDER_URL, "jnp://192.116.25.23"); 


So plz tell me how 2 solve this problem in simple how to access the server 
which is running in a remote machine in my application by configuring the jndi 
configuration like above... or any other way is appriciated







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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149365
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-07 Thread priyarao234
Hi Aneesh ,,.. .. i'm waiting 4 ur reply.what i configured in myApp if 
the server is running on my machine only . is below



Hashtable env = new Hashtable(); 

env.put(Context.INITIAL_CONTEXT_FACTORY, 
"org.jnp.interfaces.NamingContextFactory"); 
env.put(Context.URL_PKG_PREFIXES, 
"=org.jboss.naming:org.jnp.interfaces"); 
env.put(Context.PROVIDER_URL, "jnp://localhost:1099"); 

 


But if i'm using the server which is running in another machine then how can i 
configure that server. 

if i tried like below it shows an error 
 
 
env.put(Context.PROVIDER_URL, "jnp://192.116.23.25:1099"); 


So plz tell me or post the code and tell me what configuraion (if required) i 
have to make in the server machine. 


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149297
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-07 Thread priyarao234
Hi Kiran,,.. dats fine like that i can access my server with ip address.. 
But in my program how can i configured that JBOSS configuration. if the 
Server is running in my machine i can provide the following code and it works 
fine
Hashtable env = new Hashtable();

env.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
env.put(Context.URL_PKG_PREFIXES,
"=org.jboss.naming:org.jnp.interfaces");
env.put(Context.PROVIDER_URL, "jnp://localhost:1099");




But if i'm using the server which is running in another machine then how can i 
configure that server.

if i tried like below it shows an error


env.put(Context.PROVIDER_URL, "jnp://192.116.23.25:1099");


So plz tell me or post the code and tell me what configuraion (if required) i 
have to make in the server machine.




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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149133
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-07 Thread priyarao234
thankQ Aneesh. that server.xml file is fine.. but what i want is server 
is running in another machine ... that machines IP address is (for ex: 
192.116.25.23) now in my application i.e running in another machine, I have 
to use that server which is running in (192.116.25.23)like in my file
i have configured like this ..

Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
env.put(Context.URL_PKG_PREFIXES,
"=org.jboss.naming:org.jnp.interfaces");
env.put(Context.PROVIDER_URL, "jnp://192.116.25.23:1099");

like that i need to access that server in my application. for that tell me 
what changes i hav to mak in that 192.116.25.23 machine... 


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149024
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-06 Thread priyarao234
dis s my complete server.xml



  
  
  
  

   
   










  

 
 
 





 








 



 

  

   




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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148834
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-06 Thread priyarao234
hi Aneesh, Thanks 4 Reply. I didn't made any changes in my server.xml which 
is avaolable at 
C:\jboss-4.2.2.GA\server\default\deploy\jboss-web.deployer\server.xml

my server.xml file is like this only. Plz specify where i have to do 
modifications






  
  
  
  

   
   










  

 
 
 





 








 



 

  

   




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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148833
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - JMS Durable subscriptions

2008-05-06 Thread priyarao234
Hi all,.. can any body tell me how to create the new users in JBOSS4.2.2 for 
durable subscriptions i'm using default user and pwd (dynsub,dynsub ) but 
its not working fine like durable subscription but if i use john,needle then 
its working fine plz tell me how to create the users for durable 
subscriptions.. thanks in advance. 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148771
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-05-06 Thread priyarao234
dats fine but in server.xml file i don't know where to give ip address plz 
send me code if possible

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148768
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to access JBOSS by providing IP address

2008-04-30 Thread priyarao234
thankQ aneesh dats fine but i have to access the JBOSS server which is running 
in another machine through IP address. For that what i hav 2 do ? 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147806
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS & JBossMQ] - How to access JBOSS by providing IP address

2008-04-29 Thread priyarao234
Hi,
i'm not able to access my jboss server using my ip address like 
http://192.168.55.147:8080/... but it is working fine when i use with the name  
localhost like http://localhost:8080/

So plz tell me the which file i hav to modify r anything related to dis any 
help is appriciated,,, thanks in advance.


Regards,
Priya

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147523
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user