[JBoss-user] [EJB/JBoss] - JNDI

2006-04-07 Thread simona.pricope
Hi, I have two entity beans with the same jndi name. Is there a prefix to jndi so that the beans can be seen diferently? I do not want to assign different names to the beans. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3935835#3935835 Reply to the

[JBoss-user] [Installation, Configuration Deployment] - Socket write error - PoolTcpEndpoint

2005-11-02 Thread simona.pricope
Hi, I'm receiving this exception and I do not know how to solve it. I'm using JBoss 4.0.2. Socket error caused by remote host /127.0.0.1 java.net.SocketException: Software caused connection abort: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) at

[JBoss-user] [Installation, Configuration Deployment] - Re: JUnit, change default port

2005-10-13 Thread simona.pricope
Hi, To be more explicitly: I'm receiving the exception when I try to use the AdminClient (org.apache.axis.client.AdminClient) to process my undeploy.wsdd. Can anyone help me? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3900802#3900802 Reply to the post :

[JBoss-user] [Installation, Configuration Deployment] - Re: JUnit, change default port

2005-10-13 Thread simona.pricope
I solved the problem by passing the port number to the process methof of the AdminClient object. AdminClient admin = new AdminClient(); admin.process(new String[] { -p, 80, undeploy.wsdd }); View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: track pageContext

2005-10-12 Thread simona.pricope
thanks, it worked View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3900571#3900571 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3900571 --- This SF.Net email is sponsored

[JBoss-user] [Installation, Configuration Deployment] - JUnit, change default port

2005-10-12 Thread simona.pricope
Hello, My JUnit tests are not running any more. I receive AxisFault Exception and connection time out. I have changed the default port number of the JBoss Server, by changing the jboss-services.xml and server.xml files and afterward I have received the exception. Does anyone know which files

[JBoss-user] [JBossWS] - relative paths webService

2005-10-10 Thread simona.pricope
Hi everyone, I want to call a WebService and I'm using folowing code: String soapURL = https://localhost:8443/axis/services/XMLAccess;; Service service = new Service(); Call call = service.createCall();

[JBoss-user] [Installation, Configuration Deployment] - Re: starting JBoss

2005-10-07 Thread simona.pricope
So, I have changed the server.xml file to use the port 80. My connector tag looks like that: !-- A HTTP/1.1 Connector on port 80 -- So, when I start the JBoss server on my machine, I can access it with http://localhost or http://localhost:80 is the same thing. But when I'm trying to

[JBoss-user] [Installation, Configuration Deployment] - Re: starting JBoss

2005-10-07 Thread simona.pricope
Hello, Now it works :). Thanks alot. I have set the firewall, with permissions for port 80. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3899779#3899779 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3899779

[JBoss-user] [Installation, Configuration Deployment] - Re: change JBoss start page

2005-10-06 Thread simona.pricope
I have found the solution on my own by reading more carefully this forum. So who wants to know: The index.html file can be found on \deploy\jbossweb-tomcat55.sar\ROOT.war of your jboss directory. And you can change it to redirect to your application pages by inserting a meta tag: meta

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - track pageContext

2005-10-06 Thread simona.pricope
Hi everyone, I need help: How can I get the URL of the previous pages? I want to know from where the request is coming. I'm guessing by using the pageContext object but I did'nt find a solution. Thank you. View the original post :

[JBoss-user] [Installation, Configuration Deployment] - starting JBoss

2005-10-06 Thread simona.pricope
Hi, I have a problem: I start the JBoss server on a computer(p1) and I want to access it from onother computer(p2) but the page cannot be found. I have tried like this: http://p1 The server runs on port 80 so I have tried also http://p1:80, but still no result. Thank you View the original

[JBoss-user] [Installation, Configuration Deployment] - Re: starting JBoss

2005-10-06 Thread simona.pricope
Thank for your answer, but I want to get it running on port 80, so that's why I have changed myself the {jboss.home}/server/default/deploy/jbossweb-tomcat55.sar/server.xml and the jboss-service.xml files. I want to use the 80 port because I want that everyone can access my project and I think

[JBoss-user] [Installation, Configuration Deployment] - change JBoss start page

2005-10-05 Thread simona.pricope
Hello I don'nt know how to change the start page of JBoss. I want to redirect it to another page of my project, so when someone acceses http://localhost:8080/ I want to redirect to the login page of my project. Another question: How can I change the port? I want to set the port to 80, and the