I'm migrating my project from Netbeans to jdevelop. In Netbeans, it compiles fine, but in jdevelop i get an error that says that it was found a </bean efine> tag without the opening tag. When i opend the code i saw that the tag was opened: <bean efine id="regPag" name="regPage" scope="request"/> All other <bean> tags represent no problem, just the ones with java code beteewn them, like this:
<bean efine id="regPag" name="regPage" scope="request"/> <% String rp = ""+regPag; int totalPage = Integer.parseInt(rp); %> </bean efine>
Can you help me? Thanks in advance.
Dany Mendez
[edited to disable smilies] [ November 16, 2008: Message edited by: Jeanne Boyarsky ]
The project is runnig fine in netbeans, so i supose that the problem must be with the Jdeveloper or i didn't configure it properly. Maybe some jar is missing... Is there any fix to the problem of bad parsing?
Look at the first tag. Now look at the end of your first tag (or, more precisely, one character before the end of your first tag).
Dany Mendez
Greenhorn
Joined: Nov 04, 2008
Posts: 14
posted
0
Ho! I get it. It�s already closed! One more question: This code was not made by me, I'me just instaling it in other enviroment and for that i need to change some things. The question is: Why did it worked fine wtith netbeans and it does not with jdeveloper?