My problem is that I don't know how access the data from my java application. I am using netbeans 6.9.1 and I created already a connection with AS400 using jdbc:as400://DBase... I tried to create Stored Procedures or create Web Services to consume them from my java application, but I couldn't. Also, I tried to create Entities Classes from Database but AS400 database has not primary keys. Any idea how I can use this database in my java application? Thank a lot!!!
How create Web Services on AS400 JDE and consume them in Netbeans Java
1.1k Views Asked by hetch At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in WEB-SERVICES
- couldn't copy pdb file to another directory while consuming wcf web service
- .net rest service with JSON string and consumed with java client
- How to send Rest GET request that contains "#" value in url parameters?
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- How to use @queryparam when using array in Java
- How to accept cookies when using a webservice - Android?
- zend soap server reading xml attributes
- Web Service Error path property must set before calling the send method
- Error with kSOAP2
- JAX-RS service response is returning double fields without decimal places
- How can I call a ASP.Net webservice using AJAX without calling controller
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- File upload in AXIS2 webservice
- How to route by call method in proxy with WSO2?
- fetch data from web service to dataset in Delphi
Related Questions in STORED-PROCEDURES
- Optimising a slow running SQL Server Stored procedure ordered by calculated fields to return a closest match
- Oracle stored procedure wrapping compile error with inline comments
- Insert Into SP in Oracle Sql Developer
- Abstracting out a query to a stored procedure makes it run very slowly
- why it doesnt accept a concated string as parameter in SP?
- SQL Server Index recreate Stored Procedure Slow
- How to access a Row Type within an Array Type in DB2 SQL PL
- Return all Ids generated by Insert statement
- Most effective way to bind data models in WebForms without stored procedures?
- How to get result set from Oracle Stored Procedure?
- SQL Stored Procedure How to Modify and Return the Result of an Executed Dynamic Query
- How LinqToSql Generates output result of stored procedures
- pass $_post array elements of form as a string to mysql stored routines
- passing parameter values to stored procedure when calling from another procedure
- Insert Stored Procedure for One to many relationship SQL
Related Questions in NETBEANS
- export function with netbeans from mysql to excel
- issue in my if statement to make comparison in my java program
- How do I change code template triggering behavior in Netbeans 8.0?
- How to get the last integer ID you query in MySQL
- Opening jar file with external library
- How to access a private method
- CoffeeScript For NetBeans 8.0 Plugin: Set Target Folder For Compiles JS
- error with google app engine deploy
- Why won't my JSF app deploy to GlassFish?
- NetBeans commenting
- Store Strings longer than 255 in a database in Netbeans
- How to set jcombo box to what i want
- Wildfly 9.0.0 and Netbeans 8.0.2
- Netbeans unexpected return value error
- Relationship between gcc, g++, cygwin, and wingw?
Related Questions in JDE
- Can't open eclipse with Windows 7 (doesn't see jdk jde)
- Why am I getting msvp140_1.dll, vcruntime140.dll, ucrtbased.dll file missing, when they are in my path?
- How to get a list of background processes on BlackBerry
- I can deploy my Blackberry app to a device by cable with JavaLoader, and it runs fine, but the BB Desktop Software refuses to touch it. Why?
- Returning a date from 14 possible columns within a select statement
- Problem running Blackberry App without BES
- How do you make a dropdown list that displays images to the user instead of text?
- Picking a Blackberry JDE version
- Blackberry 9000 getting HTTP error 406 When using WiFi
- BlackBerry JDE Eclipse Plugin 1.1 on Windows 7
- Trouble installing jdee in Carbon Emacs in Snow Leopard
- Can a blackberry app access the internet without restrictions?
- Code to turn blackberry off
- How create Web Services on AS400 JDE and consume them in Netbeans Java
- Subtracting from a JDE Julian Date
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Hi @hetch those something steps for create WEB SERVICES on AS/400 databases and WSDL file exposed. :)
Create a DataSource
Create your Bean's
Create a Connection to database UPDATE --This class you can to connect to databases whatever, i.e. (ORACLE, MYSQL, SQL-SERVER, etc, etc).--
Create classes to CRUD to database, in this step you will have know ID tables on CRUD works.
That's it !!!
I hope help you. :)