Re: [Wicket-user] Unexpected RuntimeException

2006-12-23 Thread Juergen Donnerstag
I don't think it is the jar alone, I'm using jar as well and I don't get the exception. But I think you asked the right question: What is causing the xmlReader object to be null? Obviously iit happens while closeing the parser, which means that it started parsing (with a none-null parser object) an

Re: [Wicket-user] Constructing a list of links from java

2006-12-23 Thread Nino Wael
hmm have you tried the wicket.link class? that generates the link... I had to learn something similar, you can attach a link wicket java class to a button html markup if you need to for some reason and vice versa. And that goes in general you can attach any component to any markup if you want

Re: [Wicket-user] Constructing a list of links from java

2006-12-23 Thread Igor Vaynberg
the link is smart enough to figure out what context it is used in by checking the markup. if it is attached to a tag that supports href then that is used, if not it generates onclick javascript -igor On 12/23/06, Nino Wael <[EMAIL PROTECTED]> wrote: hmm have you tried the wicket.link class?

[Wicket-user] 互惠互利

2006-12-23 Thread 张俊辉
贵公司负责人(经理/财务)您好: 本公司为税务机关代开发票授权公司.本公司现有全国各 地各种行业固定纳税公司的余额发票.可以优惠对外开具.每月 有一部分增值税电脑发票(7%左右)海关代征(3%)和普通发票收 取税率为0.8-1%,详细税率可根据地区.行业.票额大小商谈! 普通国税发票为商品销售(包含所有行业的商品)。普 通地税发票为建筑、安装、广告、设计、运输、租赁、咨询、 培训、旅游、住宿等其它服务行业 。 本公司与全国各地区各行业的公司有发票业务来往。本 公司只需收到贵公司的开票内容后,便会通过税务机关筛选 出相匹配的行业及适合的公司开具发票。

Re: [Wicket-user] exception when accesing application instance from a new Thread

2006-12-23 Thread Jaime De La Jara
Ok, I tried Application.get("servletName") and it worked !, basically I needed to access a Dao object that is defined in Spring and whose getter is in my Application instance, I think I'll go this way. Thanks Igor :) Jaime. Igor Vaynberg <[EMAIL PROTECTED]> wrote: that shouldnt be a problem, e

Re: [Wicket-user] exception when accesing application instance from a new Thread

2006-12-23 Thread Igor Vaynberg
hrm, why not use the webcontextutils (or whatever it is called in spring) class that has a static getrequiredapplicactioncontext(servletcontext) method. i would imagine this code has nothing to do with wicket, so why even use wicket to get to the dao, just get the application context and lookup t

Re: [Wicket-user] Constructing a list of links from java

2006-12-23 Thread Dustin Sallings
On Dec 23, 2006, at 0:12, Nino Wael wrote: > hmm have you tried the wicket.link class? that generates the link... > > I had to learn something similar, you can attach a link wicket java > class to a button html markup if you need to for some reason and > vice versa. And that goes in general y