[jboss-svn-commits] JBL Code SVN: r7698 - labs/jbossesb/trunk/product/samples/trailblazer2/client/jsp
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Nov 17 16:10:37 EST 2006
Author: daniel.brum at jboss.com
Date: 2006-11-17 16:10:36 -0500 (Fri, 17 Nov 2006)
New Revision: 7698
Modified:
labs/jbossesb/trunk/product/samples/trailblazer2/client/jsp/index.jsp
Log:
Modified: labs/jbossesb/trunk/product/samples/trailblazer2/client/jsp/index.jsp
===================================================================
--- labs/jbossesb/trunk/product/samples/trailblazer2/client/jsp/index.jsp 2006-11-17 20:57:59 UTC (rev 7697)
+++ labs/jbossesb/trunk/product/samples/trailblazer2/client/jsp/index.jsp 2006-11-17 21:10:36 UTC (rev 7698)
@@ -49,9 +49,6 @@
}
%>
-<%@page import="org.jboss.soa.esb.samples.trailblazer.web.generated.LoanBrokerESBWSBindingStub"%>
-<%@page import="org.jboss.soa.esb.samples.trailblazer.web.generated.LoanBrokerWSServiceLocator"%>
-<%@page import="org.jboss.soa.esb.samples.trailblazer.web.generated.WebCustomer"%>
<html>
<head>
<title>JBossESB Loan Broker</title>
@@ -113,10 +110,10 @@
<% } else {
- LoanBrokerESBWSBindingStub binding=null;
+ org.jboss.soa.esb.samples.trailblazer.web.generated.LoanBrokerWSBindingStub binding=null;
try {
- binding = (LoanBrokerESBWSBindingStub)
- new LoanBrokerWSServiceLocator().getLoanBrokerESBWSPort();
+ binding = (org.jboss.soa.esb.samples.trailblazer.web.generated.LoanBrokerWSBindingStub)
+ new org.jboss.soa.esb.samples.trailblazer.web.generated.LoanBrokerWSServiceLocator().getLoanBrokerWSPort();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
@@ -127,7 +124,7 @@
binding.setTimeout(60000);
//Setting the values in the request
- WebCustomer webCustomer = new WebCustomer();
+ org.jboss.soa.esb.samples.trailblazer.web.generated.WebCustomer webCustomer = new org.jboss.soa.esb.samples.trailblazer.web.generated.WebCustomer();
webCustomer.setName(formValue[0]);
webCustomer.setAddress(formValue[1]);
webCustomer.setSsn(Integer.valueOf(formValue[2]).intValue());
More information about the jboss-svn-commits
mailing list