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 strongm 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: sharon3874
  • Content: Threads
  • Order by date
  1. sharon3874

    Sending custom http headers through HttpClient

    I want to use Apache's HttpClient to send http request header. Can anyone take a look into my code and see if it is correct? (I am using msn's web site for testing purpose) String url = "http://www.msn.com"; HttpClient client = new HttpClient(); GetMethod get = new GetMethod(url); String...
  2. sharon3874

    automatic login (3rd party authentication) problem

    All, There is a link in one of our application (java based) leads to another application (vendor application written in asp.net). I am passing some information (vendor requirements) in the http header from servlet to the vendor application. I am getting the following error (from IIS logs)...
  3. sharon3874

    how to display content of an url by using httpurlconnection?

    I want to display the content of a url that I specified in my servlet using httpurlconnection class. I tried something like the following, but I always get a blank page, am I missing anything? URL url = new URL("http://www.msn.com"); HttpURLConnection urlc =...
  4. sharon3874

    How to set custom HTTP header for single sign on?

    Currently we just begin to use an application called "etran". This application requires user name and password to login. Now, my assignment is to integrate etran application in our internal application. This means that somewhere in our internal application, there is a link leads to the etran...
  5. sharon3874

    How to set custom HTTP header for single sign on

    my company is a financial sector. Currently we just begin to use an application called "etran". This application requires user name and password to login. Now, my assignment is to integrate etran application in our internal application. This means that somewhere in our internal application...
  6. sharon3874

    VBA Word: How to point to a specified dir when a file dialog is open?

    in VBA word, when I right click on some text, I can add hyperlinks upon the text. It will open up a file dialog allowing me to navigate and pick a file. My question is that how I can force the dialog box to point to a certain directory when it opens up? Thanks a lot.
  7. sharon3874

    Word VBA: deployment

    I am new in VBA and I am kind of confused now. I created a word document with some macros in it. one of the things that I did was to add an extra menu item to the short-cut menu(right-click menu), and it will popup a small window...It worked well on my machine, but it didn't work when I put my...
  8. sharon3874

    Word VBA: deployment

    I am new in VBA. I am sorry in advance if my question doesn't make sense. I have a document with a button triggering a macro. I am just wondering how I deliver it to my users. I don't want my users to see the macro code, which I have already handled it with password protection. My question is...
  9. sharon3874

    Word VBA: Why a macro reads a file from 2 different directories

    I am new in VBA. I am sorry in advance if my question doesn't make sense. I have a word document and there is a button which trigger a macro. in the macro, I want to get some info from reading another doc. the name of the file is like "additional_links.doc", since I didn't specify the path, so...
  10. sharon3874

    VBA Word: How to customize a right click menu bar(shortcut menu)?

    I am new in VBA word. In MS word, I want to customize right click menu bar(shortcut menu bar) on a Hyperlink. I want to change the menu bar(adding new menu item or delete menu item) dynamically based on different text of a hyperlink. How do I do it? For example, the right click menu bar on a...

Part and Inventory Search

Back
Top