Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ajoce
  • Order by date
  1. ajoce

    passing db and parameter info

    I have this code : <% ReportAppSession reportAppSession = new ReportAppSession(); reportAppSession.createService("com.crystaldecisions.sdk.occa.report.application.ReportClientDocument"); reportAppSession.setReportAppServer("localhost"); reportAppSession.initialize(); ReportClientDocument...
  2. ajoce

    accessing RAS problem

    another question, if its ok. i am using websphere as my development environment. i created a bean, added a simple method : public void test(){ ReportClientDocument rcd = new ReportClientDocument(); } i dont have compile time error. i imported all necessary packages needed. thats...
  3. ajoce

    accessing RAS problem

    it helps a lot. thanks =) i notice that the code is done in jsp. can this code run in a simple java class? let say it is coded in a java class, but the class is called by a stateless bean, is this possible? thanks again =)
  4. ajoce

    accessing RAS problem

    I have a RAS in CE 10 and an already created rpt that connects to a database. I intend to create a java application (having a main method) that sends a parameter value to the rpt file, then immediately save it as a pdf file. i dont intent to view it on a browser. is this possible? i have been...
  5. ajoce

    is this sql statement possible?

    thanks =) it works. oh, on the sql statement i posted. it also worked. just remove the parenthesis ( ), and replace it with single quotes =) thanks rudy.
  6. ajoce

    is this sql statement possible?

    SELECT CONT.CONTID FROM CONT WHERE CONT.ACCT_ID = (SELECT AIDE.ACCT_ID FROM AIDE WHERE AIDE.AIDE_ID = 'AA01') or is there an alternative in doing this? help, please..
  7. ajoce

    JavaMail

    I got it already. Sorry for the posts.
  8. ajoce

    JavaMail

    by the way, SPAWN in the error message is just the senders address. so it was declared in message.setFrom("SPAWN"). thank you. please help..
  9. ajoce

    JavaMail

    Need Help... I have a simple JavaMail code that sends a plain text message to a particular email address. I am doing this because of testing purposes. I am getting an error : javax.mail.SendFailedException: Sending failed; nested exception is: class javax.mail.MessagingException: 572 SPAWN...
  10. ajoce

    creating jsp to open pdf files

    please help. how can i open pdf files, that are from the internet, in the browser? how do i code it in jsp? or servlet? thank you.
  11. ajoce

    jdbc inserting row problem

    i wanna use the result sets methods without using any sql statements. is there another way? but ill try what you suggested =) thank you Hattusas
  12. ajoce

    jdbc inserting row problem

    how can i use another insert statement? like creating a different result set and calling the insert statement from there? pls help thanks for the reply jwenting =)
  13. ajoce

    jdbc inserting row problem

    can anyone help me. i have this prob in inserting a new row in my database. i am using microsoft sql as my database, using northwind database (the sample database in mssql). my code is : con = DriverManager.getConnection(&quot;jdbc:odbc:nwind&quot;); stmt =...

Part and Inventory Search

Back
Top