Has anyone managed to get Hotmail to work with Mail?

Hotmail aka Windows Live Mail.
Has anyone got Mail 3 in Leopard to work with Win Live/Hotmail?
If so, I would love to hear about how you did so, as I would like to use Mail to check e-mail. =)
Thanks.

How to Access Windows Live Hotmail with Mac OS X Mail - About Email
http://email.about.com/cs/macosxmailtips/qt/et042503.htm

Similar Messages

  • Anyone managed to get ipad mini working with vga projector with apple adaptor?

    I had arude shock the last week when i could no longer project anything from my ipad mini using an Apple branded vga to lightning adaptor. Help me im a teacher and desperately need to work asap.

    Just to clarfy i recently updated to ios 8 and i cant downgrade as some of the apps i needed cant work. This isnt good enough. Please find a solution anyone?

  • Has anyone managed to get a PS3 Controller to work with OSX Lion?

    Hi,
    I wanted to connect my PS3 controller to my iMac (late 2011) using bluetooth but have been unable to do so. It will connect for a brief time but then it will lose connect as it has not paired. It also asks me for a pairing code. I have tried 0000 and this does not work. I have searched the internet and it seems this is a common issue. Has anyone managed to get it working?
    Does anyone know if Apple plan to fix the issue with a forthcomming update?
    Cheers,
    Tim

    There are numerous threads on this, please use the "More Like this" tool, you will find it on the right. I'm not sure if anyone has any solutions but that is the logical place to start.

  • Has anyone managed to get HP Warranty Information into SCCM?

    Has anyone managed to get HP Warranty Information into SCCM?
    I have tried a few scripts that I found on the net but none of them seem to work as I believe HP updated there site this year..

    OK, I played around a bit (scripting from a web page isn't way beyond me) but... a few caveats.  My lab isn't available right now; so all I could test was that the script ran on an HP laptop.  A single HP laptop.  and created the regkeys in
    (in my case) HKLM\software\wow6432node\CompanyName\WarrantyInformation.  So... one single test on one single workstation, and no testing of the mof edit means... I'll need your help to confirm it works.
    Anyway, below is the script.  Other caveats:  It drops a log, and then continuously adds to the log file in %temp% (of the SYSTEM, which is using %windir%\temp).  So depending upon what you want/need--you may want to change the EnableLogging
    = True to EnableLogging = False (once you confirm it works on all/most of your boxes).  The other caveat, of course, is to change the sCompanyname = to be your Company Name; although I suggest you don't have spaces or special characters in it.  Short
    'n' sweet.  Then, naturally, once you have a box with the regkeys, use Mark Cochrane's RegKeytoMof 3.0 or higher to build the mof edits for you to paste to the bottom of your configuration.mof and sms_def.mof.  In that blog above Eric Schloss was
    using DCM as the delivery method to deliver the script to populate the regkeys--that worked for him and I see no reason it wouldn't work for everyone--so once you've tested the script interactively from a psexec -s -i cmd.exe shell on an hp box (to see it
    create the regkeys) I'd make a DCM like Eric did and target a collection with a few HP laptops or desktops and confirm it works via the DCM. 
    Anyway, give this a try--again... only tested on 1 single, lonely little HP laptop.  Needs a bigger test base!
    Edit:  and... even using Regkeytomof sometimes regkeys can be tricky.  If the mof edit doesn't work right to pull the data back, post what you've added.  someone here can usually spot if there's something not right about it and help you fix
    the mof edit.
    Edit #2: removed bad space, and bad copy/paste job as discovered by sevengs.  Thanks!
    on error resume next
    EnableLogging = True
    sCompanyName = "CompanyName"
    Set oShell = CreateObject("wscript.Shell")
    Set fso = CreateObject("scripting.filesystemobject")
    strTemp = oshell.ExpandEnvironmentStrings("%temp%")
    If EnableLogging Then
    Set oLogFile = fso.OpenTextFile(strTemp & "\WarrantyInfo.log", 8, True)
    oLogFile.WriteLine "*********************************************************"
    End If
    WriteLog "Beginning warranty information lookup."
    sWebServiceHost = "http://h20000.www2.hp.com/bizsupport/TechSupport"
    sWebServiceURL = "WarrantyResults.jsp"
    sWebService = sWebServiceHost & "/" & sWebServiceURL
    'Get the system's serial number from WMI
    Set oWMIService = GetObject("winmgmts:\\.\root\cimv2")
    Set colItems = oWMIService.ExecQuery("Select SerialNumber from Win32_BIOS",,48)
    For Each objItem in colItems
    sSerialNumber = objItem.SerialNumber
    Next
    WriteLog "Serial number of system is " & sSerialNumber
    'Get the Product ID from WMI
    Const wbemFlagReturnImmediately = 16
    Const wbemFlagForwardOnly = 32
    lFlags = wbemFlagReturnImmediately + wbemFlagForwardOnly
    strService = "winmgmts:{impersonationlevel=impersonate}//./root/HP/InstrumentedBIOS"
    strQuery = "select * from HP_BIOSSetting"
    Set objWMIService = GetObject(strService)
    Set colItems = objWMIService.ExecQuery(strQuery,,lFlags)
    sProductNumber = ""
    For Each objItem In colItems
    If objItem.Name = "SKU Number" Then
    sProductNumber = objItem.Value
    End If
    If objItem.Name = "Product Number" Then
    sProductNumber = objItem.Value
    End If
    Next
    If Len(sProductNumber) = 0 Then
    WriteLog "ERROR: Product Number could not be determined."
    oLogFile.WriteLine "*********************************************************"
    oLogFile.Close
    WScript.Quit(9)
    Else
    WriteLog "Product number of the system is " & sProductNumber
    End If
    Set colItems = oWMIService.ExecQuery("Select AddressWidth from Win32_Processor",,48)
    For Each objItem in colItems
    sAddressWidth = objItem.AddressWidth
    Next
    WriteLog "Operating system is " & sAddressWidth & " bit."
    'Define the parameters string to send to the web site
    sParameters = "nickname=&sn=" & sSerialNumber & "&country=US&lang=en&cc=us&pn=" & sProductNumber & "&find=Display+Warranty+Information+%C2%BB&"
    WriteLog "Opening the web site URL " & sWebService & "?" & sParameters
    'Define and call the web site
    Set oHTTP = CreateObject("Microsoft.xmlhttp")
    oHTTP.open "GET", sWebService & "?" & sParameters, False
    'oHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    oHTTP.send
    If oHTTP.Status = 200 Then
    WriteLog "Successful response from the web site."
    'WriteLog oHTTP.ResponseText
    Process oHTTP.ResponseText
    Else
    WriteLog "ERROR: the web site returned status code " & oHTTP.Status
    WriteLog "Returning exit code 1."
    nExitCode = 1
    End If
    If EnableLogging Then
    oLogFile.WriteLine "*********************************************************"
    oLogFile.Close
    End If
    WScript.Quit (nExitCode)
    Function Process (HTML)
    WriteLog "Processing the HTML returned from the site."
    intSummaryPos = InStr(LCase(html), "serial number")
    If intSummaryPos = 0 Then
    Process = ""
    Exit Function
    End If
    intSummaryTable1Start = InStrRev(LCase(html), "<table", intSummaryPos)
    intSummaryTable1End = InStr(intSummaryPos, LCase(html), "</table>") + 8
    intSummaryTable2Start = InStr(intSummaryTable1End, LCase(html), "<table")
    intSummaryTable2End = InStr(intSummaryTable2Start, LCase(html), "</table>")
    table1 = getStr(intSummaryTable1Start, intSummaryTable1End, html)
    table2 = getStr(intSummaryTable2Start, intSummaryTable2End, html)
    const HKLM = &H80000002
    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    sKeyPath = "SOFTWARE\" & sCompanyName & "\WarrantyInformation"
    WriteLog "Registry key path is HKLM\" & sKeyPath
    oReg.CreateKey HKLM,sKeyPath
    WriteLog "Processing the first table from the web page."
    arrGeneral = processTables(table1,1)
    'arrGeneal should be in the form Serial Number, Product Number, Product Line, Product Description, Warranty Check Date
    WriteLog "Processing the second table from the web page."
    arrContracts = processTables(table2,2)
    'arrContracts should be in the format Warranty Type, HW Warrenty Start Date, HW Warranty End Date, HW Warranty Status, Setup Warranty Start Date, Setup Warranty End Date, Setup Warranty Status
    WriteLog "Setting registry values."
    WriteLog "SerialNumber is " & arrGeneral(0)
    oReg.SetStringValue HKLM, sKeyPath, "SerialNumber", arrGeneral(0)
    WriteLog "ProductNumber is " & arrGeneral(1)
    oReg.SetStringValue HKLM, sKeyPath, "ProductNumber", arrGeneral(1)
    WriteLog "SerialLine is " & arrGeneral(2)
    oReg.SetStringValue HKLM, sKeyPath, "ProductLine", arrGeneral(2)
    WriteLog "SerialDescription is " & arrGeneral(3)
    oReg.SetStringValue HKLM, sKeyPath, "ProductDescription", arrGeneral(3)
    WriteLog "WarrantyCheckDate is " & CStr(CDate(arrGeneral(4)))
    oReg.SetStringValue HKLM, sKeyPath, "WarrantyCheckDate", CStr(CDate(arrGeneral(4)))
    WriteLog "WarrantyType is " & arrContracts(0)
    oReg.SetStringValue HKLM, sKeyPath, "WarrantyType", arrContracts(0)
    WriteLog arrContracts(1)
    WriteLog "HardwareWarrantyStartDate is " & CStr(CDate(arrContracts(1)))
    oReg.SetStringValue HKLM, sKeyPath, "HardwareWarrantyStartDate", CStr(CDate(arrContracts(1)))
    WriteLog "HardwareWarrantyEndDate is " & CStr(CDate(arrContracts(2)))
    oReg.SetStringValue HKLM, sKeyPath, "HardwareWarrantyEndDate", CStr(CDate(arrContracts(2)))
    End Function
    Function getStr(startpos, endpos, data)
    Dim tmp
    'Get the substring
    tmp = Mid(data, startpos, endpos - startpos)
    ' Remove end of line
    tmp = Replace(Replace(Replace(tmp, VbCrLf, ""), vbCr, ""), vbLf, "")
    getStr = tmp
    End Function
    Function processTables(table, ttype)
    ' Remove HTML Tags and replace with "|"
    Set re = New RegExp
    re.Pattern = "<[^>]+>"
    re.IgnoreCase = True
    re.Global = True
    table = re.Replace(table, "|")
    table = Replace(table, "&nbsp;", "")
    table = Replace(table, ":", "")
    table = Replace(table, " ", "")
    ' Remove excess |
    re.Pattern = "[|]+"
    table = re.Replace(table, "|")
    ' Clean up a bit more
    re.Pattern = "\|\s+\|"
    table = re.Replace(table, "|")
    ' Remove | from start and end of string
    re.Pattern = "^\||\|$"
    table = re.Replace(table, "")
    arrTable = Split(table, "|")
    arrTmp = ""
    If ttype = 1 Then ' General Info Table
    i = 1
    For Each cell in arrTable
    Select Case LCase(Trim(cell))
    Case "serial number"
    sSerialNumber = arrTable(i)
    Case "product number"
    sProductNumber = arrTable(i)
    Case "product line"
    sProductLine = arrTable(i)
    Case "product description"
    sProductDescription = arrTable(i)
    Case "date of warranty check"
    sCheckDate = arrTable(i)
    End Select
    i = i + 1
    Next
    arrTmp = sSerialNumber & "|" & sProductNumber & "|" & sProductLine & "|" & sProductDescription & "|" & sCheckDate
    ElseIf ttype = 2 Then ' Contract Info
    i = 0
    For Each cell in arrTable
    cell = Replace(cell," ","")
    if Instr(lcase(trim(cell)),"wty hp hw maintenance onsite support") > 0 then
    cell = "wty hp hw maintenance onsite support"
    end if
    if Instr(lcase(trim(cell)),"wty hp hw maintenance offsite support") > 0 then
    cell = "wty hp hw maintenance offsite support"
    end if
    if Instr(lcase(trim(cell)),"wty hp support for initial setup") > 0 then
    cell = "wty hp support for initial setup"
    end if
    Select Case LCase(Trim(cell))
    Case "warranty type"
    sWarrantyType = arrTable(i+8)
    Case "wty hp hw maintenance onsite support"
    sHWStartDate = arrTable(i+1)
    sHWEndDate = arrTable(i+2)
                        sHWStatus = arrTable(i+3)
    Case "wty hp hw maintenance offsite support"
    sHWStartDate = arrTable(i+1)
    sHWEndDate = arrTable(i+2)
    sHWStatus = arrTable(i+3)
    Case "wty hp support for initial setup"
    sISStartDate = arrTable(i+1)
    sISEndDate = arrTable(i+2)
    sISStatus = arrTable(i+3)
    case else
    End Select
    i = i + 1
    Next
    arrTmp = sWarrantyType & "|" & sHWStartDate & "|" & sHWEndDate & "|" & sHWStatus & "|" & sISStartDate & "|" & sISEndDate & "|" & sISStatus
    End If
    ' Remove | from start and end of string
    re.Pattern = "^\||\|$"
    arrTmp = re.Replace(arrTmp, "")
    'wscript.echo arrTmp
    arrResult = Split(arrTmp, "|")
    Set re = Nothing
    processTables = arrResult
    End Function
    Function WriteLog (sText)
    If EnableLogging Then
    oLogfile.WriteLine Now() & " " & sText
    End If
    End Function
    Standardize. Simplify. Automate.

  • Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?

    I just got a pair of new 3TB disks that I wanted to put on my Windows 2003 server enterprise x64 system, SP2, all updates installed.
    When I first tried to convert to dynamic, I got the error "The operation did not complete" as described in this KB article
    http://support.microsoft.com/kb/826823
    It says there is a patch, but there is not one for x64, just x86 and ia64
    I found another technet discussion here:  https://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/cb62238c-b3d0-4989-b45a-ae6de6701a7b?stoAI=10
    However its best suggestion is to use a product from AOMIE, but I tried that and it didn't even recognize the disk.  It also suggests that one needs a better version of diskpart.exe and to try to the 32 bit version.  Anyone have any experience
    with that?
    I also tried creating moving the disk to Windows 7 x64, making it dynamic there, but when I move the disk back to 2K3 it does not recognize it, and goes back to a 2TB partition.  I also saw something about needing a 512 block size for 2K3, but W7 does
    not allow anything smaller than 1K.

    Hi,
    During my research, if found the following artcle which also mentioned a 3TB disk should be supported in Windows 2003 SP1:
    Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?
    http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/a720ae72-0c04-44dd-94c0-2e6aecce530e
    So I contact the author about this issue. He said it could be caused if your hard disk is a 512e drive as the 3TB drives on the market today are normally 512e drives.
    However manufacturers stopping identifying this, and if the controller is old, FSUtil will not able to identify a 512 drive but recognized it as a normal 512n drive.
    Thus please provide the drive model so we could search on manufacturer's website for exact information.
    Also please paste the screenshot in your reply which Satish mentioned if available.
    In addition, here is an article Robert provided:
    http://www.windowsitpro.com/article/what-would-microsoft-support-do/support-advanced-format-hard-drives-141584

  • Anyone tried to get Jabber to work with Domino for contact search

                       I have a customer who has recently upgraded to CUCM 8.6.2.22900-9 and Presence 8.6.4.11900-1 fom CUCM 6.x and Presence 6.x. When they were at 6.x they were able to integrate CUPC contact search with Domino server. I realize this was not supported, but they got it to work. Now they want to attempt to get Jabber to work with Domino. Again I realize that is not a supported LDAP for Jabber, but I was wondering if anyone has perhaps tried this and what their experience was.

                       I have a customer who has recently upgraded to CUCM 8.6.2.22900-9 and Presence 8.6.4.11900-1 fom CUCM 6.x and Presence 6.x. When they were at 6.x they were able to integrate CUPC contact search with Domino server. I realize this was not supported, but they got it to work. Now they want to attempt to get Jabber to work with Domino. Again I realize that is not a supported LDAP for Jabber, but I was wondering if anyone has perhaps tried this and what their experience was.

  • Has anyone found a Bluetooth Headset that works with Skype?

    I have been reading reviews and I can't find anyone who has found a Bluetooth headset that successfully works with Skype with Leopard...
    anyone?

    Hi there...
    I have the Jabra BT125 and I have a new Mac Book Pro on it's way. The headset is actually something I already had for my cell phone. And now I'm hoping to use it for skype as well. What I think I lack is the Blue Tooth adapter. I was looking for one that I can power via USB rather than the ones you have to charge. I also have a logitech V320 optical mouse. Do you think the blue tooth adapter can run both the mouse and the headset as not to take up too many USB ports at the same time? (I envision my computer eventually resembling that guy from He11 Raiser! with all the pins sticking out of it) Anyway... Jabra says the BT125 supports Bluetooth version 2. I'm not sure if the mouse is similar or not... (I'm actually really new to all this lingo and I just assume the wireless capability of the mouse is bluetooth... The specs say it's a "microreceiver") Any comments, experiences or suggestions are really appreciated... thanks!!!

  • Has anyone managed to get Authorization working with JAAS from CusLoginMod?

    Hi everybody,
    I am on a standalone oc4j 10.1.3.1.0
    I want to be able to access a private resource using form based authentication
    and I would like to use JAAS from with a custom login module.
    The authentication part works just fine but the authorization doesn't seem to happen.
    Both login() and commit() from my LoginModule are called and after authentication takes place, the subject is populated with the right Principals, in my case "testers".
    This Subject then it should be matched against the <security-role> defined in my application's web.xml
    This is the part from my application's web.xml which holds the security information.
    <security-role>
    <description>Online User</description>
    <role-name>testers</role-name>
    </security-role>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>access to the private application</web-resource-name>
    <url-pattern>/faces/user/*</url-pattern>
    </web-resource-collection>
    <!-- authorization -->
    <auth-constraint>
    <role-name>testers</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>protected.htm</form-login-page>
    <form-error-page>error.jspx</form-error-page>
    </form-login-config>
    </login-config>
    Has anyone faced this scenario before?
    Any advices much appreciated
    thank you.

    I can't see what am I missing if I'm missing something.
    This is my orion-application.xml
    <orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd">
    <jazn provider="XML" jaas-mode="doAsPrivileged" location="">
    <property name="role.mapping.dynamic" value="true"></property>
    <property name="custom.loginmodule.provider" value="true"></property>
    </jazn>
    <jazn-loginconfig>
    <application>
    <name>JAAS</name>
    <login-modules>
    <login-module>
    <class>jaas.JAASLoginModule</class>
    <!-- <class>jaas.SampleLoginModule</class> -->
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>debug</name>
    <value>true</value>
    </option>
    <option>
    <name>log_level</name>
    <value>ALL</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    </orion-application>

  • Has anyone managed to get play count/last played to sync?

    I can live with the podcasts being borked, it's prompted me to use an app (hello iCatcher!) which I had been planning to do for a while. I'm still learning its ways, but it feels a lot more comfortable already.
    The thing that I absolutely cannot understand is how ratings, playcount and last played times are not synchronising. I've a number of smart playlists based on these attributes and I haven't been able to get them to sync up since I enabled Match on my iPhone.
    So I've got an iPhone which I sync with iTunes on a Mac. Everything's patched up to the latest version.
    Has anyone successfully had any successful syncs? The smart playlists are just a joke - I'd expect the track listings to be comparable between devices, but they just aren't.
    This is a beta product which some glaring functionality holes. How Apple can think it's worth paying for is beyond me. The smart playlist functionality has been working seamlessly for years on iTunes ... but it's broken. And I paid for the product that broke it. I'm feeling very let down.

    I haven't managed to get any playcount, ratings etc to sync. There are so many issues with this version of iTunes Match I cannot believe Apple released it.
    The order of tracks in playlists doesn't match iTunes on my Mac, selecting a folder of playlists in iTunes on my iPhone hangs the phone and sometimes crashes it, metadata doesn't sync, some albums are split into 2, etc.
    Looking forward to an update soon.

  • Has anyone managed to get icloud to synchronise properly with outlook calendar?

    I have an iphone 5 and am running outlook 2010 on windows 7 32 bit.
    I can get icloud to do the intial upoload of the calendar but then after that it won't synchronise new calendar entries.
    The phone and icloud syc, but icloud won't sync with outlook whether the entry is put in outlook or in icloud.
    I have spoken with Apple support and over many weeks have de-installed and re-installed icloud several times.
    I have sent various diagnostiocs and screen shots.
    The icloud outlook addin does not appear in the outlook add-ins section, although I can see what might be the add-in sitting on the c drive in the apple folder.
    Support have also told me that there is no way to download the icloud add-in seperately.
    Apple support are now telling me that I need to de-install and re-install outlook to try and get the add-in to install correctly.
    That would be a real pain and I can see on this forum that other people have already tried that without success.
    They also say that if that doesn't work I will need to completely re-install the OS.
    I don't think they know what the problem is and are just trying anything that might work.
    I really don't want to lose all my business data from outlook and certainly don't want to trash my whole PC.
    Has anyone any idea where the problem might be?
    Many thanks

    Do I gather by the lack of answers that nobody has?

  • Anyone manage to get ColdFusion to work under Apache on OS X 10.10 Yosemite?

    Hi all I'm having great difficulty getting ColdFusion10 to work under Apache with OS X 10.10 Yosemite.
    Here is a description of what I've faced and a little of what I've done to solve my problem
    Problem 1
    Apache httpd.conf file gets messed up
    Solution: copy original httpd.conf file from /etc/apache2/original/ to /etc/apache2/
    Problem 2
    No Java Virtual Machine is installed!
    Solution: install Java (version 6 or 7 is better) you may only be able to install version 8
    Problem 3
    ColdFusion doesn't know where your Java installation is so find and update your ColdFusion configuration files
    /Applications/ColdFusion10/cfusion/bin/jvm.config
    /Applications/ColdFusion10/cfusion/bin/coldfusion
    /Applications/ColdFusion10/cfusion/runtime/bin/wsconfig_jvm.config
    change the source to whatever your current Java is and where it's located
    for example if you have version 7 installed:
    /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home
    if you have version 8 installed:
    /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
    Problem 4
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: YOUR PATH HERE!
    Solution:Still working on this one!

    I think you should try Pacifist http://www.charlessoft.com/
    It's a .pkg installer for OS X, I used it several times to install software that Apple's Installer can't install. After installing Xsan 1.0 from your CD, just launch Apple's software update to upgrade to version 1.3. I think it should work (I didn't try it with Xsan, but this procedure works with other software).
    Khafaga

  • Has somebody managed to get cpufreqd to work in duke(2007.05)?

    I have attempt several times to get it to work, but it fails.
    And how can i se if it works correktly?
    I have an core duo e6400 cpu

    fernux wrote:I have attempt several times to get it to work, but it fails.
    Any error messages? It's working fine for me (used the wiki page to set it up: http://wiki.archlinux.org/index.php/SpeedStep)
    fernux wrote:And how can i se if it works correktly?
    You can look at your current governor, current frequencies, available frequencies, scaling driver, etc... in /sys/devices/system/cpu/cpu{0,1,...}/cpufreq
    fernux wrote:I have an core duo e6400 cpu
    Are you using the acpi_cpufreq module?
    Last edited by arbrown (2007-06-05 04:16:54)

  • Has anyone got Client (Mutual) Authentication to work with 6.0 SP2?

    I 've been unsuccessful and was just wondering if anyone has done it...
    Kirk

    The questions is "Where do you get a root ca file for a verisign trial client cert?" I've looked everywere on verisign's site without luck. BEA support emailed me one but can't remember where/how they
    got it....
    Kirk
    Paul Ferwerda wrote:
    I think that the Server Certificate Chain File Name contains a sequential list of certificates, the first of which was used to sign the cert in the "Server Certificate File Name" and the last is self-
    signed (ie a root ca). There is a minimum of 1 cert required in the Server Certificate Chain File Name (which would be the self-signed cert that signed the cert in the Server Certificate File
    Name file. As you walk through the certs in the Server Certificate Chain File Name each cert is expected to be signed by the following cert (if there is one) and the last one must be self-
    signed.
    The Trusted CA file on the other hand is a collection of self-signed CAs on which no validation is performed and no relationship is assumed between the certs in that file. My guess is that
    the code expects that each cert in the Trusted CA list is self-signed.
    So the Server Certificate Chain File Name contains a chain and the Trusted CA File Name contains unordered self-signed certs.
    Paul F.
    On Thu, 2 Aug 2001 18:52:38 +0200, "Bart Jenkins" <[email protected]> wrote:
    Kirk,
    The PEM file we grabbed from the Verisign site worked in the "Server
    Certificate Chain file name" entry but NOT in the "Trusted CA File Name"
    entry. The guy at support in BEA thought it should have worked for both.
    I'm sure I could append the "Trusted CA chain" to the PEM file that I'm
    using for "Server Certificate Chain File name" and then I could use one file
    for both...
    Could you post yours or send it me via Email so I can have a backup? I'd be
    curious to compare your rootCA list with mine. I'll use whichever has the
    most entries. If my list has more rootCA certs in it I'll pass it along.
    ok?
    'preciate it.
    Bart Jenkins
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    So if the one you got off verisign didn't work, where did you get the onethat
    worked? The one BEA sent me works for mutual auth.
    Kirk
    Bart Jenkins wrote:
    Kirk,
    My security expert found it buried deep in the Verisign site. Have
    you
    successfully tested the Mutual Authentication? The root CA we found onthe
    Verisign Site allowed us to connect via HTTPS but failed on the 2-way
    authentication.....test it...
    I actually mailed the .PEM file we found from Verisign to BEA support
    because I also had an issue open on this with them...it would be funnyif
    they then turned around and mailed it to you...
    If you get stopped...give me a shout...
    good luck
    Bart Jenkins
    Globeflow SA
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    Thanks. I finally got it working yesterday. Apparently, I was not
    using
    the
    correct root ca. Support
    mailed me the root ca they were using and everything works fine now.The
    problem is that I still
    don't know where on Verisign's site to go to get the root ca. Where
    did
    you
    get yours from?
    Kirk
    Bart Jenkins wrote:
    Kirk,
    I've finally got it working today. I've got a Class 3 Verisign
    certificate on the WLS 6 server and a personal Verisign Class 1 cert
    on
    the
    client browser (IE 5.5) and am able to connect via HTTPS in 2-way,mutual
    authentication. Tell me where you are blocked and I'll try to help.
    Bart Jenkins, CTO
    Globeflow SA
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    I 've been unsuccessful and was just wondering if anyone has done
    it...
    Kirk

  • How can i get hotmail to work in mail?

    So in hotmail it finally lets me select if I use POP to download Hotmail messages to another program, that program could make it so I can't read my messages on Hotmail. (For example, this might happen if you use Mac Mail or Mozilla Thunderbird).
    I have the "Do what my other program says-if it says to delete messages, then delete them." box selected.
    however my mail on my it mac says
    "There may be a problem with the mail server or network. Verify the settings for account “[email protected] ” or try again. The server returned the error: The connection to the server “pop” on port 110 timed out."
    yet it works on my itouch with mail and hotmail. what is going on? how can i get mail to work with hotmail on my mac?

    By doing a Google search for their phone number and their support website.

  • Has anyone got an iBook G3 to work with an iPhone hotspot?

    hi! First question here, and its been a real headscratcher.
    I have an iBook G3 with 128bits airport card (picking up and connecting to routers no problem)
    I also have an iPhone 4 which I've used as a personal hotspot, providing internet to my Macbook pro for around year.
    Now as you can imagine, I've discovered that although the G3 discovered my iPhone, when i enter the password and hit connect, i get a glorious error. It say it could not connect because of a problem with encryption.
    After a lot of internet research, I discovered the old, original Airport card does not support WPA2 encryption, which annoyingly is the encryption my phone uses.
    Ok, so options... 1 can i upgrade this card? 2 Can I download software (3rd party?) to get around this problem? 3 Can i tell my phone to use WEP encryption? 4 Can i use an external (usb?) Wifi adapter? Ive also seen the possibility of Bluetooth or USB tethering? 5 Would a Bluetooth adapter work?
    Any advice or solutions/suggestions would be incredibly welcome. As i've discovered there are a lot of questions about this online but few working solutions.
    iBook G3, 500Mhz, 256RAM, 10gb HDD

    Hi, and welcome to Apple Support Communities.
    Question: If you have a MacBook Pro, why are you wanting the iBook G3 (which is 11 years old at this point) to work with an iPhone hotspot?
    Why not just use the MacBook Pro?
    That said, the MAXPower device is available at Other World Computing, if you really want to try it:
    http://eshop.macsales.com/item/Newer%20Technology/MXP2802GU2/
    And if you'd rather use a cradle instead of plugging it directly into a port:
    http://eshop.macsales.com/item/NewerTech/MXP2802NU2C/
    To boost your speed a little, you may want to consider maximizing the RAM with a 512 MB module:
    http://eshop.macsales.com/item/Other%20World%20Computing/100SO512328L/
    Good luck.

Maybe you are looking for

  • Creating a tabular report comparing two measures based on accounts

    Hi, I'm trying to create a simple GL report but i'm getting stuck. Using BIP with OBIEE 10.1.3.4. What i have is some GL data: debit amount (De), credit amount (Cr) and account number (acc). I would like to create a simple tabular report, comparing d

  • SQ01 Output From Joining VBSEGK and VBSEGS tables-1 line of output per DOC

    I setup a query using SQ01 which uses tables VBSEGK and VBSEGS ( parked documents).   The VBSEGS table has multiple lines per document in that there are multiple G/L accounts, cost centers and amounts in order to distribute expense acorss multiple co

  • IChat AV progress but no cigar

    I've been trying to troubleshoot the problem with iChat AV video chat for about 2 months. With the help of many posters to this forum I've made some progress and would like to share that information in the hope that someone may have additional insigh

  • Account determination for entry ECCA WRX 0018 ZZ1 9126 not possible

    Hi all, I am getting this error while doing GR using MIGO.  "Account determination for entry ECCA WRX 0018 ZZ1 9126 not possible" There are 5 items in the PO and I get this error if I try to post all of them together. However if I try to post 1 item

  • Need lab color info in Camera Raw.

    I would like to be able to see lab color info in addition to the RGB numbers in ACR.  The ACR color correction sliders are lab in nature, and the lab numbers are easier for color correction than the RGB numbers. I