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. ivpotter

    Update child window from parent

    No I didn't - I _think_ that it is a security feature and this activity is not allowed. You could try something like getting the child to update itself based on the result of a "question" asked of the parent. ie parent sets a variable to the desired HTML parent opens child window...
  2. ivpotter

    Validating an XML Doc which does not specify a DTD

    No, unfortunately I never resolved this and had to make do with checking for well-formedness only. Ivor
  3. ivpotter

    Update child window from parent

    Hi I have successfully updated a section of innerHTML on a parent window from a child window but I am having trouble doing this the other way around. Could someone please explain to me how to open a child window specifying a template document then update a portion of the HTML of that document...
  4. ivpotter

    Validating an XML Doc which does not specify a DTD

    Is it possible to validate an XML document when that XML document does not specify a DTD via a <!DOCTYPE ...> section? What I would like to do is create the factory - reference a DTD from within the code then parse and manipulate an XML document by importing fragments from a series of files...
  5. ivpotter

    SSL Cert

    Do you mean a free signed certificate? If not then use make certificate to generate a test certificate - you can customise the information to suit your needs but it will not be signed by a CA. I do seem to recall Thawte sending me an email some time ago (and I'm talking years) offering a free...
  6. ivpotter

    Creating an index of documentation

    I should also have mentioned that the target files reside on a separate server. Cheers Ivor
  7. ivpotter

    Creating an index of documentation

    Hi I am trying to write an intranet site to index our companies documentation and have created a directory under my DocumentRoot and then placed a series of links to Word documents. I then use a SSI perl script to trawl through this directory resolving the links and extracting the document...
  8. ivpotter

    Accessing Office file Properties

    You could achieve this by accessing the datecreated method of $doc_prop via my original code. You may need to install DSOleFile which can be obtained from ... http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q224351 Unfortunately I'm not sure how to interpret the format of the value...
  9. ivpotter

    Accessing Office file Properties

    Mike Thanks for your answer but I've now solved it - I spent ages trawling the net trying to find the answer to this thinking it a perl problem. Since posting I tried achieving the same via VB and discovered that I didn't have DSOleFile installed - I'd presumed that this would be available if...
  10. ivpotter

    Accessing Office file Properties

    Hi I am trying to extract dome properties from a MS Word document using the following code ... use Win32::OLE; $doc = Win32::OLE->new('DSOleFile.PropertyReader', 'Quit') || die &quot;\&quot;Unable to create PropertyReader\&quot;&quot;; $doc_prop =...
  11. ivpotter

    Password Protection Through a Firewall

    Resolved! Putting password authentication in place led the load balancer to believe that Apache was not running and therefore it stopped forwarding requests. Ivor
  12. ivpotter

    Password Protection Through a Firewall

    Hi I am trying to setup a site that listens on an internal facing IP and a public facing IP and I have configured basic password authentication. However ... When I access the site via the internal IP everything is fine (I am prompted for a login and can subsequently enter the site) but if I...
  13. ivpotter

    Prioritising Messages

    I am trying to write an application that can write messages to a queue with different priorities such that it might write a message with a low priority then one with a high priority then another with a medium priority. I then want another application to have the option of reading these off in...

Part and Inventory Search

Back
Top