This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 153833

Summary: Database CRUD ( INSERT, UPDATE, DELETE, FIND, POLL RECORDS ) with Parameter Values for SQL to be Invoked from within a BPEL Process.
Product: soa Reporter: runa <runa>
Component: SQL ProjectAssignee: issues@soa <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Attachments: Attached the project
Attached the Server log file

Description runa 2008-11-25 09:08:50 UTC
Entering this for external customer from the Sun Developer Expert Assistance 
program:

The customer is following tutorial on Storing data with the BPEL 2.0 process.
https://open-esb.dev.java.net/60mintutorial/exercise2.html

However, customer continue to get Errors when he tried to run both the Insert & Select Test Cases, which both returns an
ERROR :Reason: No value specified for parameter 1 SQLState: 07001 ErrorCode: 0
 
Created a MySQL Database called SelfServiceTicket with the Schema ( See SQL Folder of BPEL )  of...
 
CREATE DATABASE `selfserviceticket` /*!40100 DEFAULT CHARACTER SET latin1 */;
DROP TABLE IF EXISTS `selfserviceticket`.`users`;
CREATE TABLE  `selfserviceticket`.`users` (
  `UserID` int(11) NOT NULL,
  `UserEmail` varchar(50) NOT NULL,
  `UserName` varchar(50) NOT NULL,
  `Password` varchar(50) DEFAULT NULL,
  `UserType` varchar(50) NOT NULL,
  `UserAccount` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`UserID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 
Configured  the Connection Pool and JINI Name ( jdbc/mysqlSelfServiceTicket ) on Glassfish.
 
Deployed the CASA project and ran the 2 TestCases ( See CASA Project ) and got both returns an ERROR :
Reason: No value specified for parameter 1 SQLState: 07001 ErrorCode: 0
 
Note: same Error for both MySQL & Microsoft SQL Server 2005.

Attached the Project and Server Log file.
Comment 1 runa 2008-11-25 09:10:39 UTC
Created attachment 74113 [details]
Attached the project
Comment 2 runa 2008-11-25 09:11:22 UTC
Created attachment 74114 [details]
Attached the Server log file
Comment 3 Milan Kuchtiak 2008-11-28 10:33:37 UTC
This doesn't seem to have relation to JAX-WS support.
Comment 4 Vladimir Yaroslavskiy 2008-11-28 10:49:20 UTC
SQL?