JDBC virgin needs help.

Hi, I am a 2nd year university student doing JDBC for the first time.
I think my problem lies in the ODBC data sources rather than the code since the code works on the machine in university (NT) but not on my home PC (XP). When I run the code I get no errors but nothing happens in terms of interrogating or writing to the database (Access).
I have tried a crude debug by performing a System.out.print at various stages and the result is that the message will display before I implement executeUpdate but not after. Any wise tips on how to ensure that my database is set up and working properly in XP? (I am sure this is the root of the problem rather than the code <supplied here anyway>)
import java.sql.*;
import java.io.DataInputStream;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class JDBCFrame extends JFrame implements ActionListener{
     JButton insert,extract,edit,delete;
     JTextField textid,textname;
     JTextArea output;
     JScrollPane scroll;
     Connection db_connection;
     Statement db_statement;
     public JDBCFrame(){
          // set up GUI
          Container content = this.getContentPane();
          content.setLayout(new GridLayout(5,1));
          textid=new JTextField("ID goes here");
          textname = new JTextField("Name goes here");
          content.add(textid);
          content.add(textname);
          insert = new JButton("Insert");
          insert.addActionListener(this);
          extract = new JButton("Extract");
          extract.addActionListener(this);
          edit = new JButton("Edit");
          edit.addActionListener(this);
          delete = new JButton("Delete");
          delete.addActionListener(this);
          content.add(insert);
          content.add(extract);
          content.add(edit);
          content.add(delete);
          output = new JTextArea();
          scroll = new JScrollPane(output);
          content.add(scroll);
          try{
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
               //String url = "jdbc:odbc:"+"demo";
               String url = "jdbc:odbc:demo";
               //String url = "jdbc:odbc:;Driver={Microsoft Access Driver (*.mdb)};DBQ=demo.mdb";
               db_connection = DriverManager.getConnection(url,"","");
          catch(Exception ce){}
     public void actionPerformed(ActionEvent ev){
          if(ev.getSource()==extract){
               try{
                    extract();
               catch(Exception e){}
          if(ev.getSource()==edit){
               try{
                    edit();
               catch(Exception e){}
          if(ev.getSource()==insert){
               try{
                    insert();
               catch(Exception e){}
          if(ev.getSource()==delete){
               try{
                    delete();
               catch(Exception e){}
     public void edit() throws Exception{
          String names = textname.getText();
          String id = textid.getText();
          System.out.print("*** Connecting ***");
          db_statement.executeUpdate("UPDATE employee SET name="+names+"WHERE ID="+id);
          db_connection.commit();
     public void insert() throws Exception{
          String names = textname.getText();
          String id = textid.getText();
          db_statement.executeUpdate("INSERT INTO employee VALUES("+id+","+names+")");
          db_connection.commit();
     public void delete() throws Exception{
          String id = textid.getText();
          db_statement.executeUpdate("DELETE FROM employee WHERE ID= "+textid.getText());
     public void extract() throws Exception{
          output.setText("");
          if(textname.getText().equals("")){
               ResultSet result2 = db_statement.executeQuery("SELECT * FROM employee WHERE ID="+textid.getText());
               while(result2.next()){
                    output.setText(output.getText()+"ID:"+result2.getInt("ID")+"t"+result2.getString("Name")+"\n");
          ResultSet result=db_statement.executeQuery("SELECT * FROM employee WHERE name="+textname.getText()+"");
          while(result.next()){
               output.setText(output.getText()+"ID:"+result.getInt("ID")+"\t"+result.getString("Name")+"\n");
     public static void main(String args[]){
          JDBCFrame win=new JDBCFrame();
          win.setSize(100,200);
          win.setVisible(true);
          win.addWindowListener(new WindowAdapter(){
               public void windowClosing(WindowEvent e){
                    System.exit(0);
          

Obviously "NullPointerException", because "db_statement" IS NEVER ASSIGNED A VALUE! [D'OH]
Aren't you missing some code, like:
db_statement = db_connection.createStatement();(for example)?
Hope this helps.
Good Luck,
Avi.

Similar Messages

  • IDVD virgin needs help! Widescreen ration aspect problems

    Hi,
    I created QT movies from FCPx all as widescreen, when I play the QT movies they are widescreen but then when I create a iDVD, the ration changes to standard (even though it is set in iDVD to wide). When I am iDVD and look at the preview there is gray around the edges and it looks standard ration. What have I done wrong??  I found this advice:
    f a gray border appears in the iDVD windo
    When you drag the iDVD window to make it larger, the menu in the iDVD window always maintains the correct aspect ratio of your project (4:3 for standard video and 16:9 for widescreen). The extra space around your menu appears as a gray border.
    To return the iDVD window to normal size:
    Choose Window > Actual Size.
    You can also drag the window, reducing its size until the gray borders disappear.
    But I cannot work out how to do this, I have clicked on Actual size etc but nothing seems to change.... I'm so crap at this, I really need help! thanks!

    With the QT files I made straight from FCPx it says, 195.8mb 720 x 576. Then I used 'prism' and converted all the chapters and now they say 11.3mb 1024 x 576. I put them back into iDVD and it solved the widescreen problem. When I view the converted files in iDVD now they are widescreen and work. HOWEVER, I seem to have a new problem! Now there are 2 things that happen.
    1. Everything is widescreen but when I click on the chapters to view the video's, it automatically stops being full screen and goes down to a smaller screen and then you need to click 'full screen' for it to go back, this only happens on a few of them.
    2. Some parts of the DVD don't work, the footage goes all funny like ghosts and it jumps around and doesn't play nicely, then all of a sudden it works for a bit, then back to not working.
    I tried using 2 different themes and the same thing happened. Any thoughts?

  • Variables expression in the JDBC. problems need help!

    Dear Sir,
    I am a beginner of using JDBC. I have a problem in the variable expression.
    the fragment code is below
    int today = 20041009;
    ResultSet rs = statement.executeQuery("select * from recorder where bookeddate >= 'today' order by bookeddate");
    I want to order the "booked date" and select the date after today. Unfortunately, it doesn't work. Any person can tell me how to add variable 'today' in to the SQL? I used mySQL
    If this question is tooo stupid, please forgive me.
    Thanks
    Daan

    Dear Sir,
    I am a beginner of using JDBC. I have a problem in the
    variable expression.
    the fragment code is below
    int today = 20041009;
    ResultSet rs = statement.executeQuery("select * from
    recorder where bookeddate >= 'today' order by
    bookeddate");
    I want to order the "booked date" and select the date
    after today. Unfortunately, it doesn't work. Any
    person can tell me how to add variable 'today' in to
    the SQL? I used mySQL
    If this question is tooo stupid, please forgive me.
    what type of field is bookeddate.. a DATE or TIMESTAMP?
    the format you have is a TIMESTAMP.
    once you have solved the problem of actually including the variable in your query (as the previous poster mentioned) if you still have difficulty make sure you are using the right format for the given field.
    you might well want to look at using prepared statements as well because they will handle the formatting for you.. you will need to convert your int variable today into an actual Date object though.

  • IBook virgin needs HELP!

    Hey! I'll try to cut a long story short and see if anyone can help me!
    I had an Acer laptop for just over a year, and almost as soon as my warranty/insurance ran out, it broke! Just my luck! I'm already pretty broke, after two major holidays this year, and I'm just to about to move to London to start university, so I wanted to minimise cost. So I bought my friends apple iBook G3 from him for £50. He showed me that it was in working order, how to use it(its my first apple) and so on, so I was pretty pleased with the deal.
    BUT, I'm having some major problems:
    1. Nothing gets saved - all the preferences I have altered go back to their original setting once I have shut down/restarted the computer. For example, I loaded around 100 songs to my iTunes and they had disappeared when I signed on. They're still in the folder I uploaded them to, but not on iTunes. I made some changes, e.g location of the dock, screen saver, and so on, and they revert back once I restart. The clock is also always wrong when I sign on, and its only when I click on calendar that date/time are right. (wierd)
    2. My friends details are still registered on some items. For example, when I sign on, under the mac logo it says "My-friends-name iBook G3" - how do I change this? The "short name" in the administrator accounts system is his name and I can't seem to change it, even though I've changed the password, the sign-on name etc. He still has folders with his name on it that appear in the "finder" section - everytime I delete or rename them, they just pop back up. basically I want to delete/change anything that has his name on onto mine.
    I've never had an apple before, so am I being mac-illiterate? HELP!
    Thanks

    Hi, and welcome to Apple Discussions.
    What is the MHz rating of the iBook?
    What type of optical drive does it have (CD-ROM, CD-RW, DVD, or Combo)?
    What is the hard drive capacity and how much space remains available on it?
    Did your purchase include the Tiger Install disc(s) for the OS it is currently running? You will need it to change things and for system maintenance. It would also be helpful if you have the original system CD's that came with the iBook when it was new.
    Have you already created a new account with your own short user name and allowed that account to Administer the computer?
    As for the date always being wrong and settings not being saved, that sounds like it could a power problem. Try resetting the PMU and see if that helps.

  • Hi one and all Iphone virgin needs help

    i have just got an i phone 3gs my cousins old one was less than 18 months old  it has know twice went black screen with apple logo  the phone was not jailbroken it was with tesco mobile and all i did was put my o2 sim in and off i went any help much appriciated

    Have Tesco unlocked the iPhone ?
    If the iPhone was on a Tesco contract it is more than likely locked to them and will not work with another network

  • This is driving me nuts! itunes virgin needs help

    OK, be gentle with me, but I decided to purchase music today for the first time using itunes.However it won't let me, because, for some reason, I cannot create a UK account. I already have a .mac account, but when I log in with that I'm informed that this is the first time, so I have to enter more details, all of which pertain to the US. There is no way I can create a UK account it seems. what on earth is going on here, or am I missing something?
    Thanks if anyone can shed some light on this.

    Hi, moriond,thanks. This ain't working. There is no
    drop down menu: just aUnited States tatooed to the
    location;absolutely no way of changing it.
    OK, try the following: Go to http://www.apple.com/uk/itunes/ and click the selection to "Launch Music Store" (The iPod+iTunes tab should be highlighted, and this should be the third of the options -- next to "Download" and "iTunes Overview"). When I select this, my iTunes will go to the Music Store and the "Choose Country" option at the bottom of the page will be set to "United Kingdon". You should actually always be able to change this by clicking on the blue scroll arrows beside the displayed country like this
    Then go through the steps for creating an iTunes Music Store account by clicking on the sign in button. I set up an iTMS account before I got a .Mac account, so for me these are separate entities with different passwords. The documentation certainly implies that you can log in with your .Mac account username and password, but if that doesn't take you to the correct "Country" entry for the iTMS, you may have to just set up a separate account. Hope this works.

  • NEED HELP TO SET UP SMALL NETWORK - WIRELESS SIGNAL FROM NOVATEL U760 USB

    Hello -
    I need help setting up a small network in my new home in Florida, which has no wired broadband capability - not cable, not dsl. My options are satellite (which I'd like to avoid) or wireless broadband via Millenicom (or now Virgin Mobile) using their Novatel U760 USB stick.
    Here are the network components - someone please tell me how to set this up:
    PC #1 (has wireless card, but I've connected it by ethernet to the router)
    PC #2 (no wireless card; connected via ethernet to router)
    MACBOOK, 1 1/2 years old (2.1 GHz Intel Core 2 Duo, 4 gigs RAM), running OS 10.58, connected wirelessly to router.
    AIRPORT EXTREME BASE STATION, Model A1143.
    I'm not thrilled about using a wireless 3G signal as my primary one, (sprint network, claims 600 - 1400 kbps speed), but it costs 1/2 to 1/3 of what a slightly faster satellite signal would.
    I have not ordered this service yet. Before I do, I'd like a clear understanding that I can, in fact, set up my simple network, which I'd probably do the same as it's now configured with cable broadband - both PC's plug via
    ethernet into the Airport Extreme router, the MacBook connects wirelessly - AND,
    my question is this:
    Can I plug the wireless card - a Novatel U760 USB-stick device - straight into that USB slot in the Airport Extreme base station and will it automatically recognize that device?
    Or, do I have to plug it into the MacBook and somehow share that wireless signal between the 2 PC's (only 1 of which has a wireless card, so I'd have to get a card for PC #2)?
    And help anyone can provide will be much appreciated!
    Thanks,
    Em

    from the Airport FAQ #14:
    "Question: Can I connect my Soundsticks or other USB speakers to AirPort Express?
    Answer: No. The USB port is for connecting a printer, not for other devices."
    Im assuming other devices include USB modems.
    So, I would say your cheaper route would be to get a second wireless card and just share your internet connection from one of your PC.

  • Need help in logging JTDS data packets

    Hi All,
    I m having web application which uses SQL Server database.
    I have to find out some problems in database connection for that there is need to log the jtds data packets.
    I have tried to use class net.sourceforge.jtds.jdbc.TdsCore but in constructor of TdsCore class there are two parameters needed one is ConnectionJDBC2 and another is SQLDiagnostic.
    I have tried a lot but it did not allow me to import class *SQLDiagnostic*.
    I need help in logging JTDS data packets. If there are any other ways or any body having any idea about logging JTDS data packets/SQLDiagnostic.
    Please reply it is urgent...!!
    Thanks in advance......!!

    if you want to use log4j then,
    in your project create a file called log4j.properties and add this
    # Set root logger level to INFO and its only appender to ConsoleOut.
    log4j.rootLogger=INFO,ConsoleOut
    # ConsoleOut is set to be a ConsoleAppender.
    log4j.appender.ConsoleOut=org.apache.log4j.ConsoleAppender
    # ConsoleOut uses PatternLayout.
    log4j.appender.ConsoleOut.layout=org.apache.log4j.PatternLayout
    log4j.appender.ConsoleOut.layout.ConversionPattern=%-5p: [%d] %c{1} - %m%n
    log4j.logger.org.apache.jsp=DEBUG
    #Addon for
    com.sun.faces.level=FINEGo to your class and add this line
    private static final Logger logger = Logger.getLogger("classname");and then you can use
    logger.info();
    logger.error();
    methods

  • Need help toUpdate or insert in to AS400 database

    Hi all,
    I have created one scenario in which I am using JDBC receiver adapter,
    now the database at the end which is to be updated is the AS400 database
    which has the concept of liabraries and staging tables.
    while mapping the Inbound message type I use the structure as
    <MT>
      <Statement>
           <Tablename>
                  action
                <access>
                      <field1>
                      <field2>
                <key>
    I assign a const. 'update_insert' to action attrib. but when I activate the adapter at the end the error I get is :
    'field1' column does not exists in 'Tablename'
    But when I use a JAVA code for doing the same the data is successfully updated on the database.
    I tried the same thing using MS Access database it works fine but not AS400
    need help.
    Thanks
    Ranjit

    Ranjith,
    The process is the very same for  AS400 too. We are doing operations with AS400 and we dint face any problems. Hope you have already deployed the JDBC drivers in your XI server.
    Change your Data type slightly.
    <MT>
    <Statement>
    <table action = UPDATE_INSERT>
    <table>specify the table name in library.table  name eg: LIBRARY.TABLE1</table>
    <access>
    <field1>a</field1>
    <field2>2</field2>
    <access>
    <key>
    <field1>a</field1>
    </key>
    </Statement>
    </MT>
    Regards,
    Jai Shankar

  • Need help with a WRT54GS V5.1

    i need help with my WRT54GS V5.1 wireless router. it cannot connect to the internet and i don't know why. at the moment i have to use an ethernet cable coming from a virgin media modem. information that might be usefull. one of the antennas on the router is broke i am using windows vista on a toshiba laptop. the model is WRT54GS V5.1 thanks for people who help note: i am only 13 so somethings you say i might not understand.

    Access Setup page of router .....
    Click wireeless tab .... have a note of the wireless settings on that page .... Please click on the tab "Application and gaming" and click on sub
    tab "Port range forwarding"
    1) On the first line in Application box type in "Xbox", in start box
    type in 88, in end box type in 88, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    2)   On the second line in Application box type in "Xbox", in start box
    type in 3074, in end box type in 3074, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    3) Now save the settings
    4) Once you return to the setup page, click on the tab "Administration"
    and disable the UPNP and save the settings.
    5) Now assign the given ip address on your xbox
       ip address :- 192.168.1.20
       subnet mask :- 255.255.255.0
       default gateway :- 192.168.1.1
    Please assign the dns address on the xbox
      primary dns :- 4.2.2.2
      secondary dns :- 192.168.1.1
    6) Please try to test your xbox live.

  • Need help for reporting

    hi,
    Hope I did not post to the wrong place. but I really need help here. I've been using Crystal Report all these while before I tried out java. However, there is a problem here.
    I've been doing some complex reports that comes with subreports and grabing values from the program. but there is no one program that i found can really support the reporting in java. I've even tried the crystal clear and Jbuilder enterprise trial version (which comes with crystal report). but I still can't get the output that I want.
    So, I'm here to ask :
    1. what sort of reporting system r u using that is recommended?
    2. And if I were to continue supporting crystal report where can I get a better component that supports crystal report ?
    3. And where can I get tutorials for java integration with crystal reports?
    thanks.

    Also check out i-text. It's an open source Java -> PDF tool. You will need to write a mapper to go from JDBC ResultSet to your own custom Java class. Otherwise, it is almost like writing HTML programatically.
    - Saish

  • Apple AND Microsoft techs stumped; workarounds impractical. I need help.

    I've got one that techs at Apple and MS have so far been unable to resolve, except with workarounds that aren't really practical.
    The problem I'm going to describe happened first in Office v.X. Not knowing where those discs were to reinstall even if I wanted to, I went out today and bought Office 2004. After installing the new software and downloading all the updates, the problem didn't go away.
    Here's what happens, and it only happens with Word and Excel. I can open both programs. The menu bars for each show up across the top. However, the document or spreadsheet window is not there. It simply isn't on the desk top. It isn't "spaced" away. It's not hidden (I've tried turning on and off the hide window, and nothing happens). I can even minimize the window through the drop down menus, and a document or spreadsheet icon will show up in the dock.
    What I've done with the techs:
    Created a second administrator account. The programs work well in that account. The workaround would be then to migrate all of my 250 gigs of info to that new account, and discard the prior admin account. Whatever is affecting the operation of the MS programs could possibly migrate as well.
    MS techs had me delete all of the preferences and the Normal template for the MS programs. Nothing changes.
    Reinstall Office 2004. This was a time waster, as the problem existed before the initial installation of Office 2004. Reinstalling it didn't eliminate whatever conflict was happening.
    I put an Excel file into my shared folder, and was able to open it successfully in the second admin account I created.
    The MS techs had me do a Safe Boot, and that seemed to solve the problem once I restarted in a regular configuration. Except that the document and spread sheet windows disappeared after being open for about 10 minutes.
    Please note: The applications are opening, and "believe" that the documents I opened are indeed there. I can even see the info in each spreadsheet cell in the menu bar. It's just that there's no document window. It's not behind my desk top. It's not hidden. It's not spaced. It just isn't there.
    I need help please.
    Has this happened to anyone else? Is there another place I should look for conflicting files or glitches? I really don't want a workaround. These two programs should work seamlessly with Leopard.

    Obviously you have an incompatibility with some previously installed software. Since Office works with a 'virgin' account the problem isn't system wide. It's likely confined to the ~/Library folder tree. So you can start the slow and tedious process of moving files from <badaccount>/Library/* to <goodaccount>/Library/* in a systematic way. After you move a folder, launch and test Word. Then move more folders over. Launch and test again.
    Eventually you will break <goodaccount> and the last folder you moved is likely to be the culprit.

  • XI Realtime scenarios-need help

    Hello experts,
    I am new to XI and I need help with real time XI scenarios.
    can you please give me 2-3 examples of What kinds of systems involve in data transfer (both sap and non sap) for transfer of what kinds of data (general IDOCs, RFCs and other kinds of data)
    and what is the purpose of that scenario? also how many times the data will be transferred between the systems?
    Thanks in advance,
    Haritha.
    useful answers will be rewarded ***

    Hi Haritha,
        Hi,
    Please go through the following are the links.
    Maybe this is a good start:
    http://help.sap.com/saphelp_nw04/helpdata/en/80/8e3841e26cef23e10000000a155106/frameset.htm
    <http://help.sap.com/saphelp_nw04/helpdata/en/80/8e3841e26cef23e10000000a155106/frameset.htm>
    https://www.sdn.sap.com/irj/sdn/developerareas/xi?rid=/webcontent/uuid/a680445e-0501-0010-1c94-a8c4a60619f8 [original link is broken]
    <https://www.sdn.sap.com/irj/sdn/developerareas/xi?rid=/webcontent/uuid/a680445e-0501-0010-1c94-a8c4a60619f8 [original link is broken]>
    This might help you
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    <http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm>
    Further, this thread deals with everything that is needed for a starter
    on XI. Do check them out,
    JDBC Receiver: exact SQL statement
    <JDBC Receiver: exact SQL statement>
    /message/527697#527697 [original link is broken]
    </message/527697#527697 [original link is broken]>
    And after you are done with the documentation probably you can go
    through this scenario,
    JDBC Receiver: exact SQL statement
    <JDBC Receiver: exact SQL statement>
    Also check the following threads which might help you a little more,
    Learning XI
    <Learning XI>
    XI 3.0 Training
    <XI 3.0 Training>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/13926f23-0a01-0010-149c-c1170e7a25db
    <https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/13926f23-0a01-0010-149c-c1170e7a25db>
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    </people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i>
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    </people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii>
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    </people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii>
    and once you are through ...follow the following links to weblogs which
    explain all the basic scenarios in XI
    Following are the links to weblogs which will help to develop the basic
    scenarios.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    </people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters> - IDoc to
    File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    </people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy> - ABAP
    Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30
    </people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30> - File to
    JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    </people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy> - File to
    ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    </people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1> - File to
    File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    </people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2> - File to
    File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping
    </people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping> - Any flat
    file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit
    </people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit> - File to
    RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    <https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]> - File to
    Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i
    </people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i> - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii
    </people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii> - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    </people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address> - Dynamic
    Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi
    </people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi> - Message
    Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm
    </people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm> - Walk
    through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm
    </people/siva.maranani/blog/2005/05/22/schedule-your-bpm> - Schedule
    BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi
    </people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi> - Use of
    Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    <https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]> - Use of
    Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally
    </people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally> - Maintain
    RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u
    </people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u> -
    Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party
    </people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party> - Handling
    different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi
    </people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi> - Modeling Integration
    Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible
    </people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible> - Testing
    of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects
    </people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects> -
    Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm
    <http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm>
    - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    </people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step> - Alert
    Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    </people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide> - Trouble
    shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi
    </people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi> - Call
    UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    </people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi> -
    Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping
    </people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping> - Using
    ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    </people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure> - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    </people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm> -
    Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces
    </people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces> -
    Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    </people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14> - The same
    filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine
    </people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine> - Payload
    Based Message Search in XI30 using Trex Engine
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i
    </people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i> - XI :
    Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    </people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter> - XI: HTML
    e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated
    </people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated> - XI :
    FAQ's Provided by SAP
    Books from SAP PRESS...add this link to your favourites...
    http://www.sap-press.de/international?GalileoSession=97477303A3.xx-M0Y78
    Real World Scenarios of SAP XI ...VERY VERY GOOD....AWESOME
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/0
    b95b488-0701-0010-57b9-e861b1ad572f
    Check this up:
    Exchange Infrastructure How-to Guides for SAP NetWeaver 2004 [original link is broken] (how to guides)
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm (very nice XI help)
    Here is some scenarios from SDN:
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to il
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in XI30 using Trex Engine
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by
    SAP
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/6051-Performance [original link is broken] [original link is broken] [original link is broken] [original link is broken] Tuning for PI
    Please give reward points if it is useful.
    Regards,
    Sai.

  • Datasource connection with jboss, need help

    Hi friends,
    I am doing data source connection through Jboss (jboss-4.0.2) with mysql database. I am using java(j2sdk1.4.2_04). I have made all changes given in this link -- http://community.jboss.org/wiki/SetUpAMysqlDatasource
    After making changes I restart jboss properly, but when I am going to attempt to connection through class. it give following error.
    1.ERROR! Shared library ioser12 could not be found.
    Can't find SerialContextProvider
    When a create a diffrent new class, then give me this error.
    2. ERROR! Shared library ioser12 could not be found.
    Cannot get connection: javax.naming.CommunicationException: Can't find SerialContextProvider
    Kindly help me out for this problem.
    Thanks
    Abhishek Jain

    user13428037 wrote:
    ,,, JBoss ... give following error.
    1.ERROR! Shared library ioser12 could not be found.
    Can't find SerialContextProvider
    When a create a diffrent new class, then give me this error.
    2. ERROR! Shared library ioser12 could not be found.
    Cannot get connection: javax.naming.CommunicationException: Can't find SerialContextProviderPlease don't crosspost http://www.javaprogrammingforums.com/jdbc-databases/6353-datsource-connection-mysql-need-help.html#post22533
    The
    ERROR! Shared library ioser12 could not be found.error message has nothing to do with you adding a datasource.
    It would happen even before you made the datasource configuration changes.
    Looks like you added a j2ee.jar to the JBoss classpath.

  • I need Help  ( Check out cart)

    I try to develop shopping site by JSP and I need help ?
    my checkout button display jsp page include product in the cart and then insert this product in table by using anther button (valid cart)
    how can I insert item in table???
    anther queation how can I edit my cart ( like delete item or chang quentity)?
    thank you

    I try to develop shopping site by JSP and I need help
    ?Yes you need help
    >
    my checkout button display jsp page include product
    in the cart and then insert this product in table by
    using anther button (valid cart)
    how can I insert item in table???If the table you are talking about is an HTML table you need to read upon DHTML
    if the table is a DB table you will need SQL insert either through EJB or JDBC
    >
    anther queation how can I edit my cart ( like delete
    item or chang quentity)?You write a method that does whatever you want on your cart Object
    >
    thank youMy pleasure
    PS: since you question is VERY vague better help is impossible to give

Maybe you are looking for

  • Z50-70 Gaming Issues

    I recently downloaded games like GTAIV and Naruto Shippuden Ultimate Ninja Storm 3 Full burst, both of which do not work as expected. GTA IV starts the menu but when you actually play the game, the fps is so low , we have to wait for a minute to let

  • Error when launch HFM Demo

    I am getting this error when I launch HFM demo - Could not find a Hyperion Reporting and Analysis server running on demodrive.oracle.com at port 6800. Please verify your server connect string and confirm that the server is up. I have started all scri

  • Help with platform game

    I can't solve this for days already... When the hero object dies, the floorObject do not remove completely, such that one of them remains. And the hero object disappears. Thanks for all the help. package           import flash.display.MovieClip;     

  • Hi there - footage shot from iphone 4 and iphone 5

    I am trying to edit together footage shot from iphone 4 and iphone 5 - one set of footage is 1280x720 and the other clip is 640x480 - do I have any options to make the one clip that is a different size match to the others

  • MAJOR Start-up Issues:  Can my imac be saved?

    Hello all- I sure hope someone can help me. I am really worried about the state of my imac. It is only ONE YEAR old and has always been maintained with the latest updates. Quick background: A few weeks ago, while in screensaver mode, I returned to my