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 Mike Lewis 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: *

  1. boske3

    SAAJ0007: Bad endPoint type

    Hi i had problem with using SAAJ . I made example of SOAP client using SAAJ with SSL and certificate but when connection established i go this error SEVERE: SAAJ0007: Bad endPoint type (endPoint instance of URL) Error occurred while sending SOAP Request to Server...
  2. boske3

    How to convert curl_init() code to Java code

    Hi Thank you Feherke you are right not much people use this kind of code in Java . I had found some examples on net but nothing much complex that i need to use . So if someone find or know about this it will be great help tnx
  3. boske3

    How to convert curl_init() code to Java code

    Hi everyone I had PHP code but i need help how to convert it to Java code. I search lots of examples but raerly on non of them has what i need. So i need to convert this code to Java $options = array( CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_SSL_VERIFYHOST =>...
  4. boske3

    How to convert curl_init() code to Java code

    Hi everyone I had PHP code but i need help how to convert it to Java code. I search lots of examples but raerly on non of them has what i need. So i need to convert this code to Java $options = array( CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true...
  5. boske3

    getting values in combobox from database without refreshing!

    Softjack i have one question for you? I`m trying also to make this ajax work so i ned to now where did you put those three lines var xml_doc = new ActiveXObject("Microsoft.XMLDOM"); xml_doc.async = false; xml_doc.loadXML(originalRequest.responseText); ...in which code? Can you show...
  6. boske3

    ListBox click problem!

    Thanks for help and link I will study this
  7. boske3

    store procedure result problem

    Hi thanks for help this works i try this in my query browser and it works delimiter | CREATE PROCEDURE sp_out(OUT p VARCHAR(10)) BEGIN SET P='molo'; SELECT P; END; | CALL sp_out(@x) Thanks a lotfor help
  8. boske3

    ERROR 1414

    Hi! i try to make some procedure and i got Error 1414, Code that i executed is below: **************************************************** mysql> drop procedure sp_inout; Query OK, 0 rows affected (0.13 sec) mysql> create procedure sp_inout(INOUT P INT) SET @x=P*2; Query OK, 0 rows affected...
  9. boske3

    store procedure result problem

    Hi everyone I have a problem.I try to execute procedure like this one: **************************************** drop procedure sp_out; SET @x='Molweni'; CREATE PROCEDURE sp_out(OUT p VARCHAR(10)) SET P='molo'; CALL sp_out(@x); SELECT @x; **************************************** and i expected...
  10. boske3

    ListBox click problem!

    Hi everyone! I had one problem with listbox. I had create a page with three listbox in which i had data from database. That works fine ,but now i want to put one more listbox in which will be date from database but only when someone click on second listbox. For example in second list box are...
  11. boske3

    Problem with UTF-8 and JSP

    I also solved this problem.It's a quite a tricky Who have problems like me go to this site: http://forum.java.sun.com/thread.jspa?threadID=502015&tstart=90 I had use only first 3 steps and i got it write. But before using this u must set UTF 8 character set in your MySQL database. who wants...
  12. boske3

    Problems with JSP and HTML frames

    When i put body tags in other to jsp files i can't see any of those to files in frames. I had to move those body tags and now works excellent.
  13. boske3

    Problem with UTF-8 and JSP

    I have problem with UTF-8 character set. I use MySQL 5 and Tomcat 5.5.9.I use NetBeans for programinnig in Java. I made one database and is in UTF8,also all my JSP pages are set to UTF8 encoding,and also all HTML are set to UTF8. When i put š,?,?,?,ž character date in database directly from...
  14. boske3

    How to make print page with JSP

    Hi I'd like to make print page button to print the whole page with some data. How to make this in JSP? Can anyone have any idea? Thanks
  15. boske3

    Problems with JSP and HTML frames

    Well i finally find solution for my problem I have 3 files like this: ********************** index.jsp ********************** <%@page contentType="text/html"%> <%@page pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  16. boske3

    Problems with JSP and HTML frames

    Hello! I have one problem.I want to make JSP page with html frame in it.I want one page with two horizontal frame and in upper frame when someone submit something to display in lower page.I want to make all of this pages in JSP exstension and to call it up.jsp and down.jsp. I try something but...
  17. boske3

    Problems with JSP Tag library

    Hi ! I have one problem .I tried to make two jsp files with which i tried to make a little test for my error page.I make one page named useErrorPage.jsp and it looks like this: <%@page errorPage="errorPage.jsp" %> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@taglib...
  18. boske3

    How to login in Tomcat Administration tool

    Thanks a lot! It works it seems that i had forgot to put rolename admin like this in tomcat-users.xml file: <role rolename="admin"/> <user username="system" password="password" roles="admin"/> Now i enter this in my tomcat-users.xml fine and i enter in Tomcat Administration tool without any...
  19. boske3

    How to login in Tomcat Administration tool

    I`d like to ask you how i can enter in Tomcat Web Server Administrtaion Tool . I don`t now the username and password ? Is there any default adminsitrator username and password? By the way i have Tomcat 5.5.9 installed and working fine. Please help!

Part and Inventory Search

Back
Top