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 - Database CRUD ( INSERT, UPDATE, DELETE, FIND, POLL RECORDS ) with Parameter Values for SQL to be Invoked from within a BPEL Process.
Summary: Database CRUD ( INSERT, UPDATE, DELETE, FIND, POLL RECORDS ) with Parameter V...
Status: NEW
Alias: None
Product: soa
Classification: Unclassified
Component: SQL Project (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@soa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-25 09:08 UTC by runa
Modified: 2008-11-28 10:49 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Attached the project (87.78 KB, text/plain)
2008-11-25 09:10 UTC, runa
Details
Attached the Server log file (192.40 KB, text/plain)
2008-11-25 09:11 UTC, runa
Details

Note You need to log in before you can comment on or make changes to this bug.
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?