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

  • Users: medox
  • Order by date
  1. medox

    HOSTNAME works IP DONT

    If I understood your question, the answer is No, the location I'm trying to reach (ex. http://10.10.1.15/myFolder/myASP.asp), 'myFolder' is a virtual directory, not the default web. I'm rebuilding our webserver and the webserver is the one who makes XLM calls to the '10.10.1.15' computer...
  2. medox

    HOSTNAME works IP DONT

    Hi -- I have two webserver that need to talk to each other using MSXML 4.0. When I'm connecting using the hostname: (e.g. Set xhttp = Server.createObject("Msxml2.SERVERXMLHTTP.4.0") xhttp.open "POST", "http://myhost/GetX.asp", False ), works fine, but it wont work if I try to use the IP address...
  3. medox

    XML - Cant Connect Using IP address

    Hi -- I'm on the process to upgrade our webserver. My problem is happening when I'm testing the XML calls. Im using MSXML 4.0. If I try send ("POST") the xml data to a 2nd server and I use the server IP instead of the hostname, the connection fails. Any clue how can I add permission from my new...
  4. medox

    ASP & JSP... help

    Hi Tarwn, The code you sent worked fine after a few adjustments in our server. My problem now is: after this code is executed ... ' Opens the connection to the remote server. objXMLhttp.Open "GET", URL, False ' Actually Sends the request and returns the data: objXMLhttp.Send...
  5. medox

    page access log logs visits twice sometimes

    I tryed mozingod approach once, but the user managed to double click the button faster than the javascript could hide it. Users... we can't live without them.
  6. medox

    ASP & JSP... help

    Hi Again, Your code works fine if the URL points to an ASP page, when Im trying to point to their JSP server I get a: ... msxml4.dll error '80072efd' A connection with the server could not be established ... I think the java server configuration is causing this error, for instance our IIS...
  7. medox

    ASP & JSP... help

    Let me try to explain it better... its a weird scenario Im facing here: There is an application on the Image server that was developed in JSP by a third part company. If you use their web interface, you retrieve a table with a list of images for a particular client. The major problem is that...
  8. medox

    ASP & JSP... help

    Nobody knows :o(
  9. medox

    SetAbort not causing a rollback

    Are you adding <%@ TRANSACTION=Required> on each page? ///edox ..
  10. medox

    insert Request.Cookies(&quot;value&quot;) into database

    Your code: ... sql = &quot;INSERT INTO results(fname) VALUES(f_name)&quot; should be: sql = &quot;INSERT INTO results(fname) VALUES('&quot; & f_name & &quot;')&quot; ///edox ..
  11. medox

    Help needed with asp code

    Why dont you add a counter inside the Do loop and exit do when the counter reachs 7? ///edox ..
  12. medox

    Type mismatch: 'HTMLEncode'

    Is rsMbrs.Fields(&quot;Price&quot;).Value returning a null value? If so, try using Page.HTMLEncode instead of Server.HTMLEncode ///edox ..
  13. medox

    Type mismatch: 'HTMLEncode'

    Is rsMbrs.Fields(&quot;Price&quot;).Value returning a null value? If so, try using Page.HTMLEncode instead of Server.HTMLEncode ///edox ..
  14. medox

    onChange on drop down box

    From what I can see, the way you're trying to retrieve the value from the dropdown object won't work. Try to explicit use the object name: ... if (dropdown_menu.value == true) { window.focus(); window.location.reload(false); // Reload page } else {...
  15. medox

    Stored Procedure error. Please help!!!

    As a good pratice I'd suggest you to avoid using ID as a field name, try always CustID or SomethingID. ID, for most database engines is a reserved word and can raise a lot of errors hard to find... This is not the case right here, Juanita's answer shall fix your problem.
  16. medox

    ASP &amp; JSP... help

    I have two web servers running, one holds an application that stores scanned images and the other is the Web site that displays these images. Im using ASP and XML to communicate and retrieve data from the image server. The problem is that the Image software provider changed its technology for...
  17. medox

    Server hangs when exporting for MS Word (.DOC).

    I’m experiencing and anomaly when I try to export a report in .DOC format. I can export for Excel, PDF or RTF just fine, but when it goes to .DOC, the server hangs and I have to reboot. Did anybody face a similar problem? Thanks, ///edox
  18. medox

    Set Location

    Hi Dreman, I've been getting this error sometimes too. The best way that I found to debug it is, after you get the error, go to Database/show SQL query (on Crystal Designer), copy the existing query and paste it into SQL query analyzer... clean the incompatible quotes and try to run the query...
  19. medox

    Group on Server

    I forget to mention that these reports will be generated on a ASP page, not VB. :o(
  20. medox

    Group on Server

    We have a huge Datamart that takes forever to retrieve all information, we decide to Group on Server and only display summarized results. It works fine if I create a report using the report designer. Now I need to create the same reports using RDC, does anybody knows how to set the...

Part and Inventory Search

Back
Top