[JBoss-user] [Beginners Corner] - Re: Tutorial on JBossIDE EJB3.0 Tools

2006-01-20 Thread jbosszone
Post Subject : Tutorial on JBossIDE EJB3.0 Tools

Dear UglyDuckling

Ref. 1 : JBoss IDE TrailBlazer : Hike 1 - EJB 3.0 Tools
 http://trailblazer.demo.jboss.com/IDETrail/

=== Environment in use;
- Windows XP SP2
- JDK 1.5.0_05
- JBoss AS 4.0.3SP1
- JBoss IDE1.5RC1 + Eclipse 3.1.1


In the case of incomplete deployment, it seems either 404 or 500 error occurs.
e.g.;
If deployed;
  | 1.  no files ===> HTTP Status 404 - /authors/authors
  | 2. 'authors.war' only===> HTTP Status 500 -
  | 3. 'authors-beans.ejb3' only ===> HTTP Status 404 - /authors/authors
In order to complete deployment, it might be necessary to repeat a cycle of 
undeploy/packaging/deploy/check_results.
(see Note1 and 2 on the Trail 6 in my last post.)

--- Ref. Messages in the Console at each step ---

Trail 5: Package an EJB 3.0 Application
- on completion of packaging (see "packaging-build.xml" in my last post), the 
message is;
Buildfile: E:\workspace\articles\packaging-build.xml
  | N65540:
  | N65557:
  | _packaging_generation_:
  | BUILD SUCCESSFUL
  | Total time: 5 seconds

Trail 6: Deploy and Debug
- keep JBoss AS running.
- with Windows Explorer, check if there are 'authors.war' and 
'authors-beans.ejb3' under '../jboss-4.0.3SP1/server/all/deploy'.
- if exist, Undeploy both of them.
= in the Package Explorer, right-click 'authors.war' -> Deployment -> Undeploy
= The message in the console is;
23:38:03,855 INFO  [TomcatDeployer] undeploy, ctxPath=/authors, 
warUrl=.../tmp/deploy/tmp28493authors-exp.war/
= and then, right-click 'authors-beans.ejb3' -> Deployment -> Undeploy
23:38:14,250 INFO  [Ejb3Deployment] Create EntityManager with JNDI name: 
authors-beans
  | 23:38:14,260 INFO  [SessionFactoryImpl] closing
  | 23:38:14,260 INFO  [SchemaExport] Running hbm2ddl schema export
  | 23:38:14,270 INFO  [SchemaExport] exporting generated schema to database
  | 23:38:14,270 INFO  [SchemaExport] schema export complete
= confirm undeployment of the two files using Windows Explorer.

- Deploy them again.  
1. 'authors.war'
= in the Package Explorer, right-click 'authors.war' -> Deployment -> Deploy 
To... -> Target Choice Box
= click and highlight 'JBoss4.0.3SPI 
[file:/E:/jboss-4.0.3SP1/server/all/deploy/]' in blue, then click 'OK'.
23:38:29,662 INFO  [TomcatDeployer] deploy, ctxPath=/authors, 
warUrl=.../tmp/deploy/tmp28496authors-exp.war/
2. 'authors-beans.ejb3'
= in the Package Explorer, right-click 'authors-beans.ejb3' -> Deployment -> 
Deploy To... -> Target Choice Box
= click and highlight 'JBoss4.0.3SPI 
[file:/E:/jboss-4.0.3SP1/server/all/deploy/]' in blue, then click 'OK'.
23:38:50,752 INFO  [JaccHelper] Initialising JACC Context for deployment: 
authors-beans.ejb3
  | 23:38:51,003 INFO  [Ejb3AnnotationHandler] found EJB3: 
ejbName=org.jboss.ejb3demo.AuthorsBean, class=org.jboss.ejb3demo.AuthorsBean, 
type=STATELESS
  | 23:38:51,383 INFO  [JaccHelper] org.jboss.ejb3demo.AuthorsBean has no 
@SecurityDomain - skipping JACC configuration
  | 23:38:51,463 INFO  [Ejb3Deployment] default entity manager name: 
authors-beans
  | 23:38:51,473 INFO  [Ejb3Configuration] found EJB3 Entity bean: 
org.jboss.ejb3demo.Article
  | 23:38:51,483 INFO  [Ejb3Configuration] found EJB3 Entity bean: 
org.jboss.ejb3demo.Author
  | 23:38:51,594 INFO  [Configuration] processing extends queue
  | :
  | : (Total 74 lines of message)
  | : 
  | 23:38:52,305 INFO  [Ejb3Deployment] Create EntityManager with JNDI name: 
authors-beans
  | 23:38:52,305 INFO  [JaccHelper] JACC Policy Configuration for deployment 
has been put in service
  | 23:38:52,305 INFO  [Ejb3Deployment] EJB3 deployment time took: 1553
  | 23:38:52,695 INFO  [ProxyDeployer] no declared remote bindings for : 
org.jboss.ejb3demo.AuthorsBean
  | 23:38:52,705 INFO  [ProxyDeployer] there is remote interfaces for 
org.jboss.ejb3demo.AuthorsBean
  | 23:38:52,705 INFO  [ProxyDeployer] default remote binding has jndiName of 
org.jboss.ejb3demo.Authors
  | 23:38:52,946 INFO  [EJB3Deployer] Deployed: 
file:/E:/jboss-4.0.3SP1/server/all/deploy/authors-beans.ejb3
= using Windows Explorer, confirm the two files deployed under 
'../jboss-4.0.3SP1/server/all/deploy'.

- go to URL "http://localhost:8080/authors/authors"; and check the results.


jbosszone



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on JBossIDE EJB3.0 Tools

2005-11-06 Thread jbosszone
ddArticle(String title, String body) {
  | if (articles == null)
  | articles = new ArrayList();
  | Article article = new Article();
  | article.setAuthor(this);
  | article.setBody(body);
  | article.setTitle(title);
  | articles.add(article);
  | }
  | }
AuthorServlet.java
package org.jboss.ejb3demo.web;
  | 
  | import java.io.IOException;
  | import java.io.PrintWriter;
  | 
  | import javax.naming.Context;
  | import javax.naming.InitialContext;
  | import javax.naming.NamingException;
  | import javax.servlet.ServletException;
  | import javax.servlet.http.HttpServlet;
  | import javax.servlet.http.HttpServletRequest;
  | import javax.servlet.http.HttpServletResponse;
  | 
  | import org.jboss.ejb3demo.Article;
  | import org.jboss.ejb3demo.Author;
  | import org.jboss.ejb3demo.Authors;
  | 
  | public class AuthorServlet extends HttpServlet {
  | 
  | /**
  |  * 
  |  */
  | private static final long serialVersionUID = 1L;
  | private Authors authorsBean;
  | 
  | public void init() throws ServletException {
  | try {
  | Context context = new InitialContext();
  | authorsBean =(Authors) 
context.lookup(Authors.class.getName());
  | } catch (NamingException e) {
  | e.printStackTrace();
  |   }
  | }
  | 
  | protected void doGet(HttpServletRequest req, HttpServletResponse resp)
  | throws ServletException, IOException {
  | doPost(req, resp);
  | }
  | 
  | protected void doPost(HttpServletRequest req, HttpServletResponse resp)
  | throws ServletException, IOException {
  | String mode = req.getParameter("mode");
  | 
  | if (mode == null)
  | mode = "show";
  | if (mode.equals("show"))
  | {
  | showArticles(req, resp);
  | }
  | else if (mode.equals("create"))
  | {
  | createArticles(req, resp);
  | }
  | }
  | 
  | private void createArticles(HttpServletRequest req, HttpServletResponse 
resp)
  | throws ServletException, IOException
  | {
  | Author marshall = authorsBean.addAuthor("Marshall");
  | Author max = authorsBean.addAuthor("Max");
  | 
  | authorsBean.addArticle(marshall, "marshall's 1st article", 
"this is an article");
  | authorsBean.addArticle(marshall, "marshall's 2nd article", 
"this is also an article");
  | authorsBean.addArticle(max,  "max's 1st article", "this is 
an article");
  | authorsBean.addArticle(max,  "max's 2nd article", "this is 
also an article");
  | 
  | showArticles(req, resp);
  | }
  | 
  | private void showArticles(HttpServletRequest req, HttpServletResponse 
resp)
  | throws ServletException, IOException
  | {
  | PrintWriter out = resp.getWriter();
  | 
  | for (Author author : authorsBean.getAllAuthors())
  | {
  | for (Article article : author.getArticles())
  | {
  | out.println("" + article.getTitle() + "" 
+ " by " + author.getName() + "");
  | out.println("    " + article.getBody() + 
"");
  | }
  | }
  | out.println("");
  | out.println("");
  | out.println("");
  | out.println("");
  | }
  | }
web.xml

  | http://java.sun.com/xml/ns/j2ee";
  | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>
  | 
  | AuthorServlet
  | 
org.jboss.ejb3demo.web.AuthorServlet
  | 
  | 
  | AuthorServlet
  | /authors
  | 
  | 
packaging-build.xml

  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

jbosszone


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

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


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Tutorial on JBossIDE EJB3.0 Tools

2005-11-06 Thread jbosszone
d following line at the end.
...INFO  [Server] JBoss (MX MicroKernel) [4.0.3SP1 (build: 
CVSTag=JBoss_4_0_3_SP1 date=200510231751)] Started in ...
- keep JBoss AS running...
- check the database, tables and records in order to confirm the configuration
= go to http://localhost:8080/jmx-console/

Note: input "admin" as the user name and the password, if requested, in order 
to access JMX-Console and Web-Console.
Ref. "THe JBoss 4 Application Server Guide", Section 2.3.1.1 Securing the JMX 
Console
http://www.jboss.org/jbossas/jboss4guide/r2/html/ch2.chapter.html#d0e4085
The "jmx-console-users.properties" file is in "..\server\all\conf\props"

= click "database=localDB,service=Hypersonic" under "jboss"
= click "Invoke" button of "void startDatabaseManager()" under "List of MBean 
operations"
= "HSQL Database Manager" start.
= type "select * from JMS_USERS" in SQL editor window and click "Execute SQL" 
button in the menu bar.
= the results are;
USERID PASSWDCLIENTID
  | -
  | dynsub dynsub[null]
  | guest  guest [null]
  | j2ee   j2ee  [null]
  | :
= note that there are no records/data in the "ARTICLES" and "AUTHORS" tables at 
this stage.

- to stop JBoss AS, click "Shutdown" bottun in the menu icons at top-right of 
"Server Navigator" view
(or right-click mouse button inside the "Server Navigator" view to show a 
pop-up menu, then click "Shutdown")


jbosszone



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

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


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-07-27 Thread jbosszone
Dear tumitoto,

There might be some helpful info in the results of Google search with
"org.apache.axis.deployment.wsdd.WSDDException: No provider type matches QName".

e.g.;
http://issues.apache.org/jira/browse/AXIS-1760?page=comments#action_58265


jbosszone


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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-07-07 Thread jbosszone
following URL of the Web Service" (as a test)
http://localhost:8080/axis/services/MyStoreLoginService?wsdl
- "btnGetID_Click()" is;
   :
  | private void btnGetID_Click(object sender, System.EventArgs e)
  |  {
  |// string strResult;
  |localhost.StoreAccessService objWebRef  = new 
localhost.StoreAccessService();
  | 
  |// Call loginuser function and display the result ID to the 
lblOutput control
  |lblOutput.Text = objWebRef.loginUser(TextBoxName.Text, 
TextBoxPassword.Text);
  |  }
  |:
Task 10 : Test the .NET Client
(as per the steps in Ref. 1)


jbosszone


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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-25 Thread jbosszone
w.w3.org/2001/XMLSchema";>
  | -  
  | - 
  |
  |
  |   
  | - 
  |
  |   
  | - 
  | - 
  |
  |
  |   
  |   
  | - 
  |   http://schemas.xmlsoap.org/soap/http"; /> 
  | - 
  |
  | - 
  |   http://schemas.xmlsoap.org/soap/encoding/"; 
namespace="http://session.tusc.com.au"; use="encoded" /> 
  |   
  | - 
  |   http://schemas.xmlsoap.org/soap/encoding/";
  |  
namespace="http://127.0.0.1:8080/axis/services/MyStoreLoginService"; 
use="encoded" /> 
  |   
  |   
  |   
  | - 
  | - 
  |   http://127.0.0.1:8080/axis/services/MyStoreLoginService"; /> 
  |   
  |   
  |   
- save the wsdl as "MyStoreLoginService.wsdl" under "au.com.tusc.WebService"

Task 5 : Create a Web Service test client named "TestClient"
- add external jars (C:\axis\axis-1_2_1\lib) into the libraries as per the 
steps in Ref. 1

axis.jar
commons-discovery-0.2.jar
commons-logging-1.0.4.jar
jaxrpc.jar
log4j-1.2.8.jar
saaj.jar
wsdl4j-1.5.1.jar

- generate SOAP clients
= select "1.2" as the "Type version" in the wizard.
= as "deploy.wsdd" has been modified, the file names generated in 
"au.com.tusc.WebService" are different from Ref. 1
- add a new file named "TestClient.java" as per steps in Ref. 1

Task 6 : Test the TestClient
- remove AXIS 1.1 jar files in the Java Build Path Libraries before testing
= right click "MyStorePgSQL" in the Project Explorer of Eclipse, go to 
Properties/Java Build Path/Libraries.
= remove following jar files in the libraries, which are from AXIS ver.1.1

AXIS/axis.jar - /c:\eclipse\plugins\org.apache.axis_1.1.0\axis.jar
AXIS/jaxrpc.jar - /c:\eclipse\plugins\org.apache.axis_1.1.0\jaxrpc.jar
AXIS/saaj.jar - /c:\eclipse\plugins\org.apache.axis_1.1.0\saaj.jar
AXIS/wsdl4j.jar - /c:\eclipse\plugins\org.apache.axis_1.1.0\wsdl4j.jar

- run "TestClient"
==> USERID recvd is : U2


jbosszone



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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-24 Thread jbosszone

Post Subject : Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.x and 
PostgreSQL-8.x on Windows XP

Ref. 1 : Tutorial for building J2EE Applications using JBOSS and ECLIPSE
 http://www.tusc.com.au/tutorial/html/chap8.html (Chapter 8 : Web 
Clients - Servlet & JSP)

Ref. 2 : Tutorial on J2EE using JBOSS, ECLIPSE and Lomboz (Forum on Ref. 1)
 http://www.jboss.org/index.html?module=bb&op=viewtopic&t=36910

Ref. 3 : Environment in use ;
- Windows XP SP2
- J2SDK 1.4.2_08
- Eclipse 3.0.2
- JBoss 4.0.2
- Lomboz 3.0.1 + emf-sdo-runtime-2.0.0
- PostgreSQL 8.0.3 (= DefaultDS)

Followings are some notes on Chapter 8 (Servlet & JSP) in Ref. 1

* The notes cover creations of a Servlet named AccessController and a JSP named 
showItems.
* Task numbers are based on Ref. 1
* No change has been made to the server definition file 
(jboss402postgres.server) thus far.

Task 1 : Create AccessController Servlet
- on completion of AccessController, "super.init(config);" is added in "init()" 
method. No need to hide it.
public void init(ServletConfig config) throws ServletException {
  |super.init(config);
  |//TODO Method stub generated by Lomboz
  | }
- in "web.xml", DTD is not shown at the top.
- it seems the file without dtd works normally. If any trouble, add DTD like 
below and see;
http://java.sun.com/dtd/web-app_2_3.dtd";>
Task 2 : Add a business method to StoreAccess Bean named getAllItems()
: (as per the steps in Ref. 1)
Task 6 : Implement the processRequest method

Task 7 : Deploy the AccessController Servlet
- on completion of deployment, following message is shown in the console.
  :
  | 21:55:39,015 INFO  [TomcatDeployer] deploy, ctxPath=/OnlineStore, 
warUrl=file:/C:/jboss-4.0.2/server/postgres/tmp/deploy/tmp41196OnlineStore-exp.war/
Task 8 : Test the AccessController Servlet
(as per the steps in Ref. 1)

Task 9 : Create a JSP named showItems
: (as per the steps in Ref. 1)
Task 13 : Test the showItems.jsp page


=== Correction ===
- At the end of JBoss startup every time, an error message followed by others 
on MBeans are shown as below.
- It seems there is no influence on the functions of beans up to this point, 
i.e. end of Chapter 8.
  :
  | 23:57:42,218 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, 
warUrl=file:/C:/jboss-4.0.2/server/postgres/deploy/jmx-console.war/23:57:42,468 
ERROR [URLDeploymentScanner] Incomplete Deployment listing:
  | --- MBeans waiting for other MBeans ---
  | ObjectName: jboss.jca:name=JmsXA,service=TxCM
  |   State: CONFIGURED
  |   I Depend On:
  | jboss.jca:name=JmsXA,service=ManagedConnectionPool
  | jboss.jca:service=CachedConnectionManager
  | :
  | :
  | ObjectName: jboss.jca:name=JmsXA,service=ManagedConnectionFactory
  |   State: CONFIGURED
  |   I Depend On:jboss.jca:name='jms-ra.rar',service=RARDeployment  
Depends On Me:
  | jboss.jca:name=JmsXA,service=ManagedConnectionPool
  | 
  | ObjectName: jboss.jca:name=JmsXA,service=ConnectionFactoryBinding
  |   State: CONFIGURED
  |   I Depend On:
  | jboss.jca:name=JmsXA,service=TxCM
  | 
  | --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---ObjectName: 
jboss.jca:name='jms-ra.rar',service=RARDeployment  State: NOTYETINSTALLED
  |   Depends On Me:
  | jboss.jca:name=JmsXA,service=ManagedConnectionFactory
  | 
  | 
  | 23:57:42,609 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on 
http-0.0.0.0-8080
  | 23:57:42,718 INFO  [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
  | 23:57:42,734 INFO  [JkMain] Jk running ID=0 time=0/63  config=null
  | 23:57:42,765 INFO  [Server] JBoss (MX MicroKernel) [4.0.2 (build: 
CVSTag=JBoss_4_0_2 date=200505022023)] Started in 24s:437ms
  |   :
- The messages can be eliminated with following corrections.
= remove ".bak" from "/jboss-4.0.2/server/postgres/deploy/jms.bak" to activate 
the "jms" folder. (ref. Step 11 in the first post of this thread)
= put ".bak" to hajndi-jms-ds.xml under "/postgres/deploy/jms" to disable.
- "jms-ra.rar" is only one active file in "/postgres/deploy/jms" folder as a 
result.


jbosszone



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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-21 Thread jbosszone
orrelationID: null
  |jmsReplyTo  : null
  |jmsType : null
  |jmsRedelivered  : false
  |jmsProperties   : {}
  |jmsPropReadWrite: false
  |msgReadOnly : true
  |producerClientId: ID:31
  | }
  | }
  | 23:30:27,553 INFO  [STDOUT] Entering DeliverItemsBean.onMessage()
  | 23:30:27,585 INFO  [STDOUT] Entering StoreAccessBean.ejbCreate() 
  | 23:30:27,616 INFO  [STDOUT] Leaving StoreAccessBean.ejbCreate() 
  | 23:30:27,632 INFO  [STDOUT] Entering StoreAccessBean
  | 23:30:27,632 INFO  [STDOUT] Leaving StoreAccessBean
  | 23:30:27,632 INFO  [STDOUT] Entering StoreAccessDAOImpl.init()
  | 23:30:27,647 INFO  [STDOUT] Leaving StoreAccessDAOImpl.init()
  | 23:30:27,647 INFO  [STDOUT] Entering StoreAccessDAOImpl.loginUser() 
  | 23:30:27,647 INFO  [STDOUT] Userid is U4
  | 23:30:27,647 INFO  [STDOUT] Leaving StoreAccessDAOImpl.loginUser() 
  | 23:30:27,647 INFO  [STDOUT]  Login is sucessful with U4
  | 23:30:27,647 INFO  [STDOUT]  Entering StoreAccessBean.getSupplierData() 
  | 23:30:27,663 INFO  [STDOUT] Entering SupplierBean.getSupplierData() 
  | 23:30:27,663 INFO  [STDOUT] Leaving SupplierBean.getSupplierData() 
  | 23:30:27,663 INFO  [STDOUT]  Leaving StoreAccessBean.getSupplierData() 
  | 23:30:27,678 INFO  [STDOUT] Delivering items in store now... :
  | 23:30:27,678 INFO  [STDOUT] Entering ItemBean.fillStock() with quantity 100
  | 23:30:27,678 INFO  [STDOUT] Quantity of items after delivery of items 100
  | 23:30:27,678 INFO  [STDOUT] Leaving ItemBean.fillStock() 
  | 23:30:27,678 INFO  [STDOUT] Entering ItemBean.getItemData() 
  | 23:30:27,678 INFO  [STDOUT] Leaving ItemBean.getItemData() 
  | 23:30:27,678 INFO  [STDOUT] Stock of item after delivery is :{itemID=I4 
supplierID=S1 description=CLOCK quantity=100 price=65.0}
  | 23:30:27,678 INFO  [STDOUT] Entering DeliverItemsBean.onMessage()
Also, the results can be checked in the database table using "pgAdmin III".
= select * from item

==> "I4";"S1";"CLOCK";100;65.00


jbosszone



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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-16 Thread jbosszone
emData() 
  | 23:37:03,984 INFO  [STDOUT] Leaving StoreAccessBean.getItemsOutOfStock() 
  | 23:37:04,000 INFO  [STDOUT] List of Out-Of-Stock Items
  | 23:37:04,015 INFO  [STDOUT]  Entering SupplierBean.requestItem() 30
  | 23:37:04,015 INFO  [STDOUT]  Leaving SupplierBean.requestItem()
  | 23:37:04,015 INFO  [STDOUT]  Entering SupplierBean.requestItem() 30
  | 23:37:04,015 INFO  [STDOUT]  Leaving SupplierBean.requestItem()
  | 23:37:04,015 INFO  [STDOUT] Leaving RequestItemsBean.onMessage()
- Also, the results can be checked in the database table using "pgAdmin III".
= select * from supplier

==> "S1";"U4";"SEBASTIAN";"BELLOFIORE";"10 ELIZABETH ST";"I430";0.00


=== On completion of RequestItemsBean, the contents of  tag of 
each file are as follows;

- ejb-jar.xml  :
  |   
  |   
  |  
  | 
  |  RequestItems
  | 
  |  au.com.tusc.mdb.RequestItemsBean
  |  Container
  |  Auto-acknowledge
  |  
  | javax.jms.Queue
  | NonDurable
  |  
  | 
  |  
  | ejb/StoreAccess
  | Session
  | au.com.tusc.session.StoreAccessHome
  | au.com.tusc.session.StoreAccess
  | StoreAccess
  |  
  | 
  |  
  | ejb/SupplierLocal
  | Entity
  | au.com.tusc.cmp.SupplierLocalHome
  | au.com.tusc.cmp.SupplierLocal
  | Supplier
  |  
  | 
  |   
  |   :
- jboss.xml  :
  |   
  |  RequestItems
  |  queue/MdbQueue
  |  
  | ejb/SupplierLocal
  | SupplierLocal
  |  
  |  
  | ejb/StoreAccess
  | StoreAccessBean
  |  
  |   
  |   :

jbosszone


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

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


---
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] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-11 Thread jbosszone

Post Subject : Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.x and 
PostgreSQL-8.x on Windows XP

Ref. 1 : Tutorial for building J2EE Applications using JBOSS and ECLIPSE 
(Chapter 6 : CMP Entity Bean)
 http://www.tusc.com.au/tutorial/html/chap6.html

Ref. 2 : Tutorial on J2EE using JBOSS, ECLIPSE and Lomboz (Forum on Ref. 1)
 http//www.jboss.org/index.html?module=bb&op=viewtopic&t=36910

Ref. 3 : Environment in use ;
- Windows XP SP2
- J2SDK 1.4.2_08
- Eclipse 3.0.2
- JBoss 4.0.2
- Lomboz 3.0.1 + emf-sdo-runtime-2.0.0
- PostgreSQL 8.0.3 (= DefaultDS)

Followings are some notes on the Chapter 6 (CMP Entity Bean) in Ref. 1

* Task numbers are based on Ref. 1. 
* No change has been made to the server configuration file 
(jboss402postgres.server) thus far.
* For "jboss-jaas.jar" & "jnet.jar" in the server definition file, it seems 
JBoss just ignore them even if exist. 

Task 1 : Create a CMP Entity Bean named "Item"
- Enter "DefaultDS" as a Datasource on the 2nd page of Lomboz EJB Creation 
Wizard.
- On creation of "ItemBean", check a point before proceeding further steps.
= make sure the XDoclet parts of ItemBean.java;
   :
  | *
  | * @ejb.bean name="Item"* jndi-name="ItemBean"* type="CMP"
  | * primkey-field="itemID" 
  | * schema="MyStoreItem"
  | * cmp-version="2.x"
  | * data-source="DefaultDS"
  | *
  |:

Task 2 : Implement ejbCreate Method.
: (as per the steps in Ref. 1)
Task 12 : Add another business method to StoreAccess Bean.
- add getOutOfStockItems() method.

Task 13 : Add another business method to StoreAccess Bean.
- add getItemsBySupplier() method.
- generate EJB Classes.
- In ejb-jar.xml, add "ejb/" to the three items below in  under 
"session";
  = ejb/CustomerLocal
  = ejb/ManagerLocal
  = ejb/ItemLocal
- In jboss.xml, change all  and  tags under "session" to 
 and  respectively.
  (see Task 10 in Chapter 5 of Ref. 1)
- deploy beans.

Task 14 and 15 : as per the steps in Ref. 1

For "SupplierBean.java";
Task 1 : Create a CMP Entity Bean named Supplier (2nd page of Wizard),
- note that the column name of Credit Limit is "CREDIT_LIMIT", not 
"CREDITLIMIT".
 
=== Current Status in Chapter 7 (MDB) ===
- tackling difficulties at Task 4 (Deploy the RequestItems Bean).
- trying modifications of settings, such as
  = switch using of jms folder under /deploy-hasingleton to /deploy
  = change settings in the related xml files etc.
- no success so far.


jbosszone


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

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


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-06-04 Thread jbosszone
-ref-jndi ref-name="CustomerLocal"
  |  *  jndi-name="CustomerLocal"
  |  * 
  |  * @ejb.util generate="physical"
  |  * 
  | *  
  |  * @generated
  |  * 
  |  */
- CustomerBean.java
Note : The lomboz sections are generated automatically.
/**
  |  *
  |  *  You can insert your documentation for 
'CustomerBean'.  *
  |  
  |  
  |  http://java.sun.com/xml/ns/j2ee"; 
xmlns:lomboz="http://lomboz.objectlearn.com/xml/lomboz";>
  |  
  |  
  |  Customer
  |  Customer
  |  au.com.tusc.bmp.CustomerBean
  |  Bean
  |  2.x
  |  mySchema
  |  
  |  
  |  
  |  
  |  
  |  
  |  *
  |  * 
  |  *
  |  *
  | 
  | 
  |  /**
  |  * @ejb.bean name="Customer"
  |  *  jndi-name="CustomerBean"
  |  *  type="BMP"
  |  * 
  |  * @ejb.dao class="au.com.tusc.bmp.CustomerDAO"
  |  *  impl-class="au.com.tusc.dao.CustomerDAOImpl"
  |  * 
  |  * @ejb.resource-ref res-ref-name="jdbc/DefaultDS"
  |  *  res-type="javax.sql.DataSource"
  |  *  res-auth="Container"
  |  * 
  |  * @jboss.resource-ref res-ref-name="jdbc/DefaultDS"
  |  *  jndi-name="java:/DefaultDS"
  |  * 
  |  * @ejb.util generate="physical"
  |  * 
  |  * 
  |  * @generated
  |  **/
 - Also, ejb-jar.xml is;

  | http://java.sun.com/dtd/ejb-jar_2_0.dtd";>
  | 
  | 
  | 
  |
  |Generated by XDoclet
  | 
  |
  | 
  |   
  |   
  |  
  | 
  |  StoreAccess
  | 
  |  au.com.tusc.session.StoreAccessHome
  |  au.com.tusc.session.StoreAccess
  |  au.com.tusc.session.StoreAccessLocalHome
  |  au.com.tusc.session.StoreAccessLocal
  |  au.com.tusc.session.StoreAccessSession
  |  Stateless
  |  Container
  | 
  |  
  | ejb/CustomerLocal
  | Entity
  | au.com.tusc.bmp.CustomerLocalHome
  | au.com.tusc.bmp.CustomerLocal
  | Customer
  |  
  | 
  |  
  | jdbc/DefaultDS
  | javax.sql.Datasource
  | container
  |  
  | 
  |   
  | 
  |  
  | 
  |   
  |   
  |  
  | 
  |  Customer
  | 
  |  au.com.tusc.bmp.CustomerHome
  |  au.com.tusc.bmp.Customer
  |  au.com.tusc.bmp.CustomerLocalHome
  |  au.com.tusc.bmp.CustomerLocal
  | 
  |  au.com.tusc.bmp.CustomerBMP
  |  Bean
  |  au.com.tusc.bmp.CustomerPK
  |  False
  | 
  |  
  | jdbc/DefaultDS
  | javax.sql.DataSource
  | Container
  |  
  | 
  |   
  | 
  |  
  | 
  |   
  |  
  | 
  |
  | 
  |
  | 
  |
  |
  |  
  | 
  |
  | 
  |
  | 
  |
  | 
  |
  |
  | 
  | 
- and jboss.xml is;

  | http://www.jboss.org/j2ee/dtd/jboss_3_2.dtd";>
  | 
  | 
  | 
  |nobody
  | 
  |
  | 
  |  
  | 
  |   
  |  Customer
  |  CustomerBean
  |  CustomerLocal
  |  
  | jdbc/DefaultDS
  | java:/DefaultDS
  |  
  | 
  | 
  | 
  | 
  |   
  | 
  |   
  |  StoreAccess
  |  StoreAccessBean
  |  StoreAccessLocal
  |  
  | ejb/CustomerLocal
  | CustomerLocal
  |  
  |  
  | jdbc/DefaultDS
  | java:/DefaultDS
  |  
  | 
  | 
  | 
  |   
  | 
  |
  | 
  |
  |
  | 
  | 

jbosszone


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

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


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.x an

2005-05-17 Thread jbosszone
 | 
  | 
  | 
  | 
  | 
  | = Step 6: Prepare the Service Description File
- Delete "/server/postgres/deploy/hsqldb-ds.xml".
- Copy "postgres-ds.xml" in "/jboss-4.0.2/docs/examples/jca" to 
"/server/postgres/deploy"
- In "postgres-ds.xml", the contents of  are as follows;   
 DefaultDS
  | 
jdbc:postgresql://localhost/MyStoreDbPgSQL
  | org.postgresql.Driver
  | postgres
  | **
  | 
  |   
  |   
  |  PostgreSQL 8.0
  |   
= Step 7: Modify following three files for the postgres configuration to be 
fully J2EE 1.4 compliant.
  Ref. : "What?s New in JBoss AS 4.0" (section 2.1) 
http://docs.jboss.org/jbossas/whatsnew40/pdf/whatsnew40.pdf

1. /server/postgres/conf/jboss-service.xml --> set the NamingService (JNDI) 
CallByValue to "true"
2. /server/postgres/deploy/ear-deployer.xml --> set the Isolated and 
CallByValue attributes to "true"
3. /server/postgres/deploy/jbossweb-tomcat55.sar/META-INF/jboss-service.xml --> 
confirm the Java2ClassLoadingCompliance and UseJBossWebLoader attributes to 
"false"

= Step 8: Modify the JBoss Login Config File 
(/server/postgres/conf/login-config.xml)
- Activate "Security domain for JBossMQ when using file-state-service.xml" 
section.
- Make a copy of "Security domains for testing new jca framework" (HsqlDbRealm) 
section and name it "PostgresDbRealm".
- Comment out the HsqlDbRealm section which is for "Hypersonic SQL".
- The  for PostgresDbRealm is as follows;

  | 
  |
  |   
  |  
  |  postgres
  |  **
  |  jboss.jca:service=LocalTxCM,name=DefaultDS
  |   
  |
  | 
= Step 9: Modify "standardjaws.xml"
- In "/server/postgres/conf/standardjaws.xml", the top parts of  are as 
follows; 
  | java:/DefaultDS
  | PostgreSQL
  | false
  | 
  |  :
= Step 10: Modify "standardjbosscmp-jdbc.xml"
- In "/server/postgres/conf/standardjbosscmp-jdbc.xml", the top parts are as 
follows; 
  |   
  | java:/DefaultDS
  | PostgreSQL
  | 
  | 
  | true
  |  :
= Step 11: Add ".bak" to disable "/jms" folder under "/server/postgres/deploy".

= Step 12: Arrange "/server/postgres/deploy-hasingleton/jms" folder instead of 
"/server/postgres/deploy/jms.bak" (Step 11)
- Delete hsqldb-jdbc2-service.xml and hsqldb-jdbc-state-service.xml. (Note : 
Addition of ".bak" for disabling is not effective.)
- Copy following three files in "C:/jboss-4.0.2/docs/examples/jms" to 
"/server/postgres/deploy-hasingleton/jms".

oil-service.xml
postgres-jdbc3-service.xml
rmi-il-service.xml

- Modify the jdbc3 Persistence Manager section of postgres-jdbc3-service.xml as 
follows; (i.e. : ...=DataSourceBinding, name=PostgresDS --> name=DefaultDS ...)
:
  |  | If you encouter problems with the configured BLOB_TYPE try a 
different
  |  | setting. Valid settings are OBJECT_BLOB, BINARYSTREAM_BLOB and 
BYTES_BLOB.
  |    -->
  |   
  | jboss.jca:service=DataSourceBinding,name=DefaultDS
  | 
  |   BLOB_TYPE=BYTES_BLOB
  | :
*** Start Eclipse and build a new project as MyStorePgSQL.

= Step 13: Edit "xdoclet.xml" for PostgreSQL
- In "/MyStorePgSQL/MyStoreMgr/META-INF/xdoclet.xml", the JBoss part is as 
follows; :
  |  
  |  :
= Step 14: Start JBoss from the "Lomboz J2EE View" tag in Eclipse.



Regards,

jbosszone

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

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


---
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_id=7412&alloc_id=16344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2005-03-05 Thread jbosszone
lows;
  |  
  | :
  | = Step 12: Start JBoss from ?Lomboz J2EE View?
  | - If any failure/error messages such as ?XAConnectionFactory not bound? 
appear during start-up process,
  |   stop JBoss (keep PostgreSQL running) and check the tables in the database.
  |   a. $ psql MyStoreDbPgSQL
  |   b. =# \dt
  |   - if the tables ?jms_messages? and ?jms_transactions? exist, drop both of 
them.
  |   c. =# DROP TABLE jms_messages;
  |   d. =# DROP TABLE jms_transactions;
  | - Re-start JBoss
jbosszone


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2004-09-01 Thread jbosszone
Dear Vishal

For the Tutorial Chapter 9 "Create VB.Net Client", I have used VC#.Net instead of 
VB.Net and the client is working.

== VB.Net codes in the original tutorial ==
"Add the following code for the Sub btnGetID_Click()"
Dim strResult As String 'Output result for ID
Dim objWebRef As New WebReference.StoreAccessLocalService

'Call loginuser function and display the result ID to the lblOutput control
lblOutput.Text = objWebRef.loginUser(TextBoxName.Text, TextBoxPassword.Text)

== my trial with VC#.Net ==
// string strResult; (this is not necessary)
localhost.StoreAccessService objWebRef  = new localhost.StoreAccessService();

// Call loginuser function and display the result ID to the lblOutput control
lblOutput.Text = objWebRef.loginUser(TextBoxName.Text, TextBoxPassword.Text);

Regards,

jbosszone

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

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


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2004-08-17 Thread jbosszone
Dear Vishal
 
I have cleared up to "Create Web Client" in Chapter 9.
 
For solving my troubles on the "deploy.wsdd"file, what I did are as follows;
 
1. From the thread info in 
http://forge.objectweb.org/forum/forum.php?thread_id=1087&forum_id=360 ,
added "jboss-j2ee.jar" in JAVA build-path.
 
2. Also using  
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=36910&postdays=0&postorder=asc&start=270
 (javaexpert of 09.Jul.2004),
modified the "deploy.wsdd",
from
  parameter name="homeInterfaceName" 
value="au.com.tusc.session.StoreAccessLocalHome"
  parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccessLocal"
to
  parameter name="homeInterfaceName" value="au.com.tusc.session.StoreAccessHome"
  parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccess"
 
  i.e. deleted 'Local'.
 
3. Furthermore, modified a line;
from
  parameter name="beanJndiName" value="StoreAccessLocal"
to
  parameter name="beanJndiName" value="StoreAccessBean"

i.e. changed from 'Local' to 'Bean'.
 
Best Regards,
 
jbosszone


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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Tutorial on J2EE using JBOSS, Eclipse and Lomboz : Chapter 9

2004-08-17 Thread jbosszone
Dear Vishal
 
I have cleared up to "Create Web Client" in Chapter 9.
 
For solving my troubles on the "deploy.wsdd"file, what I did are as follows;
 
1. From the thread info in 
http://forge.objectweb.org/forum/forum.php?thread_id=1087&forum_id=360 ,
added "jboss-j2ee.jar" in JAVA build-path.
 
2. Also using  
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=36910&postdays=0&postorder=asc&start=270
 (javaexpert of 09.Jul.2004),
modified the "deploy.wsdd",
from
  parameter name="homeInterfaceName" 
value="au.com.tusc.session.StoreAccessLocalHome"
  parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccessLocal"
to
  parameter name="homeInterfaceName" value="au.com.tusc.session.StoreAccessHome"
  parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccess"
 
  i.e. deleted 'Local'.
 
3. Furthermore, modified a line;
from
  parameter name="beanJndiName" value="StoreAccessLocal"
to
  parameter name="beanJndiName" value="StoreAccessBean"

i.e. changed from 'Local' to 'Bean'.
 
Best Regards,

jbosszone



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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user