Siddhesh Khedekar

Ranch Hand
+ Follow
since Nov 09, 2009
Merit badge: grant badges
Biography
I have basic knowledge of Java,Serlets,JSPs.
Now I have migrated to Documentum and Archiving technology.
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
7
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Siddhesh Khedekar

Al Hobbs wrote:Angularjs and Angular2 are very different in terms of development so you probably don't want to upgrade that. Angular 2 is way better though.

Also, Java 11 you can use var so that alone is worth it. :P




Thanks...This is helpful
4 years ago
Hi All,

We plan to upgrade 20Apps based on Angular(1)JS and Spring.
First, Database will upgrade from Oracle11 to 18C. OS will change from SunOs5.10 to RHEL7.x. From application perspective I have below queries -

1)While we refactor applications, Should we use JDK8 or 11. If Java8, how many years will Java8 based apps sustain without any issues.
2) Do we need to upgrade Angular1 JS to Angular2/above.( We don't need any performance or feature improvement)

Thank You.

Regards,
Siddhesh
4 years ago
Hi All,

We plan to upgrade 20Apps based on Angular(1)JS and Spring.
First, Database will upgrade from Oracle11 to 18C. OS will change from SunOs5.10 to RHEL7.x. From application perspective I have below queries -

1)While we refactor applications, Should we use JDK8 or 11. If Java8, how many years will Java8 based apps sustain without any issues.
2) Do we need to upgrade Angular1 JS to Angular2/above.( We don't need any performance or feature improvement)

Thank You.

Regards,
Siddhesh
4 years ago
HI Experts,

Preparing for db exam, can anyone help with following qns -

1) What is true about following table -
Tournament Year Winner Captain
Sports1 1998 County1 Captian1
Sports2 1999 County2 Captian2
Sports3 2000 County1 Captian1
A above table is in 2nd Normal form.
B above table is in 3rd Normal form.
C Table is not free from update anomalies
D Table is in 2nd normal form and has no update anomalies
(I think answer is d as you can take Tournament and year as composite (primary) key )

2) A table with following column-
Project Lead
Team Lead
where Team Lead has single entry pt. but project lead may have multiple entry is -
A. 1st normal form
b. 1st normal form provided team lead can be mapped to only 1 project lead
c. 2nd normal form provided team lead can be mapped to only 1 project lead
d. None of above
(I think answer is c, I made table like this -
PL TL
P1 T1
P1 T2
P2 T3
P2 T4
P3 T5)

Can anyone suggest

German Gonzalez-Morris wrote:are you expecting an automatic deployment after copying your application to C:\bea\user_projects\domains\mydomain\applications directory ?





HI ,

I deployed my application and it is showing up in Deployment section in WebLogic. However when I try starting that App. from Admin Console it says

javax.servlet.ServletException: [HTTP:101249][weblogic.servlet.internal.WebAppServletContext@d0412e - appName: 'Concentra',Servlet class org.apache.struts.action.ActionServlet for servlet struts-servlet could not be loaded because the requested class was not found in the classpath . java.lang.ClassNotFoundException: org.apache.struts.action.ActionServlet.

Could you please suggest.

Thank You.
9 years ago
Hi Experts,

I am trying to get substring using a Java here is my code -

public UpdateString(){
String s1 = "abc:123";
String s2 = s1.split(":")[0];
System.out.println(s2);
}

Output - abc

Howvere with s1 = 客戶諮詢: 若受保護與遠端地點執行不同的 HP StoreVirtual LeftHand 作業系統版本,HP StoreVirtual 4000 - HP Storage 的重新保護作業會失敗

Output - 客戶諮詢: 若受保護與遠端地點執行不同的 HP StoreVirtual LeftHand 作業系統版本,HP StoreVirtual 4000 - HP Storage 的重新保護作業會失敗


How can I get string before : irrespective of language.
I will then process code on loop with arraylist.
9 years ago
Hi Experts,

Can you tell me how view xml file and zip files in Unix.
I guess I need to export in my local. Can you suggest commands for it.

Thank You.
9 years ago
Hi Experts,

I am new to Weblogic. I got my war generated and deployed on weblogic directory at C:\bea\user_projects\domains\mydomain\applications
Also I opened my admin console but unable to see it in Deployment section.

Lil confused as I hv worked only on Tomcat.

Thank You.
9 years ago
Hi Experts,

I am trying to build a project .war file. All Jars are refenced correctly no error in that part however when I try to run build.xml ant file getting error as below -

Buildfile: D:\HP Data\Concentra\SVN Code\Concentra UI\build.xml
clean:
[delete] Deleting directory D:\HP Data\Concentra\SVN Code\Concentra UI\build
clean:
prepare:
[mkdir] Created dir: D:\HP Data\Concentra\SVN Code\Concentra UI\build
[mkdir] Created dir: D:\HP Data\Concentra\SVN Code\Concentra UI\build\WEB-INF
[mkdir] Created dir: D:\HP Data\Concentra\SVN Code\Concentra UI\build\WEB-INF\classes
[copy] Copying 952 files to D:\HP Data\Concentra\SVN Code\Concentra UI\build
[copy] Copied 28 empty directories to 1 empty directory under D:\HP Data\Concentra\SVN Code\Concentra UI\build
compile:
[javac] Compiling 568 source files to D:\HP Data\Concentra\SVN Code\Concentra UI\build\WEB-INF\classes
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\HttpFileUploader.java:7: package org.apache.commons.httpclient does not exist
[javac] import org.apache.commons.httpclient.HttpClient;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\HttpFileUploader.java:8: package org.apache.commons.httpclient.methods does not exist
[javac] import org.apache.commons.httpclient.methods.InputStreamRequestEntity;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\HttpFileUploader.java:9: package org.apache.commons.httpclient.methods does not exist
[javac] import org.apache.commons.httpclient.methods.PutMethod;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\HttpFileUploader.java:10: package org.apache.commons.httpclient.methods does not exist
[javac] import org.apache.commons.httpclient.methods.RequestEntity;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\HttpFileUploader.java:11: package org.apache.commons.httpclient.params does not exist
[javac] import org.apache.commons.httpclient.params.HttpClientParams;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\session\ConcentraSession.java:4: package org.apache.commons.io does not exist
[javac] import org.apache.commons.io.FileUtils;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\TaxonomyConnection\TaxonomyAPI.java:5: package javax.servlet.annotation does not exist
[javac] import javax.servlet.annotation.WebServlet;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\TaxonomyConnection\TaxonomyAPI.java:10: cannot find symbol
[javac] symbol: class WebServlet
[javac] @WebServlet("/TaxonomyAPI")
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:6: package org.apache.struts.upload does not exist
[javac] import org.apache.struts.upload.*;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:288: cannot find symbol
[javac] symbol : class FormFile
[javac] location: class com.hp.cks.concentra.core.admin.ProjectConfigBean
[javac] public String addAttachment(FormFile attachmentFile, String title) throws DmRepositoryException, DfException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:310: cannot find symbol
[javac] symbol : class FormFile
[javac] location: class com.hp.cks.concentra.core.admin.ProjectConfigBean
[javac] public String replaceAttachment(String replaceId, FormFile attachmentFile, String title) throws DmRepositoryException, DfException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ed\EnterpriseDirectoryAgent.java:14: package org.apache.commons.beanutils does not exist
[javac] import org.apache.commons.beanutils.BeanUtils;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\document\AttachmentBean.java:3: package org.apache.struts.upload does not exist
[javac] import org.apache.struts.upload.FormFile;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\document\AttachmentBean.java:55: cannot find symbol
[javac] symbol : class FormFile
[javac] location: class com.hp.cks.concentra.core.document.AttachmentBean
[javac] public String create(FormFile theFile, boolean deleteSource) throws DmRepositoryException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\document\AttachmentBean.java:92: cannot find symbol
[javac] symbol : class FormFile
[javac] location: class com.hp.cks.concentra.core.document.AttachmentBean
[javac] public synchronized boolean update(FormFile theFile, boolean deleteSource) throws DmRepositoryException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\document\CLibraryDoc.java:7: package org.jdom does not exist
[javac] import org.jdom.*;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionError;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:11: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionErrors;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:12: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\DocumentForm.java:7: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.*;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionErrors;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:9: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:36: cannot find symbol
[javac] symbol: class ActionForm
[javac] public class BaseObjectForm extends ActionForm{
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:1638: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.SupportDocumentForm
[javac] public ActionErrors markRequiredProperties(CBaseObject obj){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:1899: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class com.hp.cks.concentra.ui.document.SupportDocumentForm
[javac] public ActionErrors validate(ActionMapping mapping,HttpServletRequest request){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\SupportDocumentForm.java:1899: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.SupportDocumentForm
[javac] public ActionErrors validate(ActionMapping mapping,HttpServletRequest request){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\DocumentForm.java:2092: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.DocumentForm
[javac] public ActionErrors markRequiredProperties(CBaseObject obj){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\DocumentForm.java:2314: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class com.hp.cks.concentra.ui.document.DocumentForm
[javac] public ActionErrors validate(ActionMapping mapping,HttpServletRequest request){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\DocumentForm.java:2314: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.DocumentForm
[javac] public ActionErrors validate(ActionMapping mapping,HttpServletRequest request){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:1307: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.BaseObjectForm
[javac] public ActionErrors markRequiredProperties(CBaseObject obj){
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:1319: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class com.hp.cks.concentra.ui.document.BaseObjectForm
[javac] public void reset(ActionMapping mapping,HttpServletRequest request){ // RG - why is this commented out?
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:1328: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class com.hp.cks.concentra.ui.document.BaseObjectForm
[javac] public ActionErrors validate(ActionMapping mapping,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\ui\document\BaseObjectForm.java:1328: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.ui.document.BaseObjectForm
[javac] public ActionErrors validate(ActionMapping mapping,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:18: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionError;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:19: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:20: package org.jdom does not exist
[javac] import org.jdom.Document;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:21: package org.jdom does not exist
[javac] import org.jdom.Element;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:22: package org.jdom does not exist
[javac] import org.jdom.JDOMException;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:23: package org.jdom.input does not exist
[javac] import org.jdom.input.SAXBuilder;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:54: cannot find symbol
[javac] symbol : class Document
[javac] location: class com.hp.cks.concentra.core.metadataMgmt.LTLoader
[javac] Document doc = null;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:80: cannot find symbol
[javac] symbol : class JDOMException
[javac] location: class com.hp.cks.concentra.core.metadataMgmt.LTLoader
[javac] public void loadTranslations() throws DfException, DmRepositoryException, JDOMException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:129: cannot find symbol
[javac] symbol : class JDOMException
[javac] location: class com.hp.cks.concentra.core.metadataMgmt.LTLoader
[javac] private HashMap getMDOProperties() throws DfException, DmRepositoryException, JDOMException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:286: cannot find symbol
[javac] symbol : class Element
[javac] location: class com.hp.cks.concentra.core.metadataMgmt.LTLoader.ElementSet
[javac] public ElementSet(Element e, ConcentraSession session) throws JDOMException, DfException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\metadataMgmt\LTLoader.java:286: cannot find symbol
[javac] symbol : class JDOMException
[javac] location: class com.hp.cks.concentra.core.metadataMgmt.LTLoader.ElementSet
[javac] public ElementSet(Element e, ConcentraSession session) throws JDOMException, DfException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\opsreports\OpsReportUtils.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionError;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\opsreports\OpsReportUtils.java:11: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionErrors;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\opsreports\OpsReportUtils.java:102: cannot find symbol
[javac] symbol : class ActionErrors
[javac] location: class com.hp.cks.concentra.core.opsreports.OpsReportUtils
[javac] public static Date getNextRunDate(ActionErrors errors, String frequency) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:10: package org.apache.axis.encoding does not exist
[javac] public class DebugResponseType implements java.io.Serializable, org.apache.axis.encoding.AnyContentType {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:10: package org.apache.axis.encoding does not exist
[javac] public class OriginalQueryType implements java.io.Serializable, org.apache.axis.encoding.AnyContentType {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:10: package org.apache.axis.encoding does not exist
[javac] public class DiagnosticType implements java.io.Serializable, org.apache.axis.encoding.AnyContentType {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:19: package org.apache.axis.message does not exist
[javac] private org.apache.axis.message.MessageElement [] _any;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:29: package org.apache.axis.message does not exist
[javac] org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:123: package org.apache.axis.message does not exist
[javac] public org.apache.axis.message.MessageElement [] get_any() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:133: package org.apache.axis.message does not exist
[javac] public void set_any(org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:203: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:241: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:248: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DebugResponseType.java:260: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:13: package org.apache.axis.message does not exist
[javac] private org.apache.axis.message.MessageElement [] _any;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:20: package org.apache.axis.message does not exist
[javac] org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:51: package org.apache.axis.message does not exist
[javac] public org.apache.axis.message.MessageElement [] get_any() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:61: package org.apache.axis.message does not exist
[javac] public void set_any(org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:113: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:129: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:136: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\OriginalQueryType.java:148: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:10: package org.apache.axis.encoding does not exist
[javac] public class DiagnosticMessageType implements java.io.Serializable, org.apache.axis.encoding.AnyContentType {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:13: package org.apache.axis.message does not exist
[javac] private org.apache.axis.message.MessageElement [] _any;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:20: package org.apache.axis.message does not exist
[javac] org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:59: package org.apache.axis.message does not exist
[javac] public org.apache.axis.message.MessageElement [] get_any() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:69: package org.apache.axis.message does not exist
[javac] public void set_any(org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:129: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:146: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:153: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticType.java:165: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:15: package org.apache.axis.message does not exist
[javac] private org.apache.axis.message.MessageElement [] _any;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:23: package org.apache.axis.message does not exist
[javac] org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:75: package org.apache.axis.message does not exist
[javac] public org.apache.axis.message.MessageElement [] get_any() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:85: package org.apache.axis.message does not exist
[javac] public void set_any(org.apache.axis.message.MessageElement [] _any) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:143: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:167: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:174: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\DiagnosticMessageType.java:186: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterModifierType.java:105: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterModifierType.java:128: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterModifierType.java:135: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterModifierType.java:147: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\ModifyModeType.java:50: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\ModifyModeType.java:58: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\ModifyModeType.java:67: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\ModifyModeType.java:76: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterType.java:113: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterType.java:136: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterType.java:143: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetFilterType.java:155: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetRequestType.java:105: package org.apache.axis.description does not exist
[javac] private static org.apache.axis.description.TypeDesc typeDesc =
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetRequestType.java:128: package org.apache.axis.description does not exist
[javac] public static org.apache.axis.description.TypeDesc getTypeDesc() {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetRequestType.java:135: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Serializer getSerializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\fast\webservice\client\stub\FacetRequestType.java:147: package org.apache.axis.encoding does not exist
[javac] public static org.apache.axis.encoding.Deserializer getDeserializer(
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:16: warning: com.sun.image.codec.jpeg.ImageFormatException is Sun proprietary API and may be removed in a future release
[javac] import com.sun.image.codec.jpeg.ImageFormatException;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:17: warning: com.sun.image.codec.jpeg.JPEGCodec is Sun proprietary API and may be removed in a future release
[javac] import com.sun.image.codec.jpeg.JPEGCodec;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:18: warning: com.sun.image.codec.jpeg.JPEGDecodeParam is Sun proprietary API and may be removed in a future release
[javac] import com.sun.image.codec.jpeg.JPEGDecodeParam;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:19: warning: com.sun.image.codec.jpeg.JPEGImageDecoder is Sun proprietary API and may be removed in a future release
[javac] import com.sun.image.codec.jpeg.JPEGImageDecoder;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:255: warning: com.sun.image.codec.jpeg.ImageFormatException is Sun proprietary API and may be removed in a future release
[javac] private int decodeRasterResolution(String fileName) throws ImageFormatException, IOException {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageUtils.java:351: warning: com.sun.image.codec.jpeg.JPEGDecodeParam is Sun proprietary API and may be removed in a future release
[javac] private static int ComputeJpegDPI(JPEGDecodeParam params) {
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\charset\SimpleCharsetDetector.java:33: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] results.add( charset);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\charset\SimpleCharsetDetector.java:59: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] results.add("ASCII");
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\charset\SimpleCharsetDetector.java:66: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] results.add( prob[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\Encryption.java:41: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] charCodes.addElement(decrypted);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ListBean.java:24: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add( in.get(i));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ListBean.java:33: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(CksConstants.LISTBOX_DEFAULT, ""));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\MultibyteCharacterHandler.java:60: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] charReplacementLookup.add(new NonPrintableCharReplacement(reps
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\NextRunDateCalculator.java:753: warning: [unchecked] unchecked call to put(K,V) as a member of the raw type java.util.Map
[javac] map.put(reportTypes[i], nextRunDate);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:71: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(CksConstants.LISTBOX_DEFAULT,""));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:82: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(results.getString("label") + " (" + newColumn + ")",results.getString("val")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:87: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(ref);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:91: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(results.getString("label"),results.getString("val")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:126: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(CksConstants.LISTBOX_DEFAULT,""));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:143: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(results.getString("label") + " (" + labelSuffix + ")",results.getString("val")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:147: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(results.getString("label"),results.getString("val")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:176: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(label,val));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:198: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(label,val));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:212: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new ReferenceValueBean(label,val));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:304: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] values.add(val);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:325: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] details.add(label+","+val);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:343: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] values.add(bean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:361: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] values.add(bean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:395: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] this.addElement(refBean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:401: warning: [unchecked] unchecked call to insertElementAt(E,int) as a member of the raw type java.util.Vector
[javac] this.insertElementAt(refBean,i);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:406: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] this.addElement(refBean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\ReferenceListBean.java:430: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] tmpArray.add(categorizationValues[j][0]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:69: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new RelationshipValueBean(results.getString("father"),results.getString("child")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:125: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] parentValues.add(parent);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:148: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] parentValues.add(parent);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:168: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] childrenValues.add((String)bean.getChild());
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:191: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] childValues.add(child);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\RelationshipListBean.java:207: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] this.add(new RelationshipValueBean(parent,child,childName));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\SendMail.java:186: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] vecToAddress.addElement(strToAdd[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\SendMail.java:194: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] vecCCAddress.addElement(strToAdd[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\common\helper\SendMail.java:202: warning: [unchecked] unchecked call to addElement(E) as a member of the raw type java.util.Vector
[javac] vecBCCAddress.addElement(strToAdd[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\AdminUtils.java:458: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] userVector.add(userCol.getString("users_names"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\AdminUtils.java:466: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] userVector.add(groupCol.getString("groups_names"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\AdminUtils.java:554: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] v.add(ecm);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\AdminUtils.java:565: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] v.add(removeTaskExitDelims(m.group()).trim());
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:601: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] cpgList.add(new CPGResultBean(objectId, name, description, prodNamesList,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:698: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] allActiveGroupMembers.add(results.getString("groups_names"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:834: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] userTaskList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:876: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] symptomList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:917: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] contentTopicList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:958: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productFunctionList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:999: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] mainComponentList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1040: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] minorComponentOneList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1081: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] minorComponentTwoList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1141: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] environmentList.add(results.getString("label") + "-" + results.getString("label_suffix") + "," + results.getString("val"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1197: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productTreeTopVector.add(results.getString("group_id"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1344: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(new ReferenceValueBean(productLabel,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1384: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(new ReferenceValueBean(productLabel,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1481: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] historyDetails.add(itemBean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1544: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] workFlowDetails.add(itemBean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1573: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] userGroupDetails.add(itemBean);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1598: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] userVector.add(col.getString("group_name"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1634: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] projectList.add(itemBeam);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1670: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.ArrayList
[javac] inactiveProjectList.add(itemBeam);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1865: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(new ReferenceValueBean(productLabel, results.getString("group_id")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1890: warning: [unchecked] unchecked conversion
[javac] found : java.util.Collection
[javac] required: java.util.Collection<java.lang.String>
[javac] intersectionProducts = CollectionUtils.intersection(intersectionProducts, getIntersectProdNames(jpcDetails.get(i).getProductNumbers()));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1960: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(productLabel);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CMGConfigBean.java:1973: warning: [unchecked] unchecked conversion
[javac] found : java.util.Vector
[javac] required: java.util.Collection<java.lang.String>
[javac] return productLabels;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:438: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] workflowList.add(results.getTypedObject().getString("r_object_id"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:504: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(new ReferenceValueBean(productLabel, results.getString("group_id")));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:571: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] realProdGroups.add(new CPGConfigBean(cSession, prodGroups[i]).getProductGoupsWithResolvedCPGs());
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:573: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] realProdGroups.add(prodGroups[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:625: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] sortedProductNames.add(productLabel);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:629: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] sortedProductIDs.add(productID);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:636: warning: [unchecked] unchecked call to <T>toArray(T[]) as a member of the raw type java.util.Vector
[javac] sortedProductNames.toArray(productNames);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\CPGConfigBean.java:640: warning: [unchecked] unchecked call to <T>toArray(T[]) as a member of the raw type java.util.Vector
[javac] sortedProductIDs.toArray(productIds);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:598: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] productLabels.add(new ReferenceValueBean(productLabel, results
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:684: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] realProdGroups.add(new JPCConfigBean(cSession,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:687: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] realProdGroups.add(prodGroups[i]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:749: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] sortedProductNames.add(productLabel);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:753: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] sortedProductIDs.add(productID);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:761: warning: [unchecked] unchecked call to <T>toArray(T[]) as a member of the raw type java.util.Vector
[javac] sortedProductNames.toArray(productNames);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\JPCConfigBean.java:765: warning: [unchecked] unchecked call to <T>toArray(T[]) as a member of the raw type java.util.Vector
[javac] sortedProductIDs.toArray(productIds);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:438: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] workflowList.add(results.getTypedObject().getString("r_object_id"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:484: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] cmgList.add(new ReferenceValueBean(name, id));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:485: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] cmgName.add(name);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:547: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] cmgVec.add(cmgList[0]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ProjectConfigBean.java:559: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] cmgVec.add(cmg);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\UserConfigBean.java:77: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] surrogate.add(results.getString("surrogate_id"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ed\EnterpriseDirectoryAgent.java:341: warning: [unchecked] unchecked call to <T>toArray(T[]) as a member of the raw type java.util.Collection
[javac] String[] uids = (String[])userUids.toArray(new String[0]);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ed\EnterpriseDirectoryAgent.java:392: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Collection
[javac] userEntries.add(populateUserDirectoryEntry(attr.getAttributes()));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ed\EnterpriseDirectoryAgent.java:452: warning: [unchecked] unchecked call to put(K,V) as a member of the raw type java.util.Hashtable
[javac] env.put(Context.INITIAL_CONTEXT_FACTORY,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\admin\ed\EnterpriseDirectoryAgent.java:454: warning: [unchecked] unchecked call to put(K,V) as a member of the raw type java.util.Hashtable
[javac] env.put(Context.PROVIDER_URL,
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:906: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("Cross content class reuse is not possible. It is not possible to reference " + replaceNewObjectByObject.getString("object_name") + " ( id:" + replaceNewObjectByObject.getString("r_object_id") + ") of type " + replaceNewObjectByObject.getString("r_object_type") + ".", SessionLog.LOG_ERR, cSession, "ContentIn"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:912: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("The component: " + newObject.getString("object_name") + " ( id:" + newObject.getString("r_object_id") + ") has a format of " + newObject.getString("a_content_type") + ", can not reuse the existing Concentra object " + replaceNewObjectByObject.getString("object_name") + " ( id:" +
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:918: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("The component: " + newObject.getString("object_name") + " ( id:" + newObject.getString("r_object_id") + ") has a format of " + newObject.getString("a_content_type") + ", can not reuse the existing Concentra object " + replaceNewObjectByObject.getString("object_name") + " ( id:" +
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:928: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("The component: " + newObject.getString("object_name") + " ( id:" + newObject.getString("r_object_id") + ") has an xml application set to " + newObject.getString("a_category") + ", can not reuse the existing Concentra object " + replaceNewObjectByObject.getString("object_name") + " ( id:" +
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:940: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("The component: " + newObject.getString("object_name") + " ( id:" + newObject.getString("r_object_id") + ") of type " + newObject.getString("r_object_type") + ", is not a component and to reuse a document from another content class it must exist and be FINAL.", SessionLog.LOG_ERR, cSession, "ContentIn"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:943: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("The component " + newObject.getString("object_name") + " that is trying to be referenced, can not be processed, it must be FINAL or IR in a public CMG to be reused. " + " (temp id:" + newObject.getString("r_object_id") + ", existing chronicle id:" + replaceNewObjectByChronicleId + ")",
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\core\content\ContentIn.java:948: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
[javac] badFeedback.add(SessionLog.log("Cross content class reuse is not possible for the component: " + newObject.getString("object_name") + " ( id:" + newObject.getString("r_object_id") + ") of type " + newObject.getString("r_object_type") + " .Please content support.", SessionLog.LOG_ERR, cSession, "ContentIn"));
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:150: warning: com.sun.image.codec.jpeg.JPEGImageDecoder is Sun proprietary API and may be removed in a future release
[javac] JPEGImageDecoder dc = JPEGCodec.createJPEGDecoder(in);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:150: warning: com.sun.image.codec.jpeg.JPEGCodec is Sun proprietary API and may be removed in a future release
[javac] JPEGImageDecoder dc = JPEGCodec.createJPEGDecoder(in);
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:152: warning: com.sun.image.codec.jpeg.JPEGDecodeParam is Sun proprietary API and may be removed in a future release
[javac] JPEGDecodeParam jdcp = dc.getJPEGDecodeParam();
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:257: warning: com.sun.image.codec.jpeg.JPEGImageDecoder is Sun proprietary API and may be removed in a future release
[javac] JPEGImageDecoder dc = null;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:258: warning: com.sun.image.codec.jpeg.JPEGDecodeParam is Sun proprietary API and may be removed in a future release
[javac] JPEGDecodeParam jdcp = null;
[javac] ^
[javac] D:\HP Data\Concentra\SVN Code\Concentra UI\src\com\hp\cks\concentra\utils\ImageAttributer.java:262: warning: com.sun.image.codec.jpeg.JPEGCodec is Sun proprietary API and may be removed in a future release
[javac] dc = JPEGCodec.createJPEGDecoder(fis);
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files additionally use unchecked or unsafe operations.
[javac] 100 errors
[javac] 106 warnings

BUILD FAILED
D:\HP Data\Concentra\SVN Code\Concentra UI\build.xml:168: Compile failed; see the compiler error output for details.

Total time: 14 seconds


Ant file is also below -

<!--
This build script assumes that the source code of your web application
is organized into the following subdirectories underneath the source
code directory from which you execute the build script:

docs Static documentation files to be copied to
the "docs" subdirectory of your distribution.

src Java source code (and associated resource files)
to be compiled to the "WEB-INF/classes"
subdirectory of your web applicaiton.

web Static HTML, JSP, and other content (such as
image files), including the WEB-INF subdirectory
and its configuration file contents.
-->
<!--
A "project" describes a set of targets that may be requested
when Ant is executed. The "default" attribute defines the
target which is executed if no specific target is requested,
and the "basedir" attribute defines the current working directory
from which Ant executes the requested task. This is normally
set to the current working directory.
-->
<project name="Concentra UI" default="compile" basedir=".">
<!-- import the environment -->
<property environment="env"/>

<!-- ===================== Property Definitions =========================== -->

<property file="build.properties"/>
<property file="${user.home}/build.properties"/>

<!-- ==================== File and Directory Names ======================== -->
<!--

These properties generally define file and directory names (or paths) that
affect where the build process stores its outputs.

app.name Base name of this application, used to
construct filenames and directories.
Defaults to "myapp".

app.path Context path to which this application should be
deployed (defaults to "/" plus the value of the
"app.name" property).

app.version Version number of this iteration of the application.

build.home The directory into which the "prepare" and
"compile" targets will generate their output.
Defaults to "build".

dist.home The name of the base directory in which
distribution files are created.
Defaults to "dist".

-->
<property name="app.name" value="Concentra" />
<property name="app.path" value="/${app.name}" />
<property name="app.version" value="5.x" />
<property name="conf.env" value="dev" />
<property name="log.path" value="./appLogs" />
<!-- Dependent external libraries which will not be shipped with the application -->
<property name="extlib.path" value="./extlib" />
<property name="dctm.path" value="C:/Program Files/Documentum" />
<property name="dctmsh.path" value="C:/Program Files/Documentum/Shared" />
<property name="wlslib.path" value="C:/bea/wlserver_10.0/server/lib" />
<!--This is where the build can find javax extensions, such as javax.servlet.* -->
<property name="server.lib" value="c:/bea/wlserver_10.0/server/lib" />
<property name="build.home" value="${basedir}/build" />
<property name="concentra.props.path" value="${build.home}" />
<property name="dist.home" value="${basedir}/dist" />
<property name="weblogic.domain" value="c:/bea/user_projects/domains/NEW_DOMAIN/" />
<property name="docs.home" value="${basedir}/docs" />
<property name="src.home" value="${basedir}/src" />
<property name="web.home" value="${basedir}/web" />
<property name="build.external.excludes" value="**/test/**" />
<property name="xdms.password" value="notset" />

<!-- ==================== Compilation Control Options ==================== -->
<!--

These properties control option settings on the Javac compiler when it
is invoked using the <javac> task.

compile.debug Should compilation include the debug option?

compile.deprecation Should compilation include the deprecation option?

compile.optimize Should compilation include the optimize option?

-->
<property name="compile.debug" value="true" />
<property name="compile.deprecation" value="false" />
<property name="compile.optimize" value="true" />
<!-- ==================== External Dependencies =========================== -->
<!--

Use property values to define the locations of external JAR files on which
your application will depend. In general, these values will be used for
two purposes:
* Inclusion on the classpath that is passed to the Javac compiler
* Being copied into the "/WEB-INF/lib" directory during execution
of the "deploy" target.

You only need to worry about external dependencies for JAR
files that you are going to include inside your "/WEB-INF/lib" directory.

-->

<!-- ==================== Compilation Classpath =========================== -->

<path id="compile.classpath">
<!-- Include all JAR files that will be included in /WEB-INF/lib -->
<!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
<fileset dir="${web.home}/WEB-INF/lib">
<include name="*.jar" />
</fileset>
<fileset dir="${extlib.path}">
<include name="*.jar" />
</fileset>
<fileset dir="${dctm.path}">
<include name="*.jar" />
</fileset>
<fileset dir="${dctmsh.path}">
<include name="*.jar" />
</fileset>
<fileset dir="${wlslib.path}">
<include name="api.jar" />
<include name="weblogic.jar" />
</fileset>
</path>
<!-- ==================== All Target ====================================== -->
<!--

The "all" target is a shortcut for running the "clean" target followed
by the "compile" target, to force a complete recompile.

-->
<target name="all" depends="clean,compile" description="Clean build and dist directories, then compile"/>

<!-- ==================== Clean Target ==================================== -->
<!--

The "clean" target deletes any previous "build" and "dist" directory,
so that you can be ensured the application can be built from scratch.

-->
<target name="clean" description="Delete old build and dist directories">
<delete dir="${build.home}"/>
<delete dir="${dist.home}"/>
<delete dir="${web.home}/WEB-INF/classes"/>
</target>

<!-- ==================== Compile Target ================================== -->
<!--

The "compile" target transforms source files (from your "src" directory)
into object files in the appropriate location in the build directory.
This example assumes that you will be including your classes in an
unpacked directory hierarchy under "/WEB-INF/classes".

-->
<target name="compile" depends="prepare" description="Compile Java sources">
<!-- Compile Java classes as necessary -->
<mkdir dir="${build.home}/WEB-INF/classes"/>
<javac srcdir="${src.home}" destdir="${build.home}/WEB-INF/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}" fork="true" memoryinitialsize="256m" memorymaximumsize="1536m" includeantruntime="false">
<classpath refid="compile.classpath"></classpath>
<compilerarg value="-Xlint:unchecked"/>
</javac>

<!-- Copy application resources -->
<copy todir="${build.home}/WEB-INF/classes">
<fileset dir="${src.home}" excludes="**/*.java"/>
</copy>
</target>

<target name="compilejsp" depends="prepare,compile" description="Compile jsp sources">
<!-- compile jsp pages -->
<!--
<classpath refid="compile.classpath"/>
-->
<!--
<wljspc casesensitive="true" src="${web.home}" dest="${build.home}/WEB-INF/classes"
includes="**/*.jsp" package="jsp_servlet">
<classpath refid="compile.classpath"/>
</wljspc>
-->
<wlappc casesensitive="true" source="${build.home}"
runtimeFlags="-J-mx1024m" keepgenerated="true"
compiler="javac" forcegeneration="true" verbose="false">
<classpath refid="compile.classpath"/>
</wlappc>

</target>
<!-- ==================== Dist Target ===================================== -->
<!--

The "dist" target creates a binary distribution of your application
in a directory structure ready to be archived in a tar.gz or zip file.
Note that this target depends on two others:

* "compile" so that the entire web application (including external
dependencies) will have been assembled

* "javadoc" so that the application Javadocs will have been created

-->
<target name="dist" depends="makejar" description="Create binary distribution">

<mkdir dir="${dist.home}"/>
<!-- Create application JAR file -->
<!--<jar jarfile="${dist.home}/${app.name}-${app.version}.war" basedir="${build.home}"/>-->
<antcall target="_makewar">
<param name="makewar.conf.env" value="${conf.env}"/>
</antcall>

<!-- Copy additional files to ${dist.home} as necessary -->
</target>

<!-- ==================== Dist-Weblogic Target ===================================== -->
<!--

Deploy WAR distribution to Weblogic Server
weblogic.domain must be defined

-->
<target name="dist-weblogic" depends="dist" description="Hot-Deploy binary distribution to Weblogic server">
<!-- Copy the WAR file just created into the Weblogic hot-deploy directory -->
<copy file="${dist.home}/${app.name}.war" tofile="${weblogic.domain}/applications/${app.name}.war" overwrite="true"/>
<copy file="${basedir}/constant.properties" todir="${weblogic.domain}" overwrite="true"/>
<copy file="${basedir}/dfc.properties" todir="${weblogic.domain}" overwrite="true"/>
<copy file="${basedir}/ops_reports.properties" todir="${weblogic.domain}" overwrite="true"/>
<!-- clean out wls cache - usually do not need to do this! -->
<delete dir="${weblogic.domain}/.internal"/>
<delete dir="${weblogic.domain}/.wlnotdelete"/>
<delete dir="${weblogic.domain}/stage"/>

</target>

<target name="cleandist" depends="clean,distall" description="Make all distributions">
</target>

<target name="distall" depends="makejar,distdev,distqa,distprod" description="Make all distributions">
</target>

<target name="distdev" depends="compile">
<antcall target="_makewar">
<param name="makewar.conf.env" value="dev"/>
</antcall>
</target>

<target name="distqa" depends="compile">
<antcall target="_makewar">
<param name="makewar.conf.env" value="qa"/>
</antcall>
</target>

<target name="distprod" depends="compile">
<antcall target="_makewar">
<param name="makewar.conf.env" value="prod"/>
</antcall>
</target>

<!-- ==================== _makewar Target ===================================== -->
<!--

Make the WAR file. Intended as an internal task to be called with antcall

-->

<target name="_makewar" depends="compile" description="Create binary distribution">
<!-- could add javadoc target here -->
<!-- Set the Log Path for this configuration -->
<!--
<copy file="${web.home}/WEB-INF/web.xml" todir="${build.home}/WEB-INF" overwrite="true">
<filterset>
<filter token="LOGPATH" value="/tmp/logs"/>
</filterset>
</copy>
-->
<!-- Set the Configuration Environment directive as defined in the myWebApp.properties file -->
<!--
<copy file="${web.home}/WEB-INF/struts-config.xml" todir="${build.home}/WEB-INF" overwrite="true">
<filterset>
<filter token="CONF-ENV" value="prod"/>
</filterset>
</copy>
-->
<mkdir dir="${dist.home}"/>
<!-- Create application JAR file -->
<jar jarfile="${dist.home}/${app.name}.war" basedir="${build.home}"/>
<!-- Copy additional files to ${dist.home} as necessary -->
</target>

<!-- ==================== makejar Target ===================================== -->
<!--

Make the Concentra JAR file. Intended as an internal task to be called with antcall

-->

<target name="makejar" depends="compile" description="Create binary distribution">
<mkdir dir="${dist.home}"/>
<delete file="${dist.home}/${app.name}.jar">
</delete>
<delete file="${dist.home}/${app.name}_nolib.jar">
</delete>

<jar jarfile="${dist.home}/${app.name}.jar" basedir="${build.home}/WEB-INF/classes"
includes="**/*.class" excludes="**/ui/**,jsp_servlet/**">
<manifest>
<attribute name="Created-By" value="(Hewlett-Packard Co.)"/>
<attribute name="Release" value="${app.version}"/>
</manifest>
</jar>
</target>

<!-- ==================== Prepare Target ================================== -->
<!--

The "prepare" target is used to create the "build" destination directory,
and copy the static contents of your web application to it. If you need
to copy static files from external dependencies, you can customize the
contents of this task.

Normally, this task is executed indirectly when needed.

-->
<target name="prepare">
<!-- Create build directories as needed -->
<mkdir dir="${build.home}"/>
<mkdir dir="${build.home}/WEB-INF"/>
<mkdir dir="${build.home}/WEB-INF/classes"/>
<!-- Copy static content of this web application -->
<!-- Have to exclude all the stuff we don't need in the build. -->
<!-- Would need to exclude nothing if the web stuff was in a web directory, instead of at the root -->
<copy todir="${build.home}">
<fileset dir="${web.home}" excludes="**/WORKDIR/**,**/work/**,**/log/**,**/tmp/**"/>
<!--<fileset dir="${web.home}" excludes="dist/**,build/**,src/**,crypt/**,**/webapp/**,**/log/**,**/bak/**,**/preview_store/**,**/classes/**,concentra.properties"/>-->
</copy>

<copy todir="${build.home}/WEB-INF/lib">
<fileset dir="${extlib.path}">
<include name="**/*.jar"/>
</fileset>
</copy>

<!-- Copy external dependencies as required -->
<!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
<!--<mkdir dir="${build.home}/WEB-INF/lib"/>-->
<!--
<copy todir="${build.home}/WEB-INF/lib" file="${foo.jar}"/>
-->
<!-- Copy static files from external dependencies as needed -->
<!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
</target>


<!-- ==================== Javadoc Target ================================== -->
<!--

The "javadoc" target creates Javadoc API documentation for the Java
classes included in your application. Normally, this is only required
when preparing a distribution release, but is available as a separate
target in case the developer wants to create Javadocs independently.

-->
<target name="javadoc" depends="compile" description="Create Javadoc API documentation">
<mkdir dir="${dist.home}/docs/api"/>
<javadoc sourcepath="${src.home}" destdir="${dist.home}/docs/api" packagenames="*">
<classpath refid="compile.classpath"/>
</javadoc>
</target>

<!-- ==================== Install Target ================================== -->
<!--

The "install" target tells the specified Tomcat 4 installation to dynamically
install this web application and make it available for execution. It does
*not* cause the existence of this web application to be remembered across
Tomcat restarts; if you restart the server, you will need to re-install all
this web application.

If you have already installed this application, and simply want Tomcat to
recognize that you have updated Java classes (or the web.xml file), use the
"reload" target instead.

NOTE: This target will only succeed if it is run from the same server that
Tomcat is running on.

NOTE: This is the logical opposite of the "remove" target.

-->

<!-- <target name="install" depends="compile"
description="Install application to servlet container">

<install url="${manager.url}"
username="${manager.username}"
password="${manager.password}"
path="${app.path}"
war="file://${build.home}"
/>

</target>
-->

<!-- ====================== List Target =================================== -->
<!--

The "list" target asks the specified Tomcat 4 installation to list the
currently running web applications, either loaded at startup time or
installed dynamically. It is useful to determine whether or not the
application you are currently developing has been installed.

-->
<!--
<target name="list"
description="List installed applications on servlet container">

<list url="${manager.url}"
username="${manager.username}"
password="${manager.password}"/>

</target>
-->

<!-- ==================== Reload Target =================================== -->
<!--

The "reload" target tells the specified Tomcat 4 installation to dynamically
reload this web application, to reflect changes in the underlying classes or
the "web.xml" deployment descriptor.

-->
<!--
<target name="reload" depends="compile"
description="Reload application on servlet container">

<reload url="${manager.url}"
username="${manager.username}"
password="${manager.password}"
path="${app.path}"/>

</target>

-->

<!-- ==================== Remove Target =================================== -->
<!--

The "remove" target tells the specified Tomcat 4 installation to dynamically
remove this web application from service.

NOTE: This is the logical opposite of the "install" target.

-->
<!--
<target name="remove"
description="Remove application on servlet container">

<remove url="${manager.url}"
username="${manager.username}"
password="${manager.password}"
path="${app.path}"/>

</target>
-->
</project>


Can anyone suggest.

Thanks.
9 years ago
HI William,

Its existing Tomcat and running as service.
It got auto resolved by restart of physical box.

Thanks
9 years ago
Hi Experts,

Our Tomcat link is not responding - http://localhost:8080 or http://localhost:8080/manager
Getting error in Catalina Logs -

May 26, 2014 10:05:50 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
May 26, 2014 10:05:50 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Tomcat 6.0\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Documentum\product\6.6\bin;C:\Documentum\fulltext\fast;C:\Documentum\fulltext\dsearch;C:\Program Files\Documentum\Shared;C:\oracle\product\11.1.0\client_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\System Center Operations Manager 2007\;C:\Program Files (x86)\Java\jre6\bin;C:\IBM\ITM\bin;C:\IBM\ITM\TMAITM6;C:\IBM\ITM\InstallITM;


Service is up and running , environment : Tomcat 6.0.20, Windows Server 2008


Can anyone suggest.

Thank You
9 years ago
Hi Guys,

I fire following to get LDAP server details -

>nslookup
> set type=all
> _ldap._tcp.dc._msdcs.domain.name


However I get a list of servers(almost 15-20) which one to use and is there any criteria?


Thanks.
Hello Experts,

One of our Tomcat server in Production has stopped responding. Unable to see Tomcat manager. SO i tried to restart Service after cache(work,temp) clearance. No effect, then tried to restart physical server - No effect.

Checked logs , checked event viewer nothing is getting captured there as well.


Any idea, what I am missing?
10 years ago
Hello Experts,

Is there a way to check heap size of Tomcat. We are using Tomcat6 and Windows OS.
Any way through cmd?


Regards,
Siddhesh
10 years ago
Hello Experts,

I am running jboss-5.0.0.GA from C drive and it works well.
However when I am trying to run from Eclipse I get following error -

Failed to boot JBoss:
15:04:29,210 INFO [ServerImpl] Runtime shutdown hook called, forceHalt: true
java.lang.IllegalStateException: Incompletely deployed:

*** DEPLOYMENTS IN ERROR: Name -> Error
StandardBindings -> java.lang.IllegalArgumentException: Wrong arguments. new for target java.lang.reflect.Constructor expected=[int] actual=[java.util.HashSet]

*** DEPLOYMENTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State}
SystemPropertyBinder#1 -> ServiceBindingManager{Installed:Described}
SystemPropertyBinder -> SystemPropertyBinder#1{Installed:Described}
ServiceBindingManager -> ServiceBindingStore{Installed:Instantiated}
ServiceBindingStore -> StandardBindings{Installed:**ERROR**}

at org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.internalValidate(AbstractKernelDeployer.java:290)
at org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.validate(AbstractKernelDeployer.java:174)
at org.jboss.bootstrap.microcontainer.ServerImpl.doStart(ServerImpl.java:148)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:394)
at org.jboss.Main.boot(Main.java:209)
at org.jboss.Main$1.run(Main.java:547)
at java.lang.Thread.run(Thread.java:722)

I changed my profile.xml at C:\jboss-5.0.0.GA\server\default\conf\bootstrap.
But still same error.
Jdk is 1.7.0

Please suggest.

11 years ago