Does anyone have a perl script that can submit a proxy request to iplanet proxy server with basic authentication? We want to do content verification using BigIP.

 

Hi, Dave.
If you're using the BlackBerry browser, you can't configure anything to bypass the RIM servers.  I believe you may do so by using the Opera browser, but I haven't tried it myself so cannot comment with authority.
I hope that clears up the issue for you. 
- If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Similar Messages

  • Does anyone have a terminal script that can bind Macs to AD?

    Looking to use terminal to bind our Macs to AD. Is there anyone who has done this process before?
    Thanks for the help!

    Personally, we use Casper Suite and that works well especially since it's a 'set and forget' sort of thing.  But I did find this.  I've used some of these commands and this looks thorough. 
    PLEASE BE SURE TO TEST IN YOUR TEST AD ENVIRONMENT!! 
    #!/bin/sh
    ############################ AD_Bind_ARD ###########################
    # Patrick Gallagher | [email protected]
    # http://macadmincorner.com/bind-to-ad-using-apple-remote-desktop/
    # This is a script that will bind a Mac to AD from ARD.
    # Modified from Mike Bombich's ad-bind-login-tiger.sh script
    # which can be found at http://www.bombich.com/mactips/scripts.html
    # Needs to be modified for your enviornment
    computerid=`/usr/sbin/scutil --get LocalHostName`
    # Standard parameters
    domain="domain.school.edu"               # fully qualified DNS name of Active Directory Domain
    udn="username"               # username of a privileged network user
    password="password"                         # password of a privileged network user
    ou="CN=Computers,DC=domain,DC=school,DC=edu"          # Distinguished name of container for the computer
    # Advanced options
    alldomains="enable"               # 'enable' or 'disable' automatic multi-domain authentication
    localhome="enable"               # 'enable' or 'disable' force home directory to local drive
    protocol="smb"                    # 'afp' or 'smb' change how home is mounted from server
    mobile="enable"               # 'enable' or 'disable' mobile account support for offline logon
    mobileconfirm="disable"          # 'enable' or 'disable' warn the user that a mobile acct will be created
    useuncpath="disable"               # 'enable' or 'disable' use AD SMBHome attribute to determine the home dir
    user_shell="/bin/bash"          # e.g., /bin/bash or "none"
    preferred="-nopreferred"     # Use the specified server for all Directory lookups and authentication
    # (e.g. "-nopreferred" or "-preferred ad.server.edu")
    admingroups="YOURDOMAIN\domain admins"     # These comma-separated AD groups may administer the machine (e.g. "" or "APPLE\mac admins")
    # Login hook setting -- specify the path to a login hook that you want to run instead of this script
    ### End of configuration
    # Activate the AD plugin
    defaults write /Library/Preferences/DirectoryService/DirectoryService "Active Directory" "Active"
    plutil -convert xml1 /Library/Preferences/DirectoryService/DirectoryService.plist
    sleep 5
    # Bind to AD
    dsconfigad -f -a $computerid -domain $domain -u $udn -p "$password" -ou "$ou"
    # Configure advanced AD plugin options
    if [ "$admingroups" = "" ]; then
    dsconfigad -nogroups
    else
    dsconfigad -groups "$admingroups"
    fi
    dsconfigad -alldomains $alldomains -localhome $localhome -protocol $protocol \
    -mobile $mobile -mobileconfirm $mobileconfirm -useuncpath $useuncpath \
    -shell $user_shell $preferred
    # Restart DirectoryService (necessary to reload AD plugin activation settings)
    killall DirectoryService
    # Add the AD node to the search path
    if [ "$alldomains" = "enable" ]; then
    csp="/Active Directory/All Domains"
    else
    csp="/Active Directory/$domain"
    fi
    #dscl /Search -create / SearchPolicy CSPSearchPath
    #dscl /Search -append / CSPSearchPath "/Active Directory/All Domains"
    #dscl /Search/Contacts -create / SearchPolicy CSPSearchPath
    #dscl /Search/Contacts -append / CSPSearchPath "/Active Directory/All Domains"
    # This works in a pinch if the above code does not
    defaults write /Library/Preferences/DirectoryService/SearchNodeConfig "Search Node Custom Path Array" -array "/Active Directory/All Domains"
    defaults write /Library/Preferences/DirectoryService/SearchNodeConfig "Search Policy" -int 3
    defaults write /Library/Preferences/DirectoryService/ContactsNodeConfig "Search Node Custom Path Array" -array "/Active Directory/All Domains"
    defaults write /Library/Preferences/DirectoryService/ContactsNodeConfig "Search Policy" -int 3
    plutil -convert xml1 /Library/Preferences/DirectoryService/SearchNodeConfig.plist

  • Does anyone have a wallet case that can also act like a kickstand? Supports amazon prime? Any recommendations?

    If anyone has a good case let me know! Thanks for your recommendation!

    I don't know the brand, but I have a hard case that I got from a kiosk that has a kickstand on the back.  It was cheap, but has protected the phone so far.  Sorry I don't have a brand, but just check the mall kiosks.  The one I have has a had case that snaps together around the phone, and a soft case that fits around that.  There's a cut out in the plastic case for the hard case kickstand to go through.  I use it every night, and it works perfect.  I wanted an Otterbox, but no one seemed to have them.  Hope this helps.

  • HT4859 does anyone have any idea how one can keep their data on iPad after leaving icloud as it appears that you loose all data when doing this...its killing me!!!

    does anyone have any idea how one can keep their data on iPad after leaving icloud as it appears that you loose all data when doing this...its killing me!!!

    rtilghman wrote:
    telling me to buy a new router is NOT a solution.
    And why not? Apple is selling these things like BigMacs. They can't make enough of them. You've been suffering since May because you refuse to get a decent router.
    Can you imagine if a company that makes a refrigerator told me that I needed to upgrade my electrical system to rectify a problem with their device? What kind of response IS that?!?!
    What if the problem with their device is that it requires a new-fangled "grounded" outlet and your circa 1890 house doesn't have grounded outlets. Would you refuse to purchase a $ 25 adapter on principle?

  • OMG...does anyone have a phone number that I can talk to anyone in customer service for an itune dispute on an iphone?

    OMG...does anyone have a phone number that I can talk to anyone in customer service for an itune dispute on an iphone?

    There is no telephone support for itunes. 
    Use the contact link provided in the previous post.

  • Request - Perl script that can parse an ACE config from a VIP

    Has anyone ever written a Perl script that can take the VIP from an ACE config and parse it out into the component parts of the config, ACLs, NATs, Class-map, policy-map, etc. ?
    This seems like something someone must have written already.
    Thanks in advance!

    Any reason you dont want to use XML instead of doing just PERL ?  Its lot easier to do with XML scripts as ACE has a XML interface to query whatever is needed. So that said, you can use a perl to interface ACE via XML. Here's a simple Perl that uses LibCurl:
    #!/usr/bin/perl
    use WWW::Curl::Easy;
    my $numArgs = $#ARGV + 1;
    if ($numArgs<4)
    die("Usage: shusers.pl ip_address username password command\n");
    my $ip = @ARGV[0];
    my $uname = @ARGV[1];
    my $pwd = @ARGV[2];
    my $cmd = @ARGV[3];
    my $curl = new WWW::Curl::Easy;
    my $posturl = "http://$ip/bin/xml_agent/";
    my $xml_cmd = "xml_cmd=<$cmd/>";
    $curl->setopt(CURLOPT_HEADER, 0);
    $curl->setopt(CURLOPT_FRESH_CONNECT, 1);
    $curl->setopt(CURLOPT_URL, $posturl);
    $curl->setopt(CURLOPT_RETURNTRANSFER,1);
    $curl->setopt(CURLOPT_USERPWD,"$uname:$pwd");
    $curl->setopt(CURLOPT_POST,1);
    $curl->setopt(CURLOPT_POSTFIELDS, $xml_cmd);
    $curl->perform;
    my $info = $curl->getinfo(CURLINFO_RESPONSE_CODE);
    print $info;
    Hope this helps.
    Cheers
    V.K

  • Does anyone have a simple program that will return the size of a file

    Does anyone have a simple program that will return the size of a file?

    I quite hate it when I receive the incorrect amount of yoctocandela per metre squared. Swarthy people
    can't properly convert poundal feet to barleycorn; throws off the whole conversion! Aaah, you get what
    you paid for.I recognize those figures; you've got your outsourced file sizes from Zanzibar; admit it! I always apply
    the scientific approach when I've got file sizes back from Zanzibar: I simply divide those numbers by
    pi (very scientific) and drop the eleven (ueber scientific, because 11 is prime even when looked upon
    as a binary number) least significant bits. And remember: never compare two floating point numbers
    for equality. (<--- that's a free tip)
    Jos ;-)

  • I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from A

    I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from Adobe and Windows. I have a new pc with window 8.1.

    It could be a coincidence, but I rebooted the machine and (knock on wood) PSE13 seems to be working ok.

  • Does Swing have a calendar widget that can be connected to a JFormattedText

    Does Swing have a calendar widget that can be connected to a JFormattedTextField? I want to be able to either type a date into the field, or click an arrow and choose the date from the widget.
    Thanks,
    Matt

    http://freshmeat.net/projects/jcalendar4swing/
    http://sourceforge.net/projects/jcalendar
    You will have to perform the linking to your text field yourself.

  • Does anyone have an Android phone that works with the hands free on a 2015 Honda Civic EXL -Nav?

    Does anyone have an Android phone that works with the hands free on a 2015 Honda Civic EXL -Nav?   I don't care about the HondaLink- just the hands free phone call/receive.

    My 5 starting doing this today....constant rebooting and or shutting off even after restoring to new phone.  Would love some impu!!

  • When I updated my Iphone my naviogon app was erased, and I can't figure which one I had purchased. Does anyone have any ideals how I can figure this out.

    When I updated my Iphone my naviogon app was erased, and I can't figure which one I had purchased. Does anyone have any ideals how I can figure this out.

    App Store > Updates > Purchased > Not On This iPhone.
    Should be in the list.
    tt2

  • HT3275 does anyone have step by step instructions for how to replace .sparsebundle to make time capsule with time machine work again.   i accidently deleted it  thank you

    does anyone have step by step instructions for how to replace .sparsebundle to make time capsule with time machine work again.   i accidently deleted it  thank you

    Error message Pop-up reads:
    Time Machine could not complete the backup
    The backup disk image "/Volumes/Data-1/myname.sparsebundle" could not be accessed (error - 1)

  • Does anyone have a PPC mini that goes to sleep based on the timer?

    Problem is that my mini won't go into sleep mode per the set minutes on the system preferences energy pane. I've searched and read the other posts on this.
    Configuration is PPC mini, Apple USB keyboard, Microsoft intellimouse, and Eizo CRT display. No bluetooth or other hardware. Latest Microsoft mac mouse driver (had same issue without current Microsoft driver). Hardware test doesn't show any problems, and there's nothing to indicate any hardware issues. Latest OS X update was done with the combo updater. Have reset the power management unit (PMU). Have not called Apple yet.
    With the sleep settings set on the energy saver pane, I've tried detaching the keyboard and mouse, together and individually, and that didn't change anything. What happens is that the display will shut off at the appointed time, however, the mini won't enter itself into sleep mode. I can manually put it to sleep by clicking blue apple, sleep or by pushing the power button.
    I'm scratching my head on this.....so I don't take it personally, does anyone have a mini that does go into sleep as scheduled? Appreciate any suggestions on anything else to look at.

    Doug,
    I had already started along that path, by removing the Microsoft mouse driver (which didn't fix the problem). However, starting the system in safe mode was a good baseline, as it went to sleep as it should - confirming a software-related issue.
    I figured it would actually be easiest to shoot this bug by starting from scratch with an erase and install. After each tweak (ie, turn firewall on), software add (ie, clamXav), or update to the system, I tested it's sleep ability. And I found the bug/issue.....checking 'enable firewall logging' under the advanced options on the firewall tab, in the sharing preferences pane. No kidding. Stealth mode and UDP can be checked, just not firewall logging. Dunno why, however, the world is now at peace, able to sleep as needed.

  • Does anyone have a black N82 that's working fine?

    I'm deciding on buying a black N82 soon, but I'm still deciding if I would rather prefer the Bold 9000 over the N82. I was just wondering after seeing all these topics about problems with N82, black, that does anyone have one that's been working fine for a while now?
    Thanks.
    Edit: Also, I was wondering after reading some reviews about the N82, are the cases all plastic? And if so, are they good quality? Meaning do they feel sturdy and not cheap?
    What are the pros and cons about the N82, and after listing them and experiencing them, would you still recommend this as a buy?
    And I've also heard that this phone doesn't support US 3G, is this true?
    Thanks again.
    Message Edited by drewhy on 25-Aug-2008 07:16 PM

    I work in telecommunications, so I often get to test the different stuff that is on the market, and I picked the N82 because it was proving to be the most stable and reliable of Nokia's smartphones. Nokia has the most extensive range of any of the big manufacturers, and whatever you may read against Nokia from some less-experienced users on this forum, reliability and updates are no picnic on other companies' smartphones (and here it is important to distinguish between a normal GSM phone and a smartphone - the latter has a limited OS that runs preinstalled apps plus a few JAVA apps; whereas a smartphone is much closer to a computer than a mere phone.
    Aside from the basics of making and receiving calls and messages, I use a lot the camera, music/video players, mobile internet and sat-nav.
    I have taken some fantastic photos with the camera, ignore the 5MP - this is just a technicality, most cameraphones can't begin to compete with a standard digital camera of similar specs. I have found the picture quality of this phone sharp with excellent colour quality, even in poor light which is one area where most cameraphones (inlcuding my old SE K800i) fall down. One downside is that the shutter speed is slow in most modes - I have some brilliant shots of the Red Arrows' smoke trails from the recent Sanicole airshow at Hechtel, but the planes themselves proved pretty elusive, so is lacks a bit when taking action shots.
    The video quality of the camera is also good, it produces excellent VGA-quality video (which is good enough to watch through the TV with the provided cable), though sound reproduction could perhaps be a little better.
    The phone plays MP4 movies vey well, and music playback is also good - the sound from the stereo speakers is reasonable for such a device, and the headphones produce good sound (there are lots of people moaning with all modern phones that volume levels are not high enough, but in twenty years time they'll be thanking today's phones for not deafening them). The only catch is that the music player isn't always very versatile to use. I have a language course CD copied onto my memory card which I tend to access through File Manager. Having said that, I have yet to encounter any phone with a really good music player; they are designed to play music whilst you're mobile, they don't seem to imagine that you might be on a work break, in a hotel or just relaxing in in the garden and so be in a position to take more personal control over your music.
    The internet is brilliant, as the phone has a good inbuilt WLAN system. I live in Belgium, where the mobile internet is expensive, so I rely on being able to use my home or work WLAN or hotspots out in the town. Unlike most mobiles, S60 smartphones have a proper web browser that can view web sites almost as a PC would (allowing, of course for the smaller screen size), and it is much better than the Microsoft Mobile Internet Explorer that I've used in some PDAs and other branded smartphones. The only real snag (which is common in the breed) is that you can't update things like Flash so if a new version comes out, you have to wait for a full software update to the phone and hope it contains this updated feature.
    Another thing I use more and more in preference to the old system I have is the Nokia Maps sat-nav system, even N82s sold with the latest software (v20) come with the old 1.2 version, but update it to 2.0 and it is maturing into a nice package. The only real snag here is the size of the screen, though it did let me down last week on the way home from Antwerp when I left the road due to roadworks and I had to pull up in a service area and restart the app to make it recalculate the route. Only one problem in four months, though, I can forgive that.
    I handle phones of different types all day at work, and I definitely don't regret buying this one.

  • Does anyone have an actual date that these wonderful new iPod Touch 5th generation will be avaiable?

    Does anyone have an actual date in October when tese wonderful new iPod Touch 5th generation wil be avaiable?

    Try charging the ipod touch on a wall charger and make sure the outlet is working. And leave it there for 10 minutes.
    Or try holding the power and home until apple logo appears.

Maybe you are looking for