Commit 5f258ac6 authored by manohar's avatar manohar

This commit was generated by cvs2svn to compensate for changes in r71, which

included commits to RCS files with non-trunk default branches.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91136 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7ff96371
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.SessionBean;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.DatabaseMetaData;
import ibase.system.config.ConnDriver;
import ibase.webitm.utility.ITMException;
import ibase.webitm.utility.*;
import ibase.webitm.ejb.ActionHandlerEJB;
import org.w3c.dom.Document;
import org.w3c.dom.*;
import java.util.*;
import ibase.webitm.ejb.*;
import javax.ejb.Stateless; // added for ejb3
@Stateless // added for ejb3
public class DefaultSorder extends ActionHandlerEJB implements DefaultSorderLocal,DefaultSorderRemote//SessionBean
{
/* public void ejbCreate() throws RemoteException, CreateException
{
}
public void ejbRemove()
{
}
public void ejbActivate()
{
}
public void ejbPassivate()
{
} */
public String actionHandler() throws RemoteException,ITMException
{
return "";
}
public String actionHandler( String actionType, String xmlString, String objContext, String xtraParams ) throws RemoteException,ITMException
{
String retString = "";
Document dom = null;
try
{
GenericUtility genericUtility = GenericUtility.getInstance();
if( xmlString != null && xmlString.trim().length() != 0 )
{
dom = genericUtility.parseString(xmlString);
}
}
catch( Exception e )
{
throw new ITMException(e);
}
return retString;
}
public String actionHandler( String actionType, String xmlString, String xmlString1, String objContext, String xtraParams ) throws RemoteException,ITMException
{
Connection conn=null;
GenericUtility genericUtility = GenericUtility.getInstance();
Document dom = null;
Document dom1 = null;
String retString = null;
try
{
if( xmlString != null && xmlString.trim().length() != 0 )
{
dom = GenericUtility.getInstance().parseString(xmlString);
}
if( xmlString1 != null && xmlString1.trim().length() != 0 )
{
System.out.println("xmlString1 is====>"+xmlString1);
dom1 = GenericUtility.getInstance().parseString(xmlString1);
}
if (actionType.equalsIgnoreCase("Default"))
{
try
{
if( conn == null )
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
}
}
catch (Exception e)
{
e.printStackTrace();
e.printStackTrace();
}
retString = actionDefault(dom, dom1, objContext, xtraParams);
}
}
catch(Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
return retString;
}
private String actionDefault( Document dom, Document dom1, String objContext, String xtraParams ) throws RemoteException, ITMException
{
GenericUtility genericUtility = GenericUtility.getInstance();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
StringBuffer valueXmlString = null;
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?>\r\n<Root>\r\n");
int currentFormNo = 0;
String sql = "";
String retString = "";
String update_flag = "", errorId = "";
String termTableNo = "";
NodeList parentNodeList = null;
int parentNodeListLen = 0;
String childNodeName = null;
Node childNode = null;
NodeList childNodeList = null;
Node parentNode = null;
String userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
try
{
if( conn == null )
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
connDriver = null;
}
if( objContext != null && objContext.trim().length() > 0 )
{
currentFormNo = Integer.parseInt(objContext);
}
parentNodeList = dom1.getElementsByTagName("Detail4");
parentNodeListLen = parentNodeList.getLength();
System.out.println("Parent node length is ==>"+parentNodeListLen);
if( parentNodeListLen == 1 )
{
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
for(int childctr = 0; childctr < childNodeList.getLength(); childctr++)
{
childNode = childNodeList.item( childctr );
childNodeName = childNode.getNodeName();
if ( childNodeName.equalsIgnoreCase( "attribute" ) )
{
update_flag = childNode.getAttributes().getNamedItem("updateFlag").getNodeValue();
}
}
System.out.println("update_flag is ==>"+update_flag);
if( !update_flag.equals("N") )
{
termTableNo = genericUtility.getColumnValue("term_table__no",dom1);
if( termTableNo != null && termTableNo.trim().length() > 0 )
{
sql = "SELECT stermtbl.TERM_CODE, sterm.DESCR "
+" from SALE_TERM_TABLE stermtbl, SALE_TERM sterm "
+" WHERE stermtbl.TERM_CODE = sterm.TERM_CODE "
+" AND stermtbl.TERM_TABLE = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString( 1, termTableNo );
rs = pstmt.executeQuery();
while ( rs.next() )
{
String termCode = rs.getString("TERM_CODE");
String descr = rs.getString("DESCR");
valueXmlString.append("<Detail>\r\n");
valueXmlString.append("<term_code>").append("<![CDATA[").append(termCode.trim()).append("]]>").append("</term_code>\r\n");
valueXmlString.append("<descr>").append("<![CDATA[").append(descr.trim()).append("]]>").append("</descr>\r\n");
valueXmlString.append("</Detail>\r\n");
}
pstmt.close();
pstmt = null;
rs.close();
rs = null;
}
}
else
{
errorId = "DATAPRSNT";
retString = itmDBAccessEJB.getErrorString("",errorId,userId);
return retString;
}
}
else
{
errorId = "DATAPRSNT";
retString = itmDBAccessEJB.getErrorString("",errorId,userId);
return retString;
}
valueXmlString.append("</Root>\r\n");
retString = valueXmlString.toString();
}
catch( SQLException sqx )
{
sqx.printStackTrace();
throw new ITMException( sqx );
}
catch( Exception e )
{
e.printStackTrace();
throw new ITMException( e );
}
finally
{
try
{
conn.close();
conn = null;
}
catch( Exception e )
{
e.printStackTrace();
throw new ITMException( e );
}
}
return retString;
}
}//end of Ejb
\ No newline at end of file
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ActionHandler;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface DefaultSorderLocal extends ActionHandlerLocal//,EJBObject
{
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String actionType, String xmlString, String objContext, String xtraParams) throws RemoteException,ITMException;
public String actionHandler(String actionType, String xmlString, String xmlString1, String objContext, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ActionHandlerRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface DefaultSorderRemote extends ActionHandlerRemote//,EJBHome
{
//public ActionHandler create() throws RemoteException, CreateException;
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String actionType, String xmlString, String objContext, String xtraParams) throws RemoteException,ITMException;
public String actionHandler(String actionType, String xmlString, String xmlString1, String objContext, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment