Migrating from Open Transport to CFNetwork

I have a Carbon application that still uses Open Transport (the application was originally developed for Mac OS 8/9). I would like to migrate to the CFNetwork services API as I no longer support 8/9 for this application. Does anyone know of a porting guide going from OT to CFNetwork? So far, my searches have not turned up anything. Note that my application communicates with a server using a customized API over sockets so it's not a simple ftp/http application.
Also, from what I can tell Apple deprecated the OT APIs with 10.4. Has Apple officially announced whether they intend to fully remove OT support in a future version of the OS?
Message was edited by: RedWolf

Well I have found out that OpenTransport is not supported for 64-bit applications in 10.5:
http://developer.apple.com/releasenotes/Carbon/RN-OS_Services/index.html
Not surprising actually.

Similar Messages

  • How to Migrate the open transports in CTS+

    Hi Experts
    We are planning to implement CTS+ in our organisation, after implementing the CTS+ it's possible to migrate the open transports  in CTS+
    Thanks & Regards
    Venkat

    Hi venkat,
    what i understand is you are already having some TR on which work is gng on and now you want to add.
    no problem
    in your CTS+ when you create a TR just merge the old TR into this
    or
    you can also you the Copy objects
    in SE09
    this is very common technique use by developers so just ask them to check in se09.
    how it ans ur query
    Regards
    Prakhar

  • Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using

    Hi Experts,
                 I've to Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using Business Objects with a new SALES ORDER DOCUMENT NUMBER referencing the older one.
               I'll get all the required data with field in an excel file.
                 Does any standard transaction exist for it ? Or how to go ahead with it ?
    Thanks and regards,
    Jyoti Shankar

    Hi
    If you are checking for CREATE option then Sales Doc Type
    For more Info goto SWO1 transaction -> BUS2032 --> DIsplay --> Execute --> There SELECT the method which you want to perform... There you can fine the MANDATORY parameters also....
    Or in DISPLAY mode PLACE Cursor on the Required Method and CLick the PARAMETERS button on toolbar...
    That will show the MANDATORY parameters...
    Reward if helpful....
    Message was edited by:
            Enter the Dragon

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • I can't migrate from a time machine Back up. I select my TC and it says "some backups can't be opened." My HD failed and I'm Trying to get everything back... Can anyone make a suggestion?

    I can't migrate from a time machine Back up. I select my TC and it says "some backups can't be opened. Make sure that all of your network devices are connected and turned on. It appears that some backups are already in use. If you don't see the backup you need, make sure it is not currently mounted by another machine and try again."
    My HD failed and i installed a new one... I'm Trying to get everything back... Can anyone make a suggestion?

    Read the section E about restore issues.
    http://pondini.org/TM/Troubleshooting.html
    But you should be able to mount the sparsebundle and backup the major items if they are not damaged. You might also do a disk verify to see if the corruption can be repaired.
    Have a look here also for restore of selected items.
    http://pondini.org/TM/FAQ.html

  • Migration from Kodo 4.1 JPA to open JPA

    I'd like to use open JPA at Workshop studio version 3.3. I use JPA from Kodo 4.1 Before. I'd like migration from Kodo 4.1 JPA to open JPA now. I downloaded open JPA openjpa-project-0.9.6-incubating-binary.zip from http://incubator.apache.org/openjpa/downloads.html. The steps I did:
    1)     Create a new empty project with name "openJpaEx" by Workshop, File -> new project -> Web -> Dynamic Web Project;
    2)     import the lib from the unpack openjpa-project-0.9.6-incubating-binary.zip to a new Workshop project;
    3)     created a project with name "workshop-jpa-tutorial" by Workshop from the Kodo example template, File -> new project -> Example -> Java Persistence API (JPA) -> Workshop JPA tutorial.
    4)     copy the Entity java classes and persistence.xml in "workshop-jpa-tutorial" to "openJpaEx"
    5)     Run the project.
    Is the above steps OK for the migration from Kodo 5.1 JPA to open JPA? If not, what the right way? The problems are
    1)     For my case, Persistence.createEntityManagerFactory can not be initialized in project "openJpaEx" following above steps. Please give me some suggestions.
    2)     I can not get the "JPA Configuration" at Workshop. "JPA Configuration" gives a GUI interface to manage the JPA classes and persistence.xml.
    public class DAOHelper {
         public static EntityManagerFactory createEntityManagerFactory (String name)
              EntityManagerFactory emf = Persistence.createEntityManagerFactory(name);          
              return emf;          
         public static void closeEntityManagerFactory (EntityManagerFactory emf) {
    try{
    if(emf != null){
    emf.close();
    }catch(Exception e){
    //Ignore Excpeption
    public class CustomerDAO_Kodo implements CustomerDAO {
         public Customer getCustomer(Integer customerId) throws DAOException{
              Customer customer = null;
              EntityManager em = null;          
              EntityManagerFactory emf = null;
              try {               
                   emf = DAOHelper.createEntityManagerFactory("unitK");
                   em = emf.createEntityManager();
                   Query query = em.createQuery(                              
                             "SELECT c FROM Customer c where c.customerid = ?1")
                                  .setParameter(1, customerId);
                   List results = query.getResultList ();                    
                   for (Object res : results)               
                   customer = (Customer) res;               
              }catch(Throwable t) {
                   throw new DAOException(t);
              }finally{
                   em.close();
                   DAOHelper.closeEntityManagerFactory(emf);
              return customer;
    persistence.xml
    ==========
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
         version="1.0">     
         <persistence-unit name="unitK">
              <class>com.bea.beans.Contact</class>
              <class>com.bea.beans.Customer</class>
              <class>com.bea.beans.Customerid</class>
              <class>com.bea.beans.Lineitem</class>
              <class>com.bea.beans.OrderData</class>
              <class>com.bea.beans.Product</class>
              <properties>
                   <property name="openjpa.TransactionMode" value="local"/>
                   <property name="openjpa.ConnectionDriverName" value="org.apache.derby.jdbc.ClientDriver"/>
                   <property name="openjpa.ConnectionURL" value="jdbc:derby://localhost:1527/saleDB"/>
                   <property name="openjpa.ConnectionUserName" value="app"/>
                   <property name="openjpa.ConnectionPassword" value="app"/>
              </properties>
         </persistence-unit>     
    </persistence>

    Hi,
    I don't think that the Workshop folks monitor this newsgroup, and the people on this newsgroup don't have much experience with Workshop.
    You might want to repost on a Workshop newsgroup.
    Also, you mentioned that you had problems with Persistence.createEntityManagerFactory(). Was the problem in execution of the code, or just that the Persistence class wasn't available in the classpath?
    -Patrick

  • Cannot open iTunes or Aperture after "Migrating" from old Mac

    I migrated from an old "Black" MacBook to a new Aluminum MacBook using Migration Assistant. Now both iTunes and Aperture will not open on the new MacBook because they cannot open up their respective libraries. The following message appears:
    "The iTunes Library file is locked, on a locked disk, or you do not have write permission for this file."
    "The Aperture Library file is locked, on a locked disk, or you do not have write permission for this file."
    I did run into an issue when migrating when I used the same account name on the new computer as the old. It asked me to rename the old account which I did by appending with the number 1. The Migration Assistant put all the files into a new folder with the renamed account under "users". Not only this, all the folders and files lacked permissions for the new computer. I had to manually "Get Info" and add permissions for the new account on the new computer.

    Go to /Music/ and get info on the iTunes folder.
    Go to the *Ownership & Permissions* and set *You can* to *Read & Write*.
    Also, click on *Apply to enclosed items*.
    Do the same for the Aperature folder wherever it is located.

  • Files Migrated From iBook G4 to PowerMac G5 Won't Open

    I can't open my files which I migrated from my iBook G4 to my PowerMac G5. It says permission denied. Both computers have the same operating system.
    I repaired permissions and now I can't even open the folder. There's a red circle with a minus sign next to all the folders except the documents folder. However nothing shows in it except when I click on Get Info then I can see the MB of contents.
    Now I'm wondering what will happen when I migrate all my PowerMac G5's files over to my new iMac. Will I have the same problem?
    Luckily the files on my iBook G4 are small enough I can put them on a CD. I can't say the same for my G5 files.

    Normally Migration assistant has no problems.
    There are caveats migrating from PPC to Intel, I had no problems, but see Kappy's fine/detailed "A Basic Guide for Migrating to Intel-Macs"...
    http://discussions.apple.com/thread.jspa?threadID=435350
    Others' experience from G5 to Intel...
    http://discussions.apple.com/thread.jspa?messageID=8957015&#8957015

  • SP2010 - Documents migrated from different farm cause login prompts when opening..

    We have 3 SharePoint farms (Dev/Test/Prod) and we migrated Word documents between them a couple of different ways.. AvePoint's DocAve, copy from Explorer view of the two farms and Download/Upload.
    The documents were originally created on  the development farm.
    When we open documents in the production farm, the user is prompted with a login box to login to the development farm. New documents created in the production farm don't prompt.
    Anyone know where / what information is being stored in the document that would reference the old farm? and how to clear it?

    Hi,
    According to your post, my understanding is that documents migrated from different farm cause login prompts when opening.
    I try to reproduce the issue, however, everything works well.
    I recommend as below:
    Open the site in the browner, click tool->Compatibility View Setting->Add the site to be displayed in Compatibility View.
    Click Tool->Internet Options->Security->Trusted Sites.
    Click Tool->Internet Options->Security->Restricted sites->Allowed level for this zone: Medium.
    Modify your registry settings for the WebClient service.
    Go to the file's properties > Security > Advanced  > and Inherit the permissions.
    More information:
    SharePoint Keeps Asking for Password Everytime?
    SharePoint Keeps Prompting for Credentials
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Migrate from Zimbra Open Source to Exchange 2013

    Hi there,
    I am currently using Zimbra email client and I am considering switching to Exchange 2013, is there a tool which can seamlessly allow migration of all user accounts and mailboxes from Zimbra to Exchange? 

    Hi Adam,
    Base on my knowledge, there are no tools to make a direct migration from Zimbra to Exchange 2013 Server, however , you can consider to use the following methods:
    1.   
    If there are a large number of mailboxes in Zimbra, you can use the
    Microsoft Transporter Suite to migrate
    mailboxes from Zimbra to Exchange 2007 at first, and then make the final transition to Exchange 2013 since Transporter Suite that is only supported in Exchange 2007 and the previous version.
    2.     
    If just a small number of mailboxes in Zimbra, you can configure outlook for all Zimbra users, export data into PST file, and then you can use “Import-Mailbox” cmdlet to
    import all PST files back to newly created users’ mailboxes on the exchange 2013 server
    Notes: Either way, please play the method in a lab environment to familiar with it
    Resources:
    Migrating
    from POP/IMAP to Exchange Server 2007 using Microsoft Transport Suite
    Microsoft Transporter Suite for Lotus Domino demo
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Open Directory Migration from Mac OSX Server 10.4 to 10.8?

    Hi All,
    This might be a silly question and apologise in advanced if this is?
    We are running on old Xserve (10.4.8) with approx. 100 Mac clients and would like to know if it's possible to migrate from OD 10.4 to OD 10.8. We tried just to see what would happen if we archived the old OD and re-imported in to 10.8, but as we guessed this didn’t work. I’ve looked through this forum and seems most are doing this from 10.5, so wondering if we need to upgrade to 10.5 and then up to 10.8?
    Any pointers would be great.
    Many thanks.
    Mike

    If you don't mind clearing ser passwords, then I would export users from 10.4 and import into 10.8
    There are some issues with service ACLs in doing this, but its still the fastest process.
    If users are allowed to set their own PW, the you give provide preset pw's (either unique or common) and a URL to allow users to reset their PW.
    If you need to retain passwords, what I would do is clone the 10.4 server, then upgrade it all the way to 10.8 then archive OD from that and import into a clean-install of 10.8 server.
    Whataver you do, don't rely on a 10.4 to 10.8 migration, you'll want a clean 10.8 install.
    The offline 10.4 -> 10.8 would allow you to retain PWs, but it creates alot of extra work for you.

  • Migration from SAP BC To SAP P.I

    HI Experts ,
    I am required to do migration from SAP BC to SAP P.I. I would require the following Info/Help from you as i have not worked on such scenario before this!
    1) What kind of challenges can be faced during migration from BC to XI?
    2) What is the best practise for doing the same?
    3) Can you share some scenario from where i can have some idea how to do migration?
    4) Generally how much time it takes in migration activity if ther are not much interfaces involved in it?
    Would appreciate your valuable inputs on the same!
    I have read How to guide docs on how to do migration from BC to XI but not convinced with the content
    Regards
    Saras Jain

    Hi Saras,
    I am giving you an example senario and a how to do all the steps and why it needed. if you need more information just mail me i'll give you the concerned PDF.
    Scenario
    SAP Business Connector enables data exchange between an SAP system and
    external systems using HTTP and e-mail. SAP Exchange Infrastructure (SAP XI)
    replaces SAP Business Connector (SAP BC).
    We distinguish between standard scenarios (that do not contain customer-specific
    development) and individual scenarios (that do contain services or mappings created
    by the customer). The following sections describe how to migrate both types of
    scenarios to SAP XI.
    Scenario 1 (IDoc – HTTP, HTTP – IDoc)
    An SAP system sends an IDoc to SAP BC or to SAP XI. The IDoc is converted to
    XML. It is sent to an external business partner by using HTTP.
    An external business partner sends an XML document by using HTTP to SAP BC or
    to SAP XI. The document is converted to an IDoc and sent to a connected SAP
    system in the internal system landscape.
    Scenario 2 (IDoc – Mail, Mail – IDoc)
    An SAP system sends an IDoc to SAP BC or to SAP XI. The IDoc is converted to
    XML. It is sent to an external business partner as an e-mail.
    An external business partner sends an e-mail to SAP BC or to SAP XI. The
    document is converted to an IDoc and sent to a connected SAP system in the
    internal system landscape.
    Flow Services
    Flow services are services that are written in the proprietary graphical-based flow
    language of SAP BC.
    Java Services
    Java services are services that are written in the Java language.
    There are several platforms that support Java, including SAP XI. However, the data
    model used in the Java services in SAP BC is proprietary.
    Stylesheet Transformations
    Stylesheet transformations are often used for mapping purposes. They take an XML
    document as input, convert it according to rules defined in the stylesheet, which is
    also an XML document, and produce an XML document as output.
    The XML Stylesheet Transformation Language (XSLT) was defined by W3C (World
    Wide Web Consortium), the consortium that defines most of the common standards in modern internet communication, such as HTML and SOAP.
    SAP NetWeaver is the open integration and application platform from SAP. With
    NetWeaver ’04, there is a significant overlap between the functions of SAP
    NetWeaver and SAP BC. Many functions provided by SAP BC are offered by SAP XI
    as part of SAP NetWeaver, for example, conversion of an IDoc to an XML message,
    mapping, routing, and adapters to connect to a large number of third-party back-end
    systems. SAP BC is therefore no longer needed. New or updated SAP solutions are
    based on SAP NetWeaver. Customers looking for a strategic integration solution for
    the complete application landscape should therefore now favor SAP NetWeaver.
    The last version of SAP BC was SAP BC 4.7, which was released in June 2003. SAP
    BC has not been developed further since this release. SAP BC is not released for
    any further platforms (such as Windows 2003) and does not support any further JDK
    versions, including the current version (Version 1.4).
    For information about the supported SAP BC versions, JDKs, and operating systems,
    see SAP Note 309834. For information about the support and maintenance strategy
    for SAP BC, see SAP Note 571530. Customers who still use SAP BC need to be
    aware of the following:
    • A solution based on SAP BC cannot be a strategic, long-term solution.
    • A solution based on SAP BC is based on technology that was implemented in
    2003 and that is no longer further developed.
    • SAP BC is supported on limited platforms and for limited JDKs only. Vendor
    support for some of these platforms and JDK versions will soon be
    discontinued.
    SAP BC and SAP NetWeaver are based on different technologies: SAP BC is based
    on webMethods’ proprietary Integration Server, whereas SAP NetWeaver is based
    on open standards, such as BPEL4WS (business process execution language for
    web services). Therefore, only parts of an SAP BC implementation, such as XSLT
    mappings, can be migrated to a solution based on SAP NetWeaver. Any custom
    programming based on SAP BC, such as SAP BC flow language, is unlikely to be
    reusable in the SAP NetWeaver context.
    Purpose of this Migration Guide
    The purpose of this migration guide is to provide scenario-based descriptions of the
    migration from a company’s system landscape that uses SAP BC to exchange
    documents with business partners, to a system landscape that uses SAP XI instead.
    This migration guide outlines, for certain scenarios, the individual steps a company
    has to take to replace an existing SAP BC implementation with SAP XI.
    The basic steps in the back-end systems are:
    • Defining the logical systems
    • Maintaining the ALE distribution model
    • Maintaining partner profiles and EDI ports
    • Maintaining RFC destinations
    The basic steps in the SAP XI system are:
    • Maintaining the System Landscape Directory
    • Configuring the IDoc adapter
    • Maintaining the receiver determinations, interface determinations, and
    interface agreements
    • Maintaining the communication channels
    The type of scenario to migrate typically has an impact on the communication channels only.
    Scenario 1 IDoc/HTTP
    IDoc – HTTP Using SAP BC
    Within the system landscape of a company, an SAP system sends an IDoc
    asynchronously to SAP BC. SAP BC converts the IDoc into a standard IDoc XML
    document. The fields of the IDoc are not modified, that is, the conversion does not
    involve any mapping of source fields to target fields. After conversion, SAP BC uses
    HTTP to send the XML document synchronously to an external URL of a business
    partner.
    System Landscape
    • An SAP system and SAP BC are installed within the same system landscape
    of a company.
    • The following information is defined in the SAP system to allow data
    exchange between the SAP system and SAP BC:
    o An RFC destination and a logical system for SAP BC
    o The distribution model is maintained, if necessary
    • The following information is defined in SAP BC:
    o An SAP server with an alias is defined. For this SAP server, the
    information that the SAP BC requires to connect to the SAP system is
    specified.
    o A listener is configured to listen to requests from the SAP system.
    o A routing rule with the transport type “XML” is configured for the
    specific sender, receiver, and message type. The routing rule
    determines how a message is to be routed and where it is to be routed
    to. The scenario described does not use an ACL, (Access Control List
    to restrict execution permissions for this routing rule) or pre-processing
    or post-processing SAP BC services.
    4.2 IDoc – HTTP Using SAP XI
    Check the prerequisites described above under Prerequisites for Standard
    Scenarios.
    The IDoc adapter is used to receive an IDoc from an SAP back-end system and
    convert it to XML.
    The adapter used to post this XML to an external destination is the plain HTTP
    adapter.
    To set up the communication channel, perform the following steps:
    1. Locate the routing rule in SAP
    Business Connector.
    In the Administration View, choose
    Adapters – Routing to navigate to
    Routing Rules.
    2. Select the details of the relevant routing rule.
    To display the details, choose the green triangle (Edit).
    Transport is typically set to XML and a URL is specified. You can use this
    URL in your SAP XI settings.In some cases, Transport is set to
    B2B Service and the parameters Server Alias, Folder and Service
    exist. This is the same as when Transport is set to XML and has the
    URL http://<serverhost>:<port>/invoke/<folder>/<service>.
    You can find <serverhost> and<port> in the definition of the
    remote server under Settings –>Remote Server in the Administration
    View.
    3. Set up the communication channel in the Integration Directory using the parameters from the SAP BC routing rule.
    Use the following settings:
    • Adapter Type: HTTP Receiver
    • Transport Protocol: HTTP 1.0
    • Message Protocol: XI Payload in HTTP Body
    • Adapter Engine: Integration Server
    • Addressing Type: URL Address
    • Target Host, Service Number,and Path need to be set in accordance with the SAP BC routing rule. HTTP Proxy Host and HTTP Proxy
    Port can be set if required.All other parameters have no corresponding values in SAP BC and should be set to their default values.
    regards
    Aashish Sinha
    P : Reward points if helpful

  • Migrating from FirstClass to Exchange

    This message is for the very few out there who will be migrating from FirstClass server to Exchange.
    I created a VB Script that will convert exported messages from FirstClass into a comma delimited file (CSV) that can be imported into Exchange.
    FirstClass is not a full featured IMAP server, and thus you cannot migrate Sent emails or emails in folders using the Transporter Suite.
    If you have any questions, feel free to contact me: [email protected]
    Enjoy,
    John Dombrowski
    I cannot attach a file, so here is the code:
    'VB Script to convert Exported FirstClass emails to comma delimated files
    'Written by John Dombrowski - Thornapple Kellogg Schools - [email protected]
    'Instructions:
    '1. Create a Folder on your desktop called 'emails'
    '2. Save this file into that folder the folder
    '3. Create two (2) files inside the emails folder:
    '    1. convertedfinal.csv
    '      a. Open this file and add the following line: "From","Date","To","Subject","Body"
    '    2. temp.txt (you can leave this file blank)
    '4. Create a Folder inside the emails folder called 'Exported'
    '5. Export your FirstClass Mailbox, Folders, or Individual Emails into the folder created in step 4
    '6. Run the convertemails.vbs file
    '7. If everything ran properly, the convertedfinal.csv file will contain all of the emails that you exported in a
    '   comma delimeted file that can then be imported into other email systems.
    'Disclaimer - Use at your own will.  I am not responsible for any mishaps that may occur
    '|Start of Script|
    'Variables
    Const ForAppending = 8
    ForWriting = 2
    ForReading = 1
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'Opens Exported folder
    ShowSubfolders objFSO.GetFolder("exported")
    'Opens each sub folder
    Sub ShowSubFolders(Folder)
        For Each Subfolder in Folder.SubFolders
    folderopen = Subfolder.Path & "\content.txt"
    count = 0
    'Opens all txt and cvs files
    Set objRead = objFso.OpenTextFile (folderopen, ForReading)
    Set objWrite = objFso.OpenTextFile("convertedfinal.csv", ForAppending)
    Set objTemp = objFso.OpenTextFile("temp.txt", ForWriting)
    'Loop to read and right data
    Do While objRead.AtEndOfStream <> True
       LineData = objRead.ReadLine
    If InStr(LineData, "From:") <> 0 Then 
     arrData = split (LineData,vbTab)
     fn = arrData(0)
     fn = arrData(1)
     faddress = arrData(2)
     fdate = arrData(3)
    faddress = Replace(faddress,Chr(34),"")
    End If
    If InStr(LineData, "Subject:") <> 0 Then 
     arrData = split (LineData,vbTab)
     sn = arrData(0)
     ssubject = arrData(1)
     'ssubject = arrData(2)
    End If
    If InStr(LineData, "To:") <> 0 Then 
     arrData = split (LineData,vbTab)
     tn = arrData(0)
     tn = arrData(1)
     tname = arrData(2)
    End If
    'Starts writing body info on line 5 (you can change if necessary)
    If count > 5 Then
    objTemp.WriteLine (LineData)
    End If 
    'Does a count to set the writing of the body information on line 5
    count = count + 1
    Loop
    'Opens temp file to store body info
    Set objTempRead = objFso.OpenTextFile("temp.txt", ForReading)
    'Read and write body info
    body = objTempRead.ReadAll
    body = Replace(body,Chr(34),"")
    objWrite.WriteLine(Chr(34) & faddress & Chr(34) & "," & Chr(34) & fdate & Chr(34) & "," & Chr(34) & tname & Chr(34) & "," & Chr(34) & ssubject & Chr(34) & "," & Chr(34) & body & Chr(34))
    'Rinse and Repeat
    objRead.Close
    objWrite.Close
    objTemp.Close
    objTempRead.Close
        Next
    End Sub
    'End
    WScript.Echo "Finished"

    What version of Exchange were you using with this Script? I'm about to tackle this exact project. 
    Thanks Much. 

  • Migrating from Exchange 2007 to Exchange 2013 Public Folders coexistence

    Hi all, I'm migrating from Exchange 2007 SP3 to Exchange 2013 SP1.
    I have an Exchange 2007 server (Client Access, Hub Transport and Mailbox Server) in Site A, mailboxes and Publics Folders
    In another Site in Site B, I have already installed (Client Access and Mailbox Server) Exchange 2013 server.
    I am migrating test users, the fact is that users who migrated to Exchange Server 2013 Public folders do not see.
    How I can make the migrated users from viewing the Exchange 2007 Public Folders duration coexistence?
    Is there a "how to" to migrate Public Folders from Exchange 2007 to Exchange 2013?
    thank you very much
    Microsoft Certified IT Professional Server Administrator

    Hi,
    In Exchange 2013, the Public Folder is changed to Public Folder mailbox instead of Public Folder in Exchange 2007 database.
    Due to the changes in how public folders are stored, legacy Exchange mailboxes are unable to access the public folder hierarchy on Exchange 2013 servers. However, user mailboxes on Exchange 2013 servers or Exchange Online can connect to legacy
    public folders. Exchange 2013 public folders and legacy public folders can’t exist in your Exchange organization simultaneously. This effectively means that
    there’s no coexistence between versions.
    For this reason, it’s recommended that prior to migrating your public folders, you should
    first migrate your all legacy mailboxes to Exchange 2013. For more information about migrating public folder from previous versions, please refer to:
    http://technet.microsoft.com/en-us/library/jj150486(v=exchg.150).aspx
    (Please note the What do you need to know before you begin part in this link)
    Regards,
    Winnie Liang
    TechNet Community Support

  • IMac CPU3.06 GHz Intel Core 2 Duo, 8GB, Extremely slow and repeatedly "out of Memory" since migration from Mountain Lion to Mavericks

    Dear Apple Support Community.
    As mentioned by a number of users reporting the same problem, my 2009 iMac CPU3.06 GHz Intel Core 2 Duo, 8GB RAM, has become extremely slow and repeatedly "out of Memory" since it was migrated from Mountain Lion to Mavericks (OS 10.9 then OS 10.9.1).
    I have already run CleanMyMac, deleted 5GB of useless stuffs, which did not translate into any improvement. Following the advices collected in other Apple Support Community threads, I have applied EtreCheck the outcome of which is provided below.
    For information, I have also upgraded my 2011 MacBook CPU2.3 GHz Core i7, 8GB which became only a bit slower than before, sometimes freezing which it almost never did before. However, I am used to the fact that Mac get usually slower and more prompt fo freeze after upgrading to a more recent OS.
    Both my 2009 iMac and my 2011 MacBook have F-Secure installed. So the problem with the 2009 IMac is unlikly to be due to the presence of F-Secure. Interestingly, the few abnormalities found by Etrecheck were exacly identical before I ran CleanMyMac. There are two more findings (mentioned below) since I ran CleanMyMac on the 2009 iMac, which again didn't improve the problem.
    So please find below the details of the EtreCheck experience and some additional measurements made with iStat while running EtreCheck:
    Hardware Information:
    iMac (24-inch, Early 2009)
    iMac - model: iMac9,1
    1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
    8 GB RAM
    Video Information:
    ATI Radeon HD 4850 - VRAM: 512 MB
    Audio Plug-ins:
    BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
    AirPlay: Version: 1.9 - SDK 10.9
    AppleAVBAudio: Version: 2.0.0 - SDK 10.9
    iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
    OS X 10.9.1 (13B42) - Uptime: 0 days 2:40:57
    Disk Information:
    WDC WD1001FALS-40K1B0 disk0 : (1 TB)
    EFI (disk0s1) <not mounted>: 209.7 MB
    XooS5 HD (disk0s2) /: 999.35 GB (189.85 GB free)
    Recovery HD (disk0s3) <not mounted>: 650 MB
    OPTIARC DVD RW AD-5670S 
    USB Information:
    Apple Inc. Built-in iSight
    Canon CanoScan
    Apple Computer, Inc. IR Receiver
    Apple Inc. BRCM2046 Hub
    Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    WD My Passport 071D 800mbit - 800mbit max
    EFI (disk1s1) <not mounted>: 209.7 MB
    disk1s2 (disk1s2) <not mounted>: 2 TB
    Boot OS X (disk1s3) <not mounted>: 134.2 MB
    Thunderbolt Information:
    Kernel Extensions:
    com.f-secure.kext.fsauth          (1.0.0d1)
    Problem System Launch Daemons:
    [failed] com.apple.wdhelper.plist [REMARK: this abnormality appeared only after running CleanMyMac. It does not appear on my 2011 MacBook]
    Problem System Launch Agents:
    Launch Daemons:
    [loaded] com.adobe.fpsaud.plist
    [invalid] com.bjango.istatlocaldaemon.plist [REMARK: this abnormality pre-existed to running CleanMyMac. It appears also on my 2011 MacBook]
    [loaded] com.f-secure.fsavd.dbhelper.plist
    [loaded] com.f-secure.fsavd.plist
    [loaded] com.f-secure.fsmac.firewall.plist
    [loaded] com.f-secure.fsmac.fsupdated_guts2.plist
    [loaded] com.f-secure.fsmac.licensetool.plist
    [loaded] com.macpaw.CleanMyMac2.Agent.plist
    Launch Agents:
    [loaded] com.babylon.activation.plist
    [loaded] com.bjango.istatlocal.plist
    [loaded] com.f-secure.relauncher.plist
    [loaded] com.f-secure.trasher.plist
    User Launch Agents:
    [loaded] com.adobe.ARM.[...].plist
    [loaded] com.google.keystone.agent.plist
    [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
    [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist
    [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist
    User Login Items:
    iTunesHelper
    Dropbox
    F-Secure Anti-Virus for MAC
    3rd Party Preference Panes:
    Flash Player
    Internet Plug-ins::
    FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6
    Default Browser: Version: 537 - SDK 10.9
    AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6
    AdobePDFViewer: Version: 11.0.04 - SDK 10.6
    DivXBrowserPlugin: Version: 2.1
    Flash Player: Version: 11.9.900.170 - SDK 10.6
    OfficeLiveBrowserPlugin: Version: 12.2.8
    Google Earth Web Plug-in: Version: 6.1
    QuickTime Plugin: Version: 7.7.3
    iPhotoPhotocast: Version: 7.0
    User Internet Plug-ins::
    Picasa: Version: 1.0
    Bad Fonts:
    None
    Old applications:
    None
    Time Machine:
    Skip System Files: NO
    Mobile backups: OFF
    Auto backup: YES
    Volumes being backed up:
    XooS5 HD: Disk size: 930.71 GB Disk used: 753.90 GB
    Destinations:
    XooS5 TM [Local] (Last used)
    Total size: 2 
    Total number of backups: 32
    Oldest backup: 2013-09-15 01:11:39 +0000
    Last backup: 2013-12-07 12:48:45 +0000
    Size of backup disk: Too small. Backup size 2  < (Disk used 753.90 GB X 3)
    Time Machine details may not be accurate. All volumes being backed up may not be listed.
    REMARK: The above finding is unlikely to be accurate. In fact, my Time Machine is supported by a 2TB WD My Passport Studio external HD connected with a Firewire 800. As mentionned, only 754GB of the 2000GB are used.
    Top Processes by CPU:
    5%          backupd
    5%          Mail
    5%          WindowServer
    3%          Finder
    3%          Dropbox
    Top Processes by Memory:
    1.60 GB          mds_stores REMARK: this item was marked in red in the outcome of EtreCheck, so I assume there is something wrong there
    82 MB          Finder
    74 MB          Mail
    49 MB          softwareupdated
    49 MB          Dropbox
    Virtual Memory Statistics:
    97 MB          Free RAM
    1.21 GB          Active RAM
    1.19 GB          Inactive RAM
    1.21 GB          Wired RAM
    1.83 GB          Page-ins
    36 MB          Page-outs
    Please find now some additional measurements collected with iStat while running EtreCheck:
    Practically:
    The iMac can work slowly with only one software e.g. either Mail or Safari or Firefox, but still the below "out of Memory" message occurs about every 3 minutes.
    Aperture has becomre to slow to be useable
    If trying to write a mail (with Mail) while Safari or Firefox is open, then the "out of Memory" message occurs about every 20 seconds so I need to check on "Resume" several times per minute.
    Conclusions
    From the above, unless anyone in the Apple Support Community proves to be able to identify a specific problem leading to a way to find a cure, I tend to conclude that Mavericks is not suitable for computers operating with a Core 2 Duo CPU even with a 8GB of RAM.
    Unless I missed something, I did not see any warning from Apple Computer Inc. informing their customers they should refrain from upgrading Core 2 Duo Computers.
    The only solution I see so far is to downgrade from Mavericks to Mountain Lion. And the Apple Support Community would confirm that it is the only solution, I would appreciate to get your guidance on how to proceed.
    Intended action plan
    Migrate the above 2009 iMac to a 2014 Mac Mini Server operating on Mavericks to ensure that no data may be lost while downgrading to Montain Lion.
    Provided the above downgrading operation is successful, assign this 2009 iMac to partial retirement e.g. Mail, Skype, iTunes  and DVD player.
    In advance, I would like to thank the Apple Community for helping me either i) finding a cure to the problem, ii) or confirming that Mavericks cannot operate properly on Core 2 Duo computers, iii) and in such a case, guiding me on how to downgrade to Mountain Lion.
    Yours sincerely
    Core

    ... what anti-virus would you recommend using?
    Use what is already included with OS X. It already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac. Without exception, they will do the opposite.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources. Illegally obtained software is almost certain to contain malware.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Disable Java in Safari > Preferences > Security.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

Maybe you are looking for

  • "DATA_LENGTH_0" Short dump

    Hi SAP experts! We will appreciate a lot if you could help us with your expertise to solve an short dump loading data. Trying to load Master data for one object, when we do only to PSA everything is fine. However, if we want to continue to its data t

  • How can I back up my iPhone and iPod to a new iCloud account without losing any data?

    Hello Before Mountain Lion comes out I want to create a new iCloud account because I don't want to use the @me.com email that I created with my current iCloud account. I want to create an entirely new account with a new @me.com email address. I use i

  • If you're writing an extension that uses the LogWindow...

    ...and you want a new tab to appear in the LogWindow, you might have some problems getting the tab to display nicely. I had problems with the PMD extension - when I installed it in JDev, the PMD tab replaced the Message tab and I couldn't figure out

  • Question about AppleScript, iTunes and the app Proximity...

    So I have this application Proximity, which uses bluetooth's proximity to the cpu to run both an out-of-range script and and in-range script. I'm currently using it to activate my screensaver with password lock and vice versa. I'm also using it to sy

  • Error:- Account is block for posting

    Dear guru's Please help us to resolve this problem as on urgent basis,Your suggestion and solution is really appreciated by us......... Error:-  Account 1333 3333 is blocked for posting While Invoice is release to accounting through the transaction c