Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(34) |
Aug
(93) |
Sep
(115) |
Oct
(187) |
Nov
(114) |
Dec
(176) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(273) |
Feb
(271) |
Mar
(175) |
Apr
(416) |
May
(253) |
Jun
(386) |
Jul
(466) |
Aug
(405) |
Sep
(350) |
Oct
(452) |
Nov
(576) |
Dec
(344) |
2003 |
Jan
(427) |
Feb
(379) |
Mar
(587) |
Apr
(1338) |
May
(329) |
Jun
(463) |
Jul
(489) |
Aug
(373) |
Sep
(230) |
Oct
(249) |
Nov
(209) |
Dec
(123) |
2004 |
Jan
(254) |
Feb
(190) |
Mar
(312) |
Apr
(271) |
May
(210) |
Jun
(224) |
Jul
(194) |
Aug
(158) |
Sep
(166) |
Oct
(117) |
Nov
(72) |
Dec
(74) |
2005 |
Jan
(106) |
Feb
(81) |
Mar
(97) |
Apr
(105) |
May
(61) |
Jun
(70) |
Jul
(67) |
Aug
(74) |
Sep
(64) |
Oct
(52) |
Nov
(25) |
Dec
(57) |
2006 |
Jan
(34) |
Feb
(28) |
Mar
(20) |
Apr
(48) |
May
(18) |
Jun
(22) |
Jul
(39) |
Aug
(37) |
Sep
(13) |
Oct
(34) |
Nov
(34) |
Dec
(14) |
2007 |
Jan
(13) |
Feb
(17) |
Mar
(18) |
Apr
(34) |
May
(32) |
Jun
(20) |
Jul
(10) |
Aug
(6) |
Sep
|
Oct
(8) |
Nov
(11) |
Dec
(6) |
2008 |
Jan
(4) |
Feb
(3) |
Mar
(13) |
Apr
(2) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(8) |
Oct
(2) |
Nov
(1) |
Dec
(3) |
2009 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(7) |
Jun
(57) |
Jul
(8) |
Aug
|
Sep
(6) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
(3) |
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2011 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
(7) |
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(3) |
2
(4) |
3
|
4
(6) |
5
(5) |
6
(1) |
7
|
8
(5) |
9
(1) |
10
(2) |
11
(5) |
12
(3) |
13
|
14
|
15
|
16
(8) |
17
(6) |
18
(4) |
19
(5) |
20
(1) |
21
(1) |
22
(1) |
23
|
24
(1) |
25
(2) |
26
|
27
|
28
|
29
(8) |
30
|
31
(2) |
|
|
|
From: Frank Langelage <frank@la...> - 2005-08-25 21:04:11
|
Marco Mistroni wrote: > * > * @ejb.bean > * name="Blog" > * type="CMP" > * cmp-version="2.x" > * primkey-field="id" > * view-type="local" > * local-jndi-name="blog/BlogLocalHome" > * > > > * > * @ejb.bean > * name="BlogFacade" > * type="Stateless" > * view-type="remote" > * jndi-name="blog/BlogFacadeHome" > * > * @ejb.ejb-ref > * ejb-name="Blog" > * view-type="local" > * > * @jboss.ejb-ref-jndi > * jndi-name="blog/BlogLocalHome" > * ref-name="Blog" > * > */ > > > blogLocalHome = (BlogLocalHome)context.lookup("Blog"); > > >whenever i deploy my ejb on jboss 3.2.5 i got followng error > >22:05:45,703 ERROR [MainDeployer] could not create deployment: file:/C:/jboss-3. >2.5/server/default/deploy/jboss-ejb-examples-1.0.jar >org.jboss.deployment.DeploymentException: Error in jboss.xml for Bean BlogFacade >: ejb-ref ejb/Blog found in jboss.xml but not in ejb-jar.xml > at org.jboss.metadata.ApplicationMetaData.importJbossXml(ApplicationMeta > >anyone can explain me what i am doing wrong? > > > Read the error message carefully: Error in jboss.xml for Bean BlogFacade: ejb-ref ejb/Blog found in jboss.xml but not in ejb-jar.xml So the reference is named "ejb/Blog" in jboss.xml. References are always prefixed with "ejb/". The second part is the name given for attribute ejb-name. You should add the ref-name also to ejb.ejb-ref. If you define a reference, use BlogLocalHome.COMP_NAME (="java:comp/env/ejb/Blog") for lookup to use the reference. |
From: Ankush Purwar <apurwar@ne...> - 2005-08-25 09:33:56
|
Hi , I have a problem with xDoclet. I am using weblogic 8.x server. We are using xDoclet to generate descriptor files. I want to add one weblogic specific tag in my Stateful session Bean=20 session-timeout-seconds The structure of this tag looks like : <stateful-session-descriptor> <stateful-session-cache>=20=20=20=20=20=20=20=20 <idle-timeout-seconds>100</idle-timeout-seconds> <session-timeout-seconds>3600</session-timeout-seconds> </stateful-session-cache> </stateful-session-descriptor>=20 But I don't find any such tag in xDoclet. Can you help me on this ? Thanks in advance. Regards, Ankush Purwar ***************************************************************************= ***** Network Programs is a SEI-CMM Level 5 & ISO 9001: 2000 Certified Company ***************************************************************************= ***** The information contained in this communication (including any attachments)= is intended solely for the use of the individual or entity to whom it is addre= ssed and others authorized to receive it. It may contain confidential or legally privileged information. If you are not the intended recipient you are hereby notified that any disclosure, copying, distribution or taking any action in reliance on the contents of this information is strictly prohibited and may= be unlawful. If you have received this communication in error, please notify us immediately by responding to this email and delete it from your system. Network Programs (India) Limited is neither liable for the proper and compl= ete transmission of the information contained in this communication nor for any delay in its receipt. ***************************************************************************= ***** |