rad

Maven plugin for RAD 7.5.5

丶灬走出姿态 提交于 2019-12-25 01:26:40
问题 i have to migrate some project from Eclipse to RAD 7.5.5 Now i'm trying to install a maven plugin like i had on Eclipse, but i can't find it, i tried http://repository.sonatype.org/content/sites/forge-sites/m2e http://m2eclipse.sonatype.org/sites/m2e-e34/ http://m2eclipse.sonatype.org/sites/m2e http://download.eclipse.org/technology/m2e/releases those sites that i found on web when i go for: Help>Software Updates>Aviable Software>Add sites gives to me "no repository found" So i need a working

Cannot 'Add and Remove' Maven Project with Websphere 7 on RAD 8.5

怎甘沉沦 提交于 2019-12-24 19:03:55
问题 Thank you in advance for your help! I can access the Admin console in Websphere 7 and install the EAR file successfully for a maven project. I cannot right click on the Websphere 7 server, In Rad 8.5, and select 'Add and Remove'. When I do that, it doesn't show the maven project. Instead, it shows ' There are no resources that can be added or removed from the server' Any Ideas for how to get it to show up under 'add and remove'? 回答1: There is a video tutorial provided by IBM as 1. Using Maven

Why isn't RAD (Eclipse) able to properly detect WAS server startup?

爱⌒轻易说出口 提交于 2019-12-24 03:12:49
问题 If I start WAS 6.1 under RAD 8.0.4.1, I see the server start in the console: [9/24/12 17:21:18:671 EDT] 0000000a WsServerImpl A WSVR0001I: Server server1 open for e-business RAD continues to indicate that it's waiting for server startup in the progress pane: "Starting WebSphere Application Server v6.1 at localhost". This is a pain because it eventually times out and tells me the server never started even though it's running and responding to requests and it seems like this state means

Websphere in RAD hangs on startup

送分小仙女□ 提交于 2019-12-23 03:47:21
问题 We've had this problem in RAD 7 with Websphere 7, and it's been an inconsistent nuisance, but we are moving to RAD 9 with Websphere 8.5.5 and it is a MUCH more consistent problem. What happens is that when starting the application server, it claims to finish starting, but the status from the servers tab doesn't finish, and RAD seems to almost lose conversation with the server. Eventually it reports that the server failed to start within 300 seconds, and tries to stop it, but, having lost

Log4J does not log anything

99封情书 提交于 2019-12-19 06:26:39
问题 I just picked up an existing web application at work that is supposed to log its activity using Log4J. I've configured my workspace exactly as I was told to and everything else (db connection, authentication, etc...) works fine except that the nothing is being written to the log file. Other similar applications have no problem logging. I've looked at the WebSphere console when the application starts up and there are no errors there that might indicate why Log4J isn't logging. I mentioned this

Display database structure from Delphi (rad studio)

旧巷老猫 提交于 2019-12-13 09:24:15
问题 Here is my procedure. When I execute it nothing happens; why is this? FData.FDQuery1.SQL.Clear; FData.FDQuery1.SQL.Add('select StrDBName FROM INFORMATION_SCHEMA.TABLES'); FData.FDQuery1.ExecSQL; while FData.FDQuery1.Eof do ShowMessage(FData.FDQuery1.Fields[0].ToString); end; 回答1: As already explained to you in comments, your while loop should look something like this: while **not** FData.FDQuery1.Eof do **begin** ShowMessage(FData.FDQuery1.Fields[0].ToString); **FData.FDQuery1.Next;** end;

unable to get type of control for radcombobox in javascript

a 夏天 提交于 2019-12-12 03:29:35
问题 I am new to radcontrols. I want to know how to get type of control of a radcontrol using javascript. For normal asp.net controls we write: var controlType=document.getElementById("hdnCode").type; The above code will give type of control as "hidden", and for textbox it will give "text". When i try to get type of a rad control it gives undefined as shown here: var controlType=document.getElementById("RadComboBox1").type; The above code gives undefined. Please suggest me how to get type in case

How can I resolve this java.lang.NoClassDefFoundError: org.json.simple.JSONObject error?

梦想的初衷 提交于 2019-12-12 00:35:09
问题 I'm developing a Web API in Rational Application Developer using the Jersey framework and Tomcat. I'd like to use JSON, but I'm getting the following error: I know this is usually because of a missing jar, so I made sure it was included in my build path: And in my includes: import java.util.ArrayList; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs

Spring factory-method=“aspectOf” is not working when we deploy the application from RAD

偶尔善良 提交于 2019-12-11 12:08:39
问题 We are using AspectJ with Spring support. I have declared my aspect in my ApplicationContext.xml as below. <context:annotation-config /> <context:spring-configured /> <context:component-scan base-package="com,com.util"> <context:exclude-filter type="regex" expression="com.xyz*.*" /> </context:component-scan> <bean id="xyz" class="com.util.XyzAspect" factory-method="aspectOf"/> Aspect Class: @Configurable @Aspect public class XyzAspect { @Autowired private XyzUtil xyzUtil; @After("showPoint()

Add resources or property to Websphere's classpath

北战南征 提交于 2019-12-11 10:50:31
问题 I've a problem and a solution. But I don't like my solution, could someone provide an elegant way of solving this? This is for running web application inside IDE. I've an EAR project and I'm using RAD7.5. My EAR project looks like EAR_Project Deployment Descriptor Module Jar1 Jar2 War Meta-Inf application.xml My question is, Jar1 and Jar2 has its own libraries and properties files. As of now, I copy all libraries and properties of Jar1&Jar2 into War/Web-Inf and it works fine. Is there a