Login that does not use https

I don't have access to https sites from my current work facility.
Do you have a login method that does not use HTTPS?
Is there any way that I can link my metalink account and my OTN account, and get to OTN through my metalink account?
David

Okay ... I fixed this, Oracle XE finally convinced them to let us have access to https at OTN.
David

Similar Messages

  • Trying to use a servlet that does NOT use HTTP as a protocol

              Hi,
              I'm trying to develop a mechanism that supports requests from non-http clients
              (2000-5000 concurrent requests). I'd like to sub-class from GenericServlet (so
              I don't have to write thread pooling, etc.), but I can't figure out how to get
              WLS 5.1.8 to get the request and send it to my servlet sub-class. There doesn't
              seem to be any documentation on how to achieve this...
              HTTP is NOT an option for these clients - please do not suggest I try that.
              In it's simplest form, the client opens a TCP/IP socket, sends data, and gets
              a response - very much like a servlet, just not HTTP.
              Thanks,
              Andrew
              

              Sorry - but the client is a mobile hand-held device. It's got a high-speed, short-range
              wireless (802.11B) connection and it supports TCPIP. There's no way I can get
              java (or a browser) onto the client device (even if I could I'd have to bridge
              from native apps to java for communication back to the appserver); which is why
              I'm trying solve as much of the problem as possible on the server...
              Thanks for the suggestion though,
              Andrew
              "Cameron Purdy" <[email protected]> wrote:
              >Suggest looking at WL RMI or T3 stuff.
              >
              >A little heavier than raw TCPIP but you'd have to build half of that
              >stuff
              >anyway.
              >
              >Peace,
              >
              >--
              >Cameron Purdy
              >Tangosol, Inc.
              >http://www.tangosol.com
              >+1.617.623.5782
              >WebLogic Consulting Available
              >
              >
              >"Andrew Larson" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Hi,
              >>
              >> I'm trying to develop a mechanism that supports requests from non-http
              >clients
              >> (2000-5000 concurrent requests). I'd like to sub-class from
              >GenericServlet (so
              >> I don't have to write thread pooling, etc.), but I can't figure out
              >how to
              >get
              >> WLS 5.1.8 to get the request and send it to my servlet sub-class.
              >There
              >doesn't
              >> seem to be any documentation on how to achieve this...
              >>
              >> HTTP is NOT an option for these clients - please do not suggest I try
              >that.
              >>
              >> In it's simplest form, the client opens a TCP/IP socket, sends data,
              >and
              >gets
              >> a response - very much like a servlet, just not HTTP.
              >>
              >> Thanks,
              >> Andrew
              >
              >
              

  • The timekeeping system we use does not like HTML 5 so what is the latest version of Firefox that does not use HTML 5?

    We have been told by our timekeeping system provider that the latest versions of FireFox, Chrome and IE are not compatible with their websites at this time. I was told that it was because of the use of HTML 5 by the more recent versions of these web browsers. I need to download the most recent version of FireFox that does not use HTML 5. Can anyone tell me which version this would be?

    It isn't "Timesheet Next Generation", is it? We had a thread on that here: [https://support.mozilla.org/questions/961306 Websites using php and mysql stopped sorting drop down lists properly starting last week. Did something change?]
    Unfortunately, HTML5 is a large specification with a lot of parts that has been implemented in pieces over the course of several years. It would be really helpful if your vendor could indicate what EXACTLY is not compatible and then it could be researched. Otherwise, you'd have to use trial and error. Either way, you would end up with an older browser that isn't safe to run on the internet. It could be time to consider other vendors...

  • Create timer function that does not use start-sleep

    Hey all I would like to create a timer function that does not use the start-sleep command because this freezes my GUI. I've wrote the start of a function but it seems to move on before the specified time has finished.
    Here's what I have:
    $Global:timerCounter=0
    $Global:timer = new-object System.Windows.Threading.DispatcherTimer
    Function Timer{
    param(
    [parameter(Mandatory=$true)]
    [int]$time
    $timer.Interval = [TimeSpan]"0:0:$($time)"
    $timer.Add_Tick({
    $Global:timerCounter++
    if($Global:timerCounter -ge 1) {
    $Global:timer.Stop()
    $timer.Start()
    Then in my script i would like to call Timer -time #of seconds. It seems that when I call it the add_tick is registered and then started but it continues on with the rest of my script. Is there a better way of doing this without using start-sleep?
    Thanks!

    Okay the issue I'm having is that I have code after the $timer.start that I don't wan't to run till a powershell job is done. In all the examples I've seen it has to come to the end of the code then it starts the tick. So in your example it comes to the
    end of of your code and showsDialog() then starts ticking.
    So:
    add-type -AssemblyName system.windows.forms
    $form=New-Object System.Windows.Forms.Form
    $btn=New-Object System.Windows.Forms.Button
    $form.Controls.Add($btn)
    $btn.add_Click({$form.Close()})
    $btn.Dock='Fill'
    $btn.Font='Lucida Console, 20.25pt, style=Bold'
    $btn.Text=[DateTime]::Now
    $timer=New-Object System.Windows.Forms.Timer
    $timer.Interval=1000
    $timer.add_Tick({$btn.Text=[DateTime]::Now})
    $timer.Start()
    $form.ShowDialog()
    #I want to do other things here but only after the ps job has finished
    Thanks I really am trying to figure this out. 
    Here is the code I'm working with I guess I'm unclear on how to order the timer and the rest of my code:
    if($syncHash.mainCopy){
    $syncHash.mainJobDone = $false
    $syncHash.writeHost = $false
    while(-not $syncHash.mainJobDone){
    [System.Windows.Forms.Application]::DoEvents()
    if($syncHash.writeHost -eq $false){
    Write-OutputBox -Message "Copying"
    $syncHash.writeHost = $true
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    $syncHash.currentCopyTime++
    }elseif($syncHash.currentCopyTime -ge ($syncHash.averageCopyTime * 2) -and $syncHash.collectionCopyTime.Count -ne 0){
    $syncHash.Unusable += $syncHash.currentMainCopyMachine
    $syncHash.computersNotForInstall += $syncHash.currentMainCopyMachine
    $syncHash.inProgress = $null
    $syncHash.mainCopyTimedOut = $True
    Write-OutputBox -Type WARNING: -Message "$($syncHash.currentMainCopyMachine) is taking too long. Removing Job.."
    Add-Content -Path $log_path -Value "$($syncHash.currentMainCopyMachine) taking to long to copy to"
    Stop-Job $syncHash.mainCopy
    }else{
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    Write-OutputBox -Message "." -NoNewLine
    ############################# ############# So I need it to wait right here I have other code other than in this block ############# that needs to run $syncHash.currentCopyTime++
    if(-not $syncHash.inProgress){
    $syncHash.mainJobDone = $true

  • Keithley 6487 Driver That Does Not Use IVI

    Hi,
    Does anyone know if a driver set has been developed for the Keithley 6487 that does not require the Keithley IVI? To date I have been using .llb packages to control instruments and would prefere to use one in this case if possible.
    Many Thanks
    Ben

    Hi Ben,
    Thank you for contacting National Instruments. Please only post once as posting the same question many times divides the effort of the group and generally results in a longer resolution time.
    Duplicate post
    Thanks
    Andrew McLennan
    Applications Engineer
    National Instruments

  • Building an application that does not use any local program files or libraries

    I need to build an application that will not use any local libraries or LabView program files(even if LabView is installed on the PC). I also am curious if anyone knows if there is a way to debug such an application(in it's compiled state).
    Any help on these topics would be greatly appreciated.
    -Nate
    Solved!
    Go to Solution.

    Hello,
    I am unclear on what you are trying to accomplish here. As the previous poster mentioned, if you enable debugging when building your application, you can remotely connect and probe the block diagram of the running executable. Executables use the run-time engine but could also access drivers or other run-times if using a specialized toolkit/module. This all depends on your application.
    -Zach
    Certified LabVIEW Developer

  • How to install a package that does not use DESTDIR?

    Hi All
    I am trying to create a PKGBUILD for a package called cantera.  This package uses the standard "configure", "make", and "make install" process; however,  "--prefix" is supported but DESTDIR is not used.  Unfortunately, this package is very large (many files) and "make install" install with absolute path names.  Is there any strategies for handling this situation?  An example of another package that handles this would be great.
    Thanks
    Kevin

    It doesn't work for me, I get the following error:
    /bin/install -c ijs_server_epsonepl -c /var/abs/local/epsoneplijs/pkg/usr/bin/ijs_server_epsonepl
    /bin/install: cannot create regular file `/var/abs/local/epsoneplijs/pkg/usr/bin/ijs_server_epsonepl': No such file or directory
    make: *** [install] Error 1
    ==> ERROR: Build Failed.  Aborting...
    So I have to create a folder called usr/bin in my pkg-folder, then it will work.
    But this is stupid, can't makepkg create those folders by itself?
    Hmm ok tried creating the folders and still the same error, here is my PKGBUILD:
    pkgname=epsoneplijs
    pkgver=0.4.0
    pkgrel=1
    pkgdesc="a Epson EPL printer driver for ghostscript"
    url="http://sourceforge.net/projects/epsonepl/"
    source=($pkgname-$pkgver.tgz)
    md5sums=('8bc16b9df5b2a4168abc773745b9b2d7')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install
    Whats wrong, I don't get it... 

  • HT2518 how do you transfer video from a DVD based camcorder that does not use USB?

    How do you transfet older video on tape and DVD based camcoder that do not have usb?
    looking at buying a MacBook 15.4

    I have done this for someone else with Tape Deck coax out through USB if you have installed a TV USB application such as Hauppauge WinTV HVR; recording with TV App which is rather tedious.
    Check out these - you may find better ways to do it depending on camcorder.
    http://www.ehow.com/how_2005441_camcorder-pc-usb.html
    http://www.bing.com/videos/search?q=camcorder+media+to+pc&FORM=BVFD#

  • Is it possible to print to a printer that does not use airprint

    i have a laser printer connected to my imac and is not a wireless one but i have configured it to so that laptops can print to it from upstairs. is it possible to use air print on iphone to that printer using air print

    http://www.tuaw.com/2010/11/29/airprint-hacktivator-enables-airprint-for-any-pri nter/
    or:
    http://www.ecamm.com/mac/printopia/

  • I can not use the Acrobat DC Cloud. How do I get an Acrobat PDF Reader that does not use the Cloud?

    The subject pretty much says it all.
    I can not save sensitive corporate files on your Cloud.
    Even for non-sensitive PDFs, I do not always have access to the cloud when I need to view or work with a PDF.
    I need a non-cloud version of Acrobat Reader.
    When Reader DC installed onto my system it must have blown away Reader XI.
    After I uninstalled Reader DC, now I can't open/read PDFs anymore.
    Also, I can't find a copy of Adobe Acrobat to install that isn't cloud dependent.
    This is a problem for me.
    Besides all that, NOW I get error messages every time I try to re-install Reader DC.
    See below.
    So, today at work, I can no longer open PDFs.
    Thanks? NOT!
    HELP!
    Gene

    Here, I finally have a solution.
    Gotta love Google.
    More helpful than Adobe so far.
    Note: Clicking on the link below will immediately open the download dialogue box.
    ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.1/en_US/AdbeRdr1011_en_US.exe
    I used this download to install, and the Installer was flawless.
    Thanks everyone who contributed ideas and potential solutions.

  • Can airport express be used to extend a network that does not use an apple airport as the primary base station.

    I have a verizon fios cable modem that incorporates a wireless base station using 802.11n and wep 40 bit security.  I decided that I could improve poor reception by using two airport expresses as range extenders.  I cannot seem to configure them for this function.  When I do a manual setup and choose extend a network, I get a message that says the network cannot be extended.  I have been able to join the network, and I think they would work as clients, but I'm trying to use them in as additonal base stations to extend my network.
    The primary base station, and the two airport express units are all within range of each other.
    Now that I have the two units (purchased on sale from Apple this past week), the directions in the manual only include instructions for using them as network extenders with a primary basestation that is Apple?  Is this the case?

    Unfortunately, most non-AirPort routers are not compatible with Apple's implementation of Wireless Distribution System (WDS)...so it very unlikely that your non-AirPort router can be extended wirelessly with the AirPort Express Base Station (AX).
    Your only option would be to connect the AX to the Verizon-provided gateway by Ethernet or use Powerline adapters to create a pseudo Ethernet connection between them. A wireless-only connection will not work.

  • USB Adapter's Use in foreign country that does not use standard 110 and

    I am not taking my lap top on my trip to NZ but want to charge battery on IPod. Will the Apple USB Adapter work with an additional adapter for the different current and plug in that foreign country?

    Yes, you can take the USB adaptor. New Zealand uses 230V. All you need is a plug adaptor so you can plug it into the socket. New Zealand uses the same plugs as Australia.

  • Web Module: Works great, but is it possilble to publish an HTML web gallery that does not use thumbnails, but just displays all photos (one above another)?

    It would be nice if a published web gallery did not require clicking or sliding in order to view a new picture. Is there a template that just puts up every image in the gallery, full-size, one above another? That's how I like my webpages - see, for example, www.sgrhoa.net/betz/150205/ .
    Thanks!
    Bill

    The built-in templates do not do that. At a quick glance, none of the available templates from Adobe's site do that either.

  • USB Adapter's Use in foreign country that does not use standard 110

    I am not taking my lap top to New Zealand and wonder if the UBS Adapter will work with the other current (220) and a different plug provided I use an additional adapter.

    Yes, you can take the USB adaptor. New Zealand uses 230V. All you need is a plug adaptor so you can plug it into the socket. New Zealand uses the same plugs as Australia.

  • Many times when I click on a link that does not use a new tab, a new page opens under my current page, instead of 'on top'. How do I get new pgs to Open On Top

    No further information.

    Waka, I have Kaspersky running 24/7 but Cor-el (from Superman, I think) gave me a list of software to try.
    Cor-el, the middle click seemed to work on a page that went under, which I deleted and tried again with the wheel click.
    Waka and Cor-el, I have been planning to reinstall my Windows 7 OS and upgrade it to Pro, from Home at the same time. Will possibly re-partition C: and -will- reformat it. Will have to re-install ALL my software plus some of my softwares' user information, which I have also backed up, along with favorites and many others.

Maybe you are looking for

  • Unable to capture from DV tape

    I was given a Mini DV tape and when I try to capture it starts the first few seconds and stop with the following message: "Capture encountered a problem reading the data on your source tape. This could be due to a problem with the tape. Capture has b

  • Photoshop CS5 extended just spins on start-up

    The Facts: Version Adobe Photoshop Cs5 the extended version. Mac Os: Snow Leopard version 10.6.8 Processor 2x2.66 GHz Duel Core Intel Xeon Graphics Cards: NVIDIA GeForce 7300 GT    The Problem: Starting Yesterday, everytime I tried to open my photosh

  • ITS is not working after the Upgrade to SAP ECC 6.0

    Hi Folks ITS is not working as it supposed to be after upgrading to SAP ECC 6.0 When I try to connect thru ITS i m getting HTTP 404 and HTTP 500 Errors Can some one throw some ideas. But web AS is running perfectly alright. Thanks Jay

  • Material weight change in Sales Order

    Hi , In a Sales Order, the weight of a material gets copied from the material master.Is it possible to change the weight of a material in a sales order /Quotation if it is maintained as 0  in Material master. Our client used to change the weight in s

  • What makes a GT70-0NE not able to be upgraded to WIn 8.1?

    Its on the non-upgradable section for Windows 8.1 Anyone know why or what problems? I was going to update via the anytime upgrade from 8... Seems this rocking laptop has enough for the task. Michael MSI GT70 0NE-276US 9S7-176212-276 Gaming Notebook -