Another Dial Challenge!

I've got a new Challenge for you guys, hoping you can help me out with this dial.  Also, as always I will need very clear instructions as I am by no means a master at Illustrator, not sure I will ever move from the "beginner" class.  But anyways, here it is and the numbers are not an issue, but everything else needs to be recreated as close to the original as possible but no need for "exact" as this dial was probably hand drawn back then as most are.
Only the clock face is needed, not the surrounding black area and the tiny holes on each side as well as the larger hole in the middle are not an issue, those are registration marks.
thanks guys!!!

Jber,
Using the original dial as a locked template and having Stroke>Cap and Join set to Round, you may (Smart Guides are your friends):
1) Create the rays as follows, every time adjusting the Stroke Weight to fit the original:
1a) Drag horizontally with the Line Tool to create a horizontal line longer than the dial, then Object>Path>Add Anchor Points;
1b) Rotate copies by 30 degrees until you have all the rays;
1c) Centre the rays over the centre of the original;
2) Create the outermost ring shape as follows:
2a) First create a rectangle with the right height (fitting the horizontal segments) and as long as the horizontal ray, then Object>Path>Add Anchor Points once;
2b) Then create a line between the middle Anchor Points of the vertical segments in the sides (you can do that with the Line Tool, dragging from one to the other, Smart Guides say anchor);
2c) Then create a circle with the centre at the middle of the leftmost bend (at 9) and fitting the rightmost bend (from 2 over 3 to 4), it should fit reasonably well, keeping the centre on top of the line created in 2b) (Smart Guides say path), you may adjust size and move the centre horizontally if needed to fit;
2d) Then copy the circle from 1c) and move its centre to the centre of the rays Smart Guides say anchor) and then Object>Transform>Move and press Enter (this will repeat the move to fit the other bend);
2e) Then select both circles and the rectangle and Pathfinder>Divide and Object>Ungroup and delete all the redundant parts;
This should give you the finished outer ring;
3) Cut the rays as follows:
3a) Select each ray and click on it with the Scissors Tool where it crosses the outer ring (Smart Guides say anchor or path);
3b) Select the redundant outer parts and delete them;
4) Create the inner ring as follows:
4a) Object>Path>Offset Path with a negative value equalling the distance between the outer ring and the inner ring, first attempt;
4b) Undo and redo until you have it right;
This should give you the finished inner ring;
5) Create the central part as follows:
5a) Object>Path>Offset Path with a negative value equalling the distance between the inner ring and the central part, first attempt;
5b) Undo and redo until you have it right;
5c) Give the central part a fill;
This should give you the finished central part, and thereby the whole dial.

Similar Messages

  • Another computer challenge solved - Learned something new today

    Everyday I like to challenge myself with something new all the time. I recently got an Acer Aspire X1200... Not to long ago. Vista has kind of been a pain on this desktop. Im very much suited to Windows XP for my multimedia needs. However there was an issue. I tried booting from a Windows XP SP2 disc but got a dreaded stop error. It turns out that AHCI or SATA is not integrated.
    I took care of this by using a program called NLITE and integrating the NVSATA drivers into the installation. I was afraid at first that I was going to mess up things and make them work. But low and behold, I managed to slipstream them right on the first try (following directions carefully and kept rereading)
    Within minutes I had a Windows XP SP2 install disc with integrated Nvidia Raid/SATA drivers and was able to proceed with installation. Im amazed with how XP runs on this machine , its a 5x improvement!
     My Guitar Hero Game works 50% better, its wonderful.
    The only problem in my way was the activation issue, because my key was tied to a previous computer , but someone nice at Microsoft deauthed that computer it was on and made the one i installed on the primary licensed machine.
    Well I am happy for the weekend. Its feels like I upgraded from a PS2 to an XBOX 360!
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

    A MUCH simpler way to deal with that problem is to go into your BIOS and you can  usually set it to see a SATA drive as IDE
    If you like my post, or solution to your issue/question, go ahead and click on the little star by my name and/or accept the post as the Solution. It makes me happy.
    I'm NOT an employee of Best Buy, or Geek Squad, though I did work as an Agent for a year 5 years ago. None of my posts are to be taken as the official stance that Best Buy will take on your situation. My advice is just that, advice.
    Unfortunately, that's the bad luck of any electronic, there's going to be bad Apples... wait that's a horrible pun.

  • How do i write this in sql ? (another headcracker challenging  report)

    hi guys!,
    I need to create / generate a report. I intend to do all this with pure SQL alone.
    Been cracking my head for days but to no avail.
    Hope you gurus here will straightened me out.
    Here it goes. i Have a table
    TABLE USAGE_REPORT
    Date DATE -- everyday's date
    BalanceCF NUMBER -- an initial start amount or ( balancebf)
    Topup_amount NUMBER -- amount of topup that day
    Usage1 NUMBER -- amount of $ use on certain prod
    Usage2 NUMBER -- amount of $ use on certain prod
    BalanceBF NUMBER -- BalanceCF + topup - usage1 -usage2 (which is also the next date BalanceCF)
    Example1
    please see this link
    http://img9.imageshack.us/img9/708/88149028.gif
    asumming my sql is
    WITH dates AS
    SELECT TRUNC(SYSDATE) + level dmy
    FROM DUAL CONNECT BY level < 366
    TopUP as
    SELECT trunc(purchase_date) dated, sum(payment_amount)
    FROM purchase
    GROUP by trunc(purchase_date)
    Usage1 as
    SELECT trunc(connect_date) dated, sum(charged_amount)
    FROM tab1
    WHERE prod_id = 'xxx'
    GROUP BY trunc(connect_date)
    Usage2 as
    SELECT trunc(connect_date) dated, sum(charged_amount)
    FROM tab2
    WHERE prod_id = 'yyy'
    GROUP BY trunc(connect_date)
    SELECT * FROM DATES D
    LEFT OUTER JOIN TOPUP T
    ON (D.DMY = T.DATED)
    LEFT OUTER JOIN USAGE1 U1
    ON (D.DMY = U1.DATED)
    LEFT OUTER JOIN USAGE2 U2
    ON (D.DMY = U2.DATED);
    however
    q1) how do i start 'initiate' the 1st row
    BALANCECF so that i can do the calculation
    of
    BALANCECF + TOPUP - USAGE1 - USAGE2 = BALANCEBF
    q2) how do i bring the value of BALANCEBF into the 2nd row of BALANCECF to do further calculation ?
    q3) is it has something to do with connect by ? parent-child relationship
    q4) in short how do i make it look like the attach pic above?
    Please help!
    Best Regards,
    Noob

    I am using 200 as initial balance_cf. You did not provide sample data, so code below is not tested:
    WITH dates as (
                   SELECT  TRUNC(SYSDATE) + level dmy,
                           200 balance_cf
                     FROM  DUAL
                     CONNECT BY level < 366
         topUP as (
                   SELECT  trunc(purchase_date) dated,
                           sum(payment_amount) topup_amount
                     FROM  purchase
                     GROUP by trunc(purchase_date)
        Usage1 as (
                   SELECT  trunc(connect_date) dated,
                           sum(charged_amount) usage_amount
                     FROM  tab1
                     WHERE prod_id = 'xxx'
                     GROUP BY trunc(connect_date)
        Usage2 as (
                   SELECT  trunc(connect_date) dated,
                           sum(charged_amount) usage2_amount
                     FROM  tab2
                     WHERE prod_id = 'yyy'
                     GROUP BY trunc(connect_date)
    SELECT  dmy,
            balance_cf + sum(topup_amount - usage1_amount - usage2_amount) over order by dmy rows between unbounded preceding and 1 preceding) balance_cf
            topup_amount,
            usage1_amount,
            usage2_amount,
            balance_cf + sum(topup_amount - usage1_amount - usage2_amount) over order by dmy) balance_bf
      FROM  DATES D LEFT OUTER JOIN TOPUP T ON (D.DMY = T.DATED)
                    LEFT OUTER JOIN USAGE1 U1 ON (D.DMY = U1.DATED)
                    LEFT OUTER JOIN USAGE2 U2 ON (D.DMY = U2.DATED)
      ORDER BY dmy
    /SY.

  • Another grep challenge

    OK I thought this would be easy but I'm stumped.
    I need to apply a style to the "x" character. So I only need to select "x" when its between a tab character and an en space. and not select it if it's on the right side of that en space. for example if there was an "x" in "gas" I would want to skip that one.
    maybe where the x doesn't have [A-Za-z] before or after it?
    y

    awesome!
    (?<=[^a-zA-Z])x(?=[^a-zA-Z])

  • Set-up Challenge

    Alright, here's the deal.
    I've got 65GB of music on my internal hard drive in iTunes on my desktop Mac.
    What I need is an external hard drive that I can backup all my stuff on, but most importantly iTunes.
    I then need to be able to plug the hard drive into a windows laptop, and use iTunes for Windows to read and play the music from the external HD from within the iTunes player. (With this much music, i can't copy all the music onto the laptop's hard drive.)
    So does anyone have any ideas how to make this work? And which hard drive would you recommend? I was looking at the Maxtor One Touch II. I need around 200GB.

    I'll start with the 'what drive' question - I believe it to be a matter of personal preference. I'd had good and bad luck with Maxtor, Western Digital and LaCie drives. I like them all and over time have had a failure or have a friend who has had a failure with all of them.
    As for the 'the backup files and use for iTunes' plan, the challenge I see is that Windows machines don't read Mac drives. So, I think you would need to partition the drive into one HFS+ and one FAT32 format (If this is possible). Then, use a backup utility to backup everything except your music to the Mac partition and manually copy your music files over to the Windows partition. You can use the Advanced Preferences settings to point your laptop. There is an extra challenge here in keeping track of which music has been backed up. You can use iTunes to help by entering a Grouping for all files that have been backed up and then a Smart Folder to show what's new.
    Another, less challenging (IMHO) solution would be to get a cheap router and network the machines. Then, all you need to do is Enable Music Sharing and you can play the Mac iTunes from your Windows laptop. If you go this way, I recommend getting the external anyway and backing up all your data with a nice utility like Backup or Retrospect.
    G5 iMac, G4 iMac, G3 iBook, 60Gb 4G & 30Gb 3G iPods   Mac OS X (10.4)  

  • Challenge #139

    Dave Dahlberg has presented another wonderful challenge. please have fun
    with this one. And let me know if anyone uses Elements 4. Beta testers
    welcome.
    Since my hard disk failure I have had some wonder Challenges
    suggestions submitted by a few people . I need more suggestions from more
    people to be able to mix up the choices. Please send me *your*
    suggestions for the Challenges. Part of what makes the Challenge great
    is your input. Also please don't forget he Photo Challenge as
    presently I have only one suggestion although it is a great one but I do
    need more.
    http://www.cavesofice.org/~grant/Challenge/Challenges.html
    Present and Past Challenges will remain Until tomorrow at 7:00 pm the then
    the Present will be Past and new images will be posted.
    * Important notice to all the new people in this forum. This is not a
    close shop you are all invited to submit an image. If you don't think you
    are good enough this is your first mistake, I think most have found that
    working on the Challenge has improved their personal level. So young and
    old, hot shots and cool dudes now is you time to post.
    Grant
    Home Pages: http://www.cavesofice.org/~grant/Challenge/index.html
    Challenge Pages: http://www.cavesofice.org/~grant/Challenge/Challenges.html
    Creativity is so delicate a flower that praise tends to make it bloom, while
    discouragement often nips it in the bud. Any of us will put out more and
    better ideas if our efforts are appreciated.
    Alexander Osborn (1888 - 1966)

    Aaron ... Very nice image. Really imaginative and well blended.
    Alex ... Every week I can't wait to see your animations. You do them so well ... couple of really good ones this week :) No 3 and 4 are excellent, I keep trying to work out how you have done them but I just haven't a clue ... so how did you do get that effect :)
    Anne ... Oh No 1 is so cute ... you have done a really good job with it. Well done!! No 2 is really imaginative .. I don't know how you did the texture on the snake but its brilliant!
    Ben .. Neat and beautiful blending. Really good work!
    Bob ... That is beautiful ... the colours are really good and that reflected colour just makes it :) ... Oh Bob how did you do No 2?? It is great ... it just looks as though you painted it.
    Brice ... Nice work on linking the sculptures and that effect is so different ... it almost looks like an outer glow overlayed over a pattern. How did you do it?
    Chris ... I like the heraldry .. there are some really good touches in there. I especially like the little tents with 4,5 and is it 6 in them :) ... The meaning is a little gem and the motto really did amused me ... go away indeed :) No 2 ... love the candle holders and the rest of the image is brilliant too !!
    Cliff .. Oh that does look nice ... very nice colours and a well thought out theme.
    Dave .. No 1 has a almost surreal quality ... well done!! and No 2 with the motion blur is really good too. It really is a good effect
    Dick ... No 1 is so effective. It makes an excellent image ... I especially like the colours you have introduced to the marble. No 2 almost looks like an eye ... did you use threshold to get that effect on it. Nice work on the frame too :)
    Lisa ... Well done. It is a great effect ... how did you get such a smooth looking shape?
    Malcolm ... I like the dark background and the light castle and sculptures ... it looks good. How did you do it?
    Marilyn ... You have excelled yourself with this one ... it is just so beautiful. I would love to know how it is done?
    Melissa ... Very original theme in No1, well put together and makes a really good challenge entry. Good work ! No 2 is also good ... you have blended the extras in so well.
    Pauline ... What a good idea. They make a good set of matching jewelry and I also really like the background you have made. Good work :) ... No 2 looks as thought it should be on display in a modern art gallery ... very nice
    Rita ... Oh that is really good. Its a great idea and so well done ... !! The colours of the background are a perfect foil for the colours you have introduced into the slices :) and the textures are so good!
    Tawana ... That did make me smile ... nice one!!
    Tab ... Good use of the image and a neat background ... did you use gradient set to difference for it?
    Terri ... Oh Wow that is just stunning, it just looks like they are stuck onto the box and the rest of the images is amazing too ... Please tell me how you did it
    Thomas ... Good work on finding a new home for the sculptures .. it looks good !
    Tom ... Excellent tidy up job with some good touches in there. I especially like the added apple ... and the embossing :) No 2 had a wonderful dreamy quality to it and again some great little touches in there .. love the join on the two sculptures ... looks very good.
    Ward ... What cute snakes ... you can almost see the love in their eyes! ... and very topical entry in No 2. Good work on it!!
    Will ... That looks just like swan beating its wings. You have done it really well and the misty effect just makes it. Neat effect in No 2 ... the image lends itself to the painterly look :)
    Wendy

  • ACS 5.3 WLC Certificates RADUIS Active Directory

    Hi,
    I have a wireless controller and an ACS 5.3. I would like to create a wireless network where a corporate laptop would use the certificates installed to connect to the wireless and then authentication with AD and laptop certificates to the ACS. So if a user from work brings a home laptop this won't be able to connect as they don't have a certificate installed on the laptop.
    I have setup ACS to connect to AD.
    I have added the local certificate with my company's CA
    acs.blah.com
    acs.blah.com
    SubCA3-1
    09:50 28.09.2012
    09:50 28.09.2018
    EAP, Management Interface
    I create a very simple rule and then try connect through the laptop. I select the certicate on the client and click connect. The connection works fine and I am on the network.
    Authentication Summary
    Logged At:
    October 2,2012 3:06:37.996 PM
    RADIUS Status:
    Authentication succeeded
    NAS Failure:
    Username:
    blah\Eddy
    MAC/IP Address:
    18-3d-a2-26-7f-b9
    Network Device:
    L39-WC-5508-01 : 10.49.2.150 :  
    Access Service:
    WirelessAD
    Identity Store:
    AD1
    Authorization Profiles:
    Wireless AD
    CTS Security Group:
    Authentication Method:
    PEAP(EAP-MSCHAPv2)
    I then just try a laptop I brought from home I used my AD username and password and this also connected. This Laptop doesn't have a certificate how can I make it so only work laptops with certificates be allowed to connect to the wireless?
    any help would be great happy to send screen shots of my setup.
    Cheers
    Eddy

    Hi Guys,
    Well I configured the ACS following Scott's information, and I then tried to connect with the laptop and I got this.
    Logged At:
    October 12,2012 2:50:17.866 PM
    RADIUS Status:
    Authentication failed : 15039 Selected Authorization Profile is DenyAccess
    NAS Failure:
    Username:
    blah\eddy
    MAC/IP Address:
    00-21-6a-07-31-88
    Network Device:
    -WC-5508-01 : 10.10.2.10 :  
    Access Service:
    WirelessAD
    Identity Store:
    AD1
    Authorization Profiles:
    DenyAccess
    CTS Security Group:
    Authentication Method:
    PEAP(EAP-MSCHAPv2)
    I copied the two rules used in the setup by Scott and I still get this. I have copied and pasted the logs below any ideas on how to get this to work? I dont have MARS is MARS required for this PEAP setup?
    24423  ACS has not been able to confirm previous successful machine authentication for user in Active Directory
    Evaluating Identity Policy
    15006  Matched Default Rule
    15013  Selected Identity Store - AD1
    24430  Authenticating user against Active Directory
    24416  User's Groups retrieval from Active Directory succeeded
    24101  Some of the retrieved attributes contain multiple values. These values are discarded. The default values, if configured, will be used for these attributes.
    24420  User's Attributes retrieval from Active Directory succeeded
    24402  User authentication against Active Directory succeeded
    22037  Authentication Passed
    Evaluating Group Mapping Policy
    11824  EAP-MSCHAP authentication attempt passed
    12305  Prepared EAP-Request with another PEAP challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12304  Extracted EAP-Response containing PEAP challenge-response
    11810  Extracted EAP-Response for inner method containing MSCHAP challenge-response
    11814  Inner EAP-MSCHAP authentication succeeded
    11519  Prepared EAP-Success for inner EAP method
    12314  PEAP inner method finished successfully
    12305  Prepared EAP-Request with another PEAP challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12304  Extracted EAP-Response containing PEAP challenge-response
    12306  PEAP authentication succeeded
    11503  Prepared EAP-Success
    24423  ACS has not been able to confirm previous successful machine authentication for user in Active Directory
    any ideas guys?
    thanks for the help.

  • I bought my Iphone 4 from Sprint. I have little or no internet service. When I go into extended network areas, my phone sends old text messages to my friends, repeatedly. Is this a Sprint issue?

    I bought my I-Phone 4s from Sprint. The salesman raved about how much faster my internet would be with Sprint, also told me 4g was being added my area, and it would be even faster. Well now 4g is here. All of my friends on AT&T enjoy 4g, while I am only getting 3g, my internet is so slow, I rarely use it!
    Last week I visited the Sprint store where I purchased my phone, to find out what the problem was. They told me NONE of the I-Phones were capable of getting 4g??????  Wow, Has anyone else been blatantly lied to by Sprint.
    The other issue I am having is: every time I leave my home area, and go into the extended area network, and then return into my home area, my phone starts resending old text messages to my friends, that they had recieved days ago!. Of course the Sprint Personnel argued with me and said those were just messages that never went through the first time. I have screenshots of the duplicate messages from my friends, phones.
    My I-Phone was great for the first 2 months. this month my I-Phone has completely quit 3 times, Sprint says a tower is down every time I call in to report it.
    Is anyone else having these problems with the I-phone 4s?

    You are not alone on issues related to weak signals.  It happens to us all regardless of the carrier in the US. 
    I have an iPhone4, legally unlocked with replaceable SIM that I use here In Australia, the US and Europe.  I simply replace the SIM to phone accounts in other countries.  Do have issues at home here in Australia from time to time, but many more problems in the US than any other country.
    When the signal is weak, ususally 1 bar the phone does not have enough power to stay connected.  It will attempt to receive and send, but is trying to process so much that the signal cannot cope. 
    If any employee from Sprint, ATT or any other carrier attempts to tell you it is you and not their system they are out right lying.  Just as they lied when they told you that the iPhone was 4G.  Some try to get around the issue by saying 3GLite, but that really does not apply either because of the mobiles frequency range. 
    In fact the Australian government fined Apple AUD$2.25 million + $330,000 in costs for advertising that the new iPad was 4G and LTE, which it is not.  There is currently another legal challenge over the iPhone4S.
    If you have anything in writing from Sprint that says 4G then you need to contact your states attorney general.  At least file a complaint with both Sprint and the FCC.  If they tell you it is 4G then they either are lying or they do not have a clue to the mobile.
    When the signal is weak the phone keeps attempting to send anything that you have sent.  Sometimes that means multiple sends if the signal keeps dropping to low and it has to try all over again.
    One way around the problem is by using an internet or data based app like Viber or WhatsApp.  Both are voice, text and data Apps that will use Wi-Fi first then 3G if Wi-Fi is not available.  Because they use the data side of your mobiles plan it does not take as much power or size to receive or send.  Plus, because they are primarily Wi-Fi then data bases they do not use as much time or text units.  You can find them online or through the Apple App Store.
    Iv used Viber for years because I can use it overseas or talk, video, text or msg internationally without use of any mobile plan time.
    Rember to that in the states you have I think 72 days to return a mobile to the carrier without any charges. 
    I use ATT in the states and when I am at home here I get almost no signal ... I depend 99% on Viber or WhatsApp to even talk.

  • FTP get operation doesn't work. However put and syncRead works.

    Hello SOA Gurus,
    Here is the another strange challenge I faced today with FTP adapter.
    I have a JNDI which is commonly used to access an FTP server. Initially, I created one BPEL process that uses "put" operation to write a file into the FTP directory. It worked successfully.
    But when I used "get" operation with the same JNDI, it doesn't work there. However, I am consistently getting the below error messages in the server log:
    <Nov 28, 2014 4:20:48 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:20:48 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:21:18 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:21:18 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:21:48 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:21:48 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:22:18 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:22:18 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    Any help would be appreciated. Thanks in advance.

    Hello!
    Can you check if this oracle metalink note 754029.1 is applicable?
    Though it talks of very old version of SOA but the changes are advised to make on FTP server.
    Hope it helps!
    Thanks

  • ISE 1.2, Patch 7: "NAK requesting to use PEAP instead"

    We're experiencing seemingly random occurrences of users failing authentication because they're trying PEAP vs EAP. Does anyone know if it is possible to force the Windows supplicant to use EAP only?
    For what it's worth, the user can fail authentication for hours and I can either allow open authentication on the port for a bit, or the user can leave for the day and come back tomorrow and authentication will succeed. I'm not sure if it's an ISE problem or a supplicant problem, but I'm leaning towards supplicant.
    Personas:
    Administration
    Role:
    PRIMARY(A)
    System Time:
    Apr 24 2014 08:26:58 AM America/New_York
    FIPS Mode:
    Disabled
    Version:
    1.2.0.899
    Patch Information:
    7,1,3
    11001
    Received RADIUS Access-Request
    11017
    RADIUS created a new session
    15049
    Evaluating Policy Group
    15008
    Evaluating Service Selection Policy
    15048
    Queried PIP
    15048
    Queried PIP
    15004
    Matched rule
    11507
    Extracted EAP-Response/Identity
    12500
    Prepared EAP-Request proposing EAP-TLS with challenge
    12625
    Valid EAP-Key-Name attribute received
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12301
    Extracted EAP-Response/NAK requesting to use PEAP instead
    12300
    Prepared EAP-Request proposing PEAP with challenge
    12625
    Valid EAP-Key-Name attribute received
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12302
    Extracted EAP-Response containing PEAP challenge-response and accepting PEAP as negotiated
    12318
    Successfully negotiated PEAP version 0
    12800
    Extracted first TLS record; TLS handshake started
    12805
    Extracted TLS ClientHello message
    12806
    Prepared TLS ServerHello message
    12807
    Prepared TLS Certificate message
    12810
    Prepared TLS ServerDone message
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    12318
    Successfully negotiated PEAP version 0
    12812
    Extracted TLS ClientKeyExchange message
    12804
    Extracted TLS Finished message
    12801
    Prepared TLS ChangeCipherSpec message
    12802
    Prepared TLS Finished message
    12816
    TLS handshake succeeded
    12310
    PEAP full handshake finished successfully
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    12313
    PEAP inner method started
    11521
    Prepared EAP-Request/Identity for inner EAP method
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    11522
    Extracted EAP-Response/Identity for inner EAP method
    11806
    Prepared EAP-Request for inner method proposing EAP-MSCHAP with challenge
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    11808
    Extracted EAP-Response containing EAP-MSCHAP challenge-response for inner method and accepting EAP-MSCHAP as negotiated
    15041
    Evaluating Identity Policy
    15006
    Matched Default Rule
    15013
    Selected Identity Source - *****
    24431
    Authenticating machine against Active Directory
    24470
    Machine authentication against Active Directory is successful
    22037
    Authentication Passed
    11824
    EAP-MSCHAP authentication attempt passed
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    11810
    Extracted EAP-Response for inner method containing MSCHAP challenge-response
    11814
    Inner EAP-MSCHAP authentication succeeded
    11519
    Prepared EAP-Success for inner EAP method
    12314
    PEAP inner method finished successfully
    12305
    Prepared EAP-Request with another PEAP challenge
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12304
    Extracted EAP-Response containing PEAP challenge-response
    15036
    Evaluating Authorization Policy
    24433
    Looking up machine in Active Directory - host/*****
    24435
    Machine Groups retrieval from Active Directory succeeded
    15048
    Queried PIP
    15048
    Queried PIP
    15048
    Queried PIP
    15048
    Queried PIP
    15048
    Queried PIP
    15004
    Matched rule - Default
    15016
    Selected Authorization Profile - DenyAccess
    15039
    Rejected per authorization profile
    12306
    PEAP authentication succeeded
    11503
    Prepared EAP-Success
    11003
    Returned RADIUS Access-Reject 

    salodh,
    Thank you for your response. Below is the authorization policy it should hit. The trouble is the workstation wants to use PEAP for some reason but we don't want PEAP because we're certificate-based. I understand what you're saying, and it's because I didn't word my question correctly. 
    12500
    Prepared EAP-Request proposing EAP-TLS with challenge
    12625
    Valid EAP-Key-Name attribute received
    11006
    Returned RADIUS Access-Challenge
    11001
    Received RADIUS Access-Request
    11018
    RADIUS is re-using an existing session
    12301
    Extracted EAP-Response/NAK requesting to use PEAP instead 
    If the NAK would not request PEAP, it would continue on to the following Authorization Policy (and succeed):
    Name
    Wired-******-PC
     Conditions
    Radius:Service-Type EQUALS Framed
    AND
    Radius:NAS-Port-Type EQUALS Ethernet
    AND
    *******:ExternalGroups EQUALS **********/Users/Domain Computers
    AND
    Network Access:EapAuthentication EQUALS EAP-TLS
    Again, this PEAP request only happens occasionally. This same workstation will work at other days/times. If I could figure out why some workstations randomly request PEAP (or find a way to force EAP only) I think that would take care of it.
    Thanks again, sir.
    Andrew

  • Using Manifest File in PowerBuilder 5

    Hi,
    We are working in an old project which was developed in PowerBuilder 5.0,
    We followed the below steps to get the list of DLL and OCX getting register with our Application
    1. Searched in application installation path.
    2. Searched in source code.
    Is there any other way to get the list of components and reference list?
    We need the above list to create manifest file.
    We have another big challenge that whether Manifest file is work with PB5 or not? If yes,how to make PB5 app to communicate with manifest?
    Please help...
    Thanks,
    Sundar

    Roland,
    Please help me to find third party DLL and mention the DLLs to be register.
    I hope that the below dlls are related to PowerBuilder 5.0 and need not to register
    Pbbgr050.dll, Pbdbt050.dll, Pbdwe050.dll, Pbodb050.dll, Pbroi050.dll, Pbrtc050.dll, Pbrte050.dll, Pbrtf050.dll, Pbshr050.dll, Pbtyp050.dll
    I have doubt on following DLLs and ocx
    msvcrt.dll, MSVCRT40.dll, OLEPRO32.dll, Pfccom32.dll, CTDATE32.ocx
    Please confirm above 4 DLLs and 1 OCX are need to register?
    Thanks,
    Sundar

  • HT4667 How to disable IPv6 on MAC OS X Lion?

    Hi everyone,
    I am using Macbook Air OS X Lion. I have been facing slow internet browsing problem from quite a while now. I checked the forums and found that lot of people are facing the same problem. Also found that disabling IPv6 or setting it to manual mode will help fixing the issue. But another big challenge is how to do it. I tried setting it to manual which would need router address, IPv6 address and prefix length which is supposed to be collected from your ISP. Unfortunately Comcast hasnt implemented IPv6 yet so couldnt find that information. Also couldnt find the disable option as mentioned in one of the Apple article.
    So I am stuck with Macbook air with slow internet speed. If anybody could help, it would be much apprecaited.
    Thanks,
    SJ

    robughblah wrote:
    see https://answers.syr.edu/display/network/Disable+IPv6+on+Mac+Lion+and+Mountain+Li on
    This solved my problem.  Thanks

  • Commit across multiple workspaces

    Hello.
    I have an adf 12c application, which I have splitted into several workspaces. The current structure of the application is based on the book https://blogs.oracle.com/jdevotnharvest/entry/adf_enterprise_application_development_book.
    So currently i have workspaces for:
    1. extenstion of the framework base classes
    2. model (EO, VO...)
    3. workspace for menu, topbar and main area.
    4 several workspaces for different areas of the application
    workspaces that is in the category 4. is places as a dynamic region on to the main area of workspace 3.
    The question is how can I have commit and rollback buttons at the topbar which is located workspace 3. That allows for commit or rollback of changes in the workspaces at category 4.
    I have tried simply drag and drop from the application module on to the topbar but nothing gets committed in the workspaces of the dynamic region.
    I have also tried getting the BindingsContainer of the currently shown fragement in the dynamic region and then using the commit opreation that has been bound to that jsf fragment. Also without luck.
    same story for the rollback operation.
    If I place the commit and rollback on each fragement they work, but i really want the buttons to be at one single place in the topbar all the time.
    I am using Jdev 12.1.2.0.0 and the integrated weblogic.
    TIA

    Ian - You can use a different schema for each application while keeping the applications in a common workspace. This would allow users to authenticate once and for the applications to share the same authenticated session. In doing this, however, a user has to be given links from one application to another, e.g., from a menu page, in order for the "session continuity" to remain unbroken (a requirement to prevent another login challenge). But since these may be unrelated applications that have no need to access one anothers' session state, it might be better to use Single Sign-On. With this method there is only one login required and a user can access each application which will maintain its own private session.
    Scott

  • Ethernet configuration with SMC router and Titanium

    This concerns a Titanium Powerbook G4/500 and an SMC 2804WBR router.
    I plugged in a known-working Ethernet cable, and in System Preferences/Network, under Network Status for Built-In Ethernet, I got the message "The cable for Built-In Ethernet is not plugged in." A hardware test shows the Ethernet port to be functioning, but the TCP/IP tab, set for Using DHCP, shows no IP address, subnet mask, or router address. Renewing DHCP lease accomplishes nothing.
    I went to the Ethernet tab and set the drop-down to Manually (Advanced) instead of Automatic. With a little experimentation I found that 10baseT/UTP in either full- or half-duplex connects with the router and lets the machine go on the Internet, but 100baseTX will not. The router lights for link and 100baseTX go on, but no addresses appear in the TCP/IP tab.
    I use 100baseTX with a G4 and a Pismo Powerbook, so I know the router can work just fine at that speed using an Ethernet cable. Is there some glitch or weirdness peculiar to the original G4 Powerbook that won't allow it to communicate with the router at full speed? Is there some configuration through Terminal or elsewhere that will fix that?

    Hi,
    the PVDM is used when you E1/T1 interface. in your scenario you need to configure SIP trunk between your Voice GW and ISP.
    you need to confirm the below settings:
    Codec
    SIP sever ip address
    DTMF
    you will create voip dial-peer toward your ISP and another dial-peer toward your call manager.
    in this you are deploying CUBE. you need to configure
    voice service voip
          allow sip to sip
    don't forget to add CUCM and ISP in the trust list under voice service voip
    HTH
    Anas
    don't forget to rate the helpful posts

  • Problems saving password in Mail app for AOL mail

    I'm helping someone set up there Apple Mail app so they can access their AOL mail from it. I followed the instructions people have posted on the boards here but for some reason i can't get it to save the password. If i go into Mail prefs the accounts and enter the password then save it for some reason it won't save it. If i quit Mail then relaunch it the password is gone. Also when i enter the password in the the password window and then ckick on the remember in keychain it won't save it. I open the keychain utility and there's nothing in there for Mail. Just a wi-fi password.
    Any ideas?
    thx

    You're Welcome lenn!
    I honestly can't say, as I do still use the AOL software. But you could still try it, to see if it works with her AOL Email address, if that is all she has.
    Are you and she aware, that if she is now using another ISP, she can still use the AOL software for free?
    Excerpt "The AOL service is now FREE to anyone with an Internet connection – even if it’s from another Internet service provider.
    Even if you decide at some point to move to high speed or use another dial-up provider to connect to the Internet, you can keep your AOL email, AOL software and more for as long as you'd like to use them. It's your choice." from Exclusive benefits for AOL members.
    FAQs About Free AOL
    ali b

Maybe you are looking for