Getting data out of PeopleSoft - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:21:48Zhttp://stackoverflow.com/feeds/question/984867http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/984867/getting-data-out-of-peoplesoft1Getting data out of PeopleSoftunknown (yahoo)2009-06-12T03:46:20Z2009-06-21T17:03:13Z
<p>We have a PeopleSoft installation and I am building a separate web application that needs to pull data from the PeopleSoft database.
The web application will be on a different server than PeopleSoft, but the same internal network.</p>
<p>What are the options, and I welcome any recommendations.</p>
http://stackoverflow.com/questions/984867/getting-data-out-of-peoplesoft/986326#9863260Answer by PeopleSoftTipster for Getting data out of PeopleSoftPeopleSoftTipster2009-06-12T12:13:30Z2009-06-12T12:13:30Z<p>I guess it depends on your requirement, and which version of PeopleSoft you're on.</p>
<p>Do you want real-time lookup? If that's the case then you'll want to look at Web Services/Integration Broker. </p>
<p>If you want a batch/bulk export then a scheduled App Engine would do the trick.</p>
http://stackoverflow.com/questions/984867/getting-data-out-of-peoplesoft/1024325#10243251Answer by Epictetus for Getting data out of PeopleSoftEpictetus2009-06-21T17:03:13Z2009-06-21T17:03:13Z<p>Yes - Integration Broker is Peoplesoft's proprietary implementation of a publish/subscribe mechanism, speaking xml. You could of course just write code that goes against your database using JDBC or OLE/ODBC. Nothing keeps you from doing this. However, you must understand the Peoplesoft database schema, so that you are pulling from, or inserting/updating/deleting all of the proper data. Peoplesoft takes care of this for you.</p>
<p>Also, check out Component Interfaces - and they are exposed as an API to Java or C/C++.</p>