Saprfc.dll for php 5.4 or upper version

Hai All,
Purpose for interfacing SAP in PHP, Is there any saprfc.dll build for xamp version 1.7.3 or upper, or PHP 5.4 or upper,
Now, I already use saprfc.dll what compatible for PHP 5.2 only..
Thank for answer.
arif diyanto

The lastest version
on the SAPRFC How to
I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
You can use this to check if the php_saprfc.dll is missing a dependency.
I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
Hope this is useful,
Nigel

Similar Messages

  • About SAPRFC connector for PHP...

    I open this new post because Gregor make me notice that the thread where I initially post it was close...Sorry about that -:)
    Ok, question is...How can contact Eduard Koucky??? I wrote him some time ago, but he never answer me...Gregor just told that Craig do the same, without any answers...My main concern is about the TABLES parameters when calling a FM or BAPI...I remember that we had this discussion some time ago, but we never be able to solve it...
    I already tried:
    saprfc_table_init
    saprfc_table_insert
    saprfc_table_modify
    Without any luck...Maybe I need to try again...But still...If anyone can contact Eduard or give a nice solution to my problem...It would help me a lot
    P.S: What I do now to solve my lack of TABLES parameters...Is to create a long String parameters separating each line by a "/" symbol...Inside the FM, I just read it into an internal table...It's works great...But isn't the way I want to work.
    Greetings,
    Blag.

    Hi Blag,
    I've just tried this and it works perfect:
    [code]          //We must know if the function really exists
              $fce = saprfc_function_discover($rfc, "BAPI_SALESORDER_SIMULATE");
              if(!$fce){
                   echo "The function module has failed.";
                echo $rfc;
                exit;
              //Pass import parameters
              $ORDER_HEADER_IN = array (
                        "DOC_TYPE"=>"AG",
                        "SALES_ORG"=>"1000"
              saprfc_import ($fce,"ORDER_HEADER_IN",$ORDER_HEADER_IN);
              //Pass table parameters
              saprfc_table_init ($fce,"ORDER_ITEMS_IN");
              $ORDER_ITEMS_IN = array (
                        "MATERIAL"=>"P-100",
                        "REQ_QTY"=>"0000000001000"
              saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
              $ORDER_ITEMS_IN = array (
                        "MATERIAL"=>"P-101",
                        "REQ_QTY"=>"0000000001000"
              saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
              $ORDER_PARTNERS = array (
                        "PARTN_ROLE"=>"AG",
                        "PARTN_NUMB"=>"0000001555"
              saprfc_table_append ($fce,"ORDER_PARTNERS", $ORDER_PARTNERS);
              saprfc_table_init ($fce,"ORDER_ITEMS_OUT");
              //Call and execute the function
              $rc = saprfc_call_and_receive ($fce);[/code]
    Regards
    Gregor

  • Php 5.12 / Apache 2.054 / Saprfc 1.4.1 for php 5.1.1

    Hi Everybody,
    I am trying to install this sap connector.
    It's easy but no simple to find the good version running together.
    My configuration below :
    Windows XP Pro SP2
    IIS 5.1 on port 80
    Apache 2.054 on port 8080
    Php 5.12
    Saprfc 1.4.1 for php 5.1.1
    I use the binaries distributions for each product.
    I have no issue, i hope, to load php_saprfc.dll module: i have no error message when Apache is starting.
    The test file index.php is running nice and display the environment to screen, BUT I DON'T FIND SAPRFC MODULE.
    If some of you have a idea, thanks for your help.
    If its usefull i have no issue to send us my files httpd.conf and php.ini.
    Best Regards
    Georges FREROT

    Hi Everybody,
    I want test the connector saprfc with php on two technical environments bellow:
    - Windows XP SP2 Professional, IIS 5.1, php 5.11 or 512
    - Windows XP SP2 Professional, Apache 2.054, php 5.11 or 512
    Windows XP is running on C: .
    IIS 5.1 is running on port 80, and Apache 2.054 on port 8080.
    I have build a development workspace on H: .
    The directory tree has this structure:
    H
    Apache2054
    Apache2
    Php511
    ext
    sessions
    includes
    Php512
    ext
    sessions
    includes
    saprfc141-511
    WebDev
    Sessions
    I have downloaded binaries of Apache 2.054, Php 5.11 and 512 and his Pecl 5.11 and 512 and Saprfc 141 511.
    I have uncompressed :
    Php 5.11 under H:\php511, 
    Pecl 5.11 under H:\php511\ext,
    Php 5.12 under H:\php512, 
    Pecl 5.12 under H:\php512\ext,
    Apache 2.054 under H:\Apache2054,
    SapRfc 1.4.1 5.1.1 under H:\saprfc141-511
    My first step is run php on IIS in isapi mode. It’s successful.
    The command localhost:80//Index.php display correctly echo phpinfo().
    My second step is install saprfc requirements:
    Copy:
    php_saprfc.dll in H:\Php511\ext
    php_saprfc.dll in H:\Php512\ext
    librfc32.dll up to date in C:\Windows\System32
    Verify msvcp60.dll up to date is in C:\Windows\System32.
    Modify php.ini:
    Include_path = “.;H:\Php511\includes;H:\Php511\pear”
    Extension_dir =”H:\Php511\ext”
    Include_path = “.;H:\Php512\includes;H:\Php512\pear”
    Extension_dir =”H:\Php512\ext”
    Extension=php_mbstring.dll
    Extension=php_gd2.dll
    Extension= php_saprfc.dll
    Extension=php_soap.dll
    Extension=php_mysql.dll
    To run php 5.11 or php 5.12 I modify the system path and configuration in WebServer 
    The results with php 5.11 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 loading error message the same twice for php_saprfc.dll
    The results with php 5.12 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 no loading error message, echo phpinfo() running nice, but no display the saprfc module
    If some of you have an idea what is wrong or forget at this point, thanks to help me.
    Bests Regards
    Georges FREROT

  • Saprfc version for php 5.2.1

    Hi all
      Can anyone pls tell me the version of saprfc to be installed for php version 5.2.1
    Thanks in advance

    The lastest version
    on the SAPRFC How to
    I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
    You can use this to check if the php_saprfc.dll is missing a dependency.
    I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
    The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
    Hope this is useful,
    Nigel

  • In the download for PHP 5.3, there is no php5ts.dll

    found php5ts.dll
    PHP 5.3 not working aft er the following changes were made:
    IIS: properties->home directory->configuration   C:\PHP\php5.dll
    with GET,HOST,POST,DEBUG
    doc_root = "C:\inetpub\wwwroot"
    tried each of :
    ;extension=php_sqlsrv_53_nts_vc9.dll
    ;extension=php_sqlsrv_53_nts_vc6.dll
    ;extension=php_sqlsrv_53_ts_vc9.dll
    extension=php_sqlsrv_53_ts_vc6.dll
    cgi.force_redirect = Off
    IIS 5.1 with cgi 1.5 RC
    extension_dir = "C:\PHP\ext"
    contains all 4 files:
    php_sqlsrv_53_nts_vc9.dll
    php_sqlsrv_53_nts_vc6.dll
    php_sqlsrv_53_ts_vc9.dll
    php_sqlsrv_53_ts_vc6.dll
    added to XP Prof SP3 path: ;C:\PHP;C:\PHP\ext
    also created (just in case) PHPRC environment variable (alongside path)
    containing C:\PHP;C:\PHP\ext
    I gave IUSR_LANDON all powers
    http://207.254.225.224:8080/phpinfo.php
    all firewalls set to accept 8080
    <?php
           phpinfo();
    ?>
    _______________________________________________RESULTS
      The website cannot display the page
    HTTP 500 
       Most likely causes:
    •The website is under maintenance.
    •The website has a programming error.
       What you can try:
         Refresh the page.
         Go back to the previous page.
         More information
    This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.
    For more information about HTTP errors, see Help.
    Should I remove the old versions (not used here) of ntwdblib.dll?

    The flavor of the Microsoft SQL Server Driver for PHP that you enabled in the php.ini file is the Thread Safe VC6 version. Therefore, you’ll need to install the appropriate version of PHP run-time (i.e. VC6 x86 Thread Safe) from http://windows.php.net/download/.
    When installing PHP, you should select the IIS/FastCGI option, and then establish a mapping between IIS and php-cgi.exe. In other words, your IIS configuration should point to the PHP CGI executable and not php5.dll that happens to be the Non Thread-Safe PHP run-time.
    Moreover, the library ntwdblib.dll is not needed anymore.
    On final note: it might be worth upgrading your IIS to at least version 6.0 that was optimized for FastCGI usage.
    Hope this helps,
    Serban
    Serban Iliescu - MSFT

  • ADDT 1.0.1 Compatibility Patch for PHP 5.3

    It doesn't appear this link to Interakt's PHP 5.3 patch for ADDT 1.0.1 has been posted here yet.
    LINK: http://www.interaktonline.info/files/47-ADDT-1.0.1---PHP-5.3-compatibility-patch.html
    If you have trouble having the download dialog box open like I did, just right click on the Download File and save as.
    I had over a dozen websites developed with ADDT and this patched fix all my PHP 5.3 issues.
    I simply uploaded and replaced the 18 files that come in the patched zip.
    There is also a step-by-step guide on how to update the files on your own if you rather do that.
    GUIDE: http://www.interaktonline.info/article/42-Making-Adobe-Dreamweaver-Developer-Toolbox-compa tible-with-PHP-5.3.html

    The flavor of the Microsoft SQL Server Driver for PHP that you enabled in the php.ini file is the Thread Safe VC6 version. Therefore, you’ll need to install the appropriate version of PHP run-time (i.e. VC6 x86 Thread Safe) from http://windows.php.net/download/.
    When installing PHP, you should select the IIS/FastCGI option, and then establish a mapping between IIS and php-cgi.exe. In other words, your IIS configuration should point to the PHP CGI executable and not php5.dll that happens to be the Non Thread-Safe PHP run-time.
    Moreover, the library ntwdblib.dll is not needed anymore.
    On final note: it might be worth upgrading your IIS to at least version 6.0 that was optimized for FastCGI usage.
    Hope this helps,
    Serban
    Serban Iliescu - MSFT

  • Where can I get the latest Microsoft.SharePoint.ApplicationPages.dll for SharePoint 2010?

    Can somebody point me to where I can get the latest Microsoft.SharePoint.ApplicationPages.dll for SharePoint 2010?
    When I go into Library Settings on any library or list in SharePoint 2010 I’m getting an unexpected error; I see this in the SharePoint log:
    11/18/2014 13:12:26.36 w3wp.exe (0x2260)                       0x33EC  SharePoint Foundation        
            Runtime                                      
    tkau       Unexpected       System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.SharePoint.ApplicationPages.ListEditPage.SetSectionLinks()    
    at Microsoft.SharePoint.ApplicationPages.ListEditPage.OnLoad(EventArgs e)     at ASP._layouts_listedit_aspx.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 03c7c5b4-407f-461c-9cf7-0304eb797b1a
    I searched online and found this:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/ed5aa58a-f5cc-4449-8bfd-65ca6f101641/list-settings-page-error-on-all-type-of-sharepoint-2010-listslibraries?forum=sharepointgeneralprevious.  It says:
    We noticed exactly the same issue after applying some SharePoint updates (SP1 + October 2011 CU).  The problem turned out to be that there was an older version (V14.0.4762.1000) of Microsoft.SharePoint.ApplicationPages.dll in the GAC. 
    This version was being loaded instead of the latest version of the DLL (14.0.6112.5000).
    Loading the latest version of Microsoft.SharePoint.ApplicationPages.dll fixed the problem with the List/Library settings page.
    I check our Microsoft.SharePoint.ApplicationPages.dll and found that we have version 14.0.6024.1000.
    I would like to try replacing it with the latest version to see if that could fix the problem going into library settings.
    Does someone know where I can get the latest Microsoft.SharePoint.ApplicationPages.dll for SharePoint 2010?
    David

    You would need to extract it from an update. Pre-SP2 SharePoint 2010 is no longer supported, I'd recommend upgrading to SP2 which should take care of any versioning issues.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Problem in creating a java proxy for PHP web service

    This is a problem in generating a java proxy for a PHP webservice.
    I have a PHP service running on Wamp Server and also a PHP client which is able to call the service.
    The WSDL for the PHP web service is also generated .
    I am trying to create a java proxy using the jdev (10.1.3.0.3) from the wsdl file.
    The wsdl generated by the php program is
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:si="http://soapinterop.org/xsd" xmlns:tns="urn:hellowsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:hellowsdl">
    <types>
    <xsd:schema targetNamespace="urn:hellowsdl">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
      </xsd:schema>
      </types>
    <message name="helloRequest">
      <part name="name" type="xsd:string" />
      </message>
    <message name="helloResponse">
      <part name="return" type="xsd:string" />
      </message>
    <portType name="hellowsdlPortType">
    <operation name="hello">
      <documentation>Says hello to the caller</documentation>
      <input message="tns:helloRequest" />
      <output message="tns:helloResponse" />
      </operation>
      </portType>
    <binding name="hellowsdlBinding" type="tns:hellowsdlPortType">
      <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    <operation name="hello">
      <soap:operation soapAction="urn:hellowsdl#hello" style="rpc" />
    <input>
      <soap:body use="encoded" namespace="urn:hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
    <output>
      <soap:body use="encoded" namespace="urn:hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
      </operation>
      </binding>
    <service name="hellowsdl">
    <port name="hellowsdlPort" binding="tns:hellowsdlBinding">
      <soap:address location="http://localhost/mywork/myphp.php" />
      </port>
      </service>
      </definitions>After making following changes to the wsdl program, I tried to generate java proxy.
    <definitions name="hellowsdl"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:si="http://soapinterop.org/xsd" xmlns:tns="http://localhost/mywork/hellowsdl.wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://localhost/mywork/myphpwsdl.wsdll">
    <types>
    <xsd:schema targetNamespace="http://localhost/mywork/hellowsdl.wsdl">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
      </xsd:schema>
      </types>
    <message name="helloRequest">
      <part name="name" type="xsd:string" />
      </message>
    <message name="helloResponse">
      <part name="return" type="xsd:string" />
      </message>
    <portType name="hellowsdlPortType">
    <operation name="hello">
      <documentation>Says hello to the caller</documentation>
      <input message="tns:helloRequest" />
      <output message="tns:helloResponse" />
      </operation>
      </portType>
    <binding name="hellowsdlBinding" type="tns:hellowsdlPortType">
      <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    <operation name="hello">
      <soap:operation soapAction="" style="rpc" />
    <input>
      <soap:body use="encoded" namespace="http://localhost/mywork/hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
    <output>
      <soap:body use="encoded" namespace="http://localhost/mywork/hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
      </operation>
      </binding>
    <service name="hellowsdl">
    <port name="hellowsdlPort" binding="tns:hellowsdlBinding">
      <soap:address location="http://localhost/mywork/myphp.php" />
      </port>
      </service>
      </definitions>This is how the java stub file looks like:
    public class HellowsdlBinding_Stub
        extends oracle.j2ee.ws.client.StubBase
        implements demo.mypackage.HellowsdlPortType {
         *  public constructor
        public HellowsdlBinding_Stub(HandlerChain handlerChain) {
            super(handlerChain);
            _setProperty(ENDPOINT_ADDRESS_PROPERTY, "http://localhost/mywork/hellowsdl.php");
            setSoapVersion(SOAPVersion.SOAP_11);
            setServiceName( new QName("http://localhost/mywork/hellowsdl","hellowsdl"));
            setPortName( new QName("http://localhost/mywork/hellowsdl","hellowsdlPort"));
         *  implementation of hello
        public java.lang.String hello(java.lang.String name)
            throws java.rmi.RemoteException {
            StreamingSenderState _state = null;
            try {
                _state = _start(_handlerChain);
                if (_getProperty(ClientConstants.DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS) != null) {
                    _state.getMessageContext().getMessage().setProperty("DimeEncode",_getProperty(ClientConstants.DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS));
                InternalSOAPMessage _request = _state.getRequest();
                _request.setOperationCode(hello_OPCODE);
                _state.getMessageContext().setProperty("oracle.j2ee.ws.mgmt.interceptor.operation-qname",new QName("","hello"));
                demo.mypackage.runtime.HellowsdlBinding_hello_ReqS _myHellowsdlBinding_hello_ReqS = new demo.mypackage.runtime.HellowsdlBinding_hello_ReqS();
            _myHellowsdlBinding_hello_ReqS.setName(name);
            SOAPBlockInfo _bodyBlock = new SOAPBlockInfo(ns1_hello_hello_QNAME);
            _bodyBlock.setValue(_myHellowsdlBinding_hello_ReqS);
            _bodyBlock.setSerializer(myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer);
            _request.setBody(_bodyBlock);
            _state.getMessageContext().setProperty("http.soap.action", "http://localhost/mywork/hellowsdl");
            _send((String) _getProperty(ENDPOINT_ADDRESS_PROPERTY), _state);
            demo.mypackage.runtime.HellowsdlBinding_hello_RespS _myHellowsdlBinding_hello_RespS = null;
            Object _responseObj = _state.getResponse().getBody().getValue();
            if (_responseObj instanceof SOAPDeserializationState) {
                _myHellowsdlBinding_hello_RespS =
                    (demo.mypackage.runtime.HellowsdlBinding_hello_RespS)((SOAPDeserializationState)_responseObj).getInstance();
            } else {
                _myHellowsdlBinding_hello_RespS =
                    (demo.mypackage.runtime.HellowsdlBinding_hello_RespS)_responseObj;
            return _myHellowsdlBinding_hello_RespS.get_return();
        } catch (RemoteException e) {
            // let this one through unchanged
            throw e;
        } catch (JAXRPCException e) {
            throw new RemoteException(e.getMessage(), e);
        } catch (Exception e) {
            if (e instanceof RuntimeException) {
                throw (RuntimeException)e;
            } else {
                throw new RemoteException(e.getMessage(), e);
    *  this method deserializes the request/response structure in the body
    protected void _readFirstBodyElement(XMLReader bodyReader, SOAPDeserializationContext deserializationContext, StreamingSenderState  state) throws Exception {
        int opcode = state.getRequest().getOperationCode();
        switch (opcode) {
            case hello_OPCODE:
                _deserialize_hello(bodyReader, deserializationContext, state);
                break;
            default:
                throw new SenderException("sender.response.unrecognizedOperation", Integer.toString(opcode));
    * This method deserializes the body of the hello operation.
    private void _deserialize_hello(XMLReader bodyReader, SOAPDeserializationContext deserializationContext, StreamingSenderState state) throws Exception {
        try {
            Object myHellowsdlBinding_hello_RespSObj =
                myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer.deserialize(ns1_hello_helloResponse_QNAME,
                    bodyReader, deserializationContext);
            SOAPBlockInfo bodyBlock = new SOAPBlockInfo(ns1_hello_helloResponse_QNAME);
            bodyBlock.setValue(myHellowsdlBinding_hello_RespSObj);
            state.getResponse().setBody(bodyBlock);
        } catch (DeserializationException e) {
            if (e.getSoapFaultSubCodeType() == JAXRPCExceptionBase.FAULT_CODE_NONE && e.getSoapFaultCodeType() != JAXRPCExceptionBase.FAULT_CODE_DATA_ENCODING_UNKNOWN) {
                e.setSoapFaultSubCodeType(JAXRPCExceptionBase.FAULT_CODE_BAD_ARGUMENTS);
            throw e;
    public String _getEncodingStyle() {
        return SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding();
    public void _setEncodingStyle(String encodingStyle) {
        throw new UnsupportedOperationException("cannot set encoding style");
    public ClientTransport getClientTransport() {
        return super._getTransport();
    * This method returns an array containing (prefix, nsURI) pairs.
    protected String[] _getNamespaceDeclarations() {
        return myNamespace_declarations;
    * This method returns an array containing the names of the headers we understand.
    public QName[] _getUnderstoodHeaders() {
        return understoodHeaderNames;
    * This method handles the case of an empty SOAP body.
    protected void _handleEmptyBody(XMLReader reader, SOAPDeserializationContext deserializationContext, StreamingSenderState state) throws Exception {
    public void _initialize(InternalTypeMappingRegistry registry) throws Exception {
        super._initialize(registry);
        myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer = (CombinedSerializer)registry.getSerializer(SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding(), demo.mypackage.runtime.HellowsdlBinding_hello_ReqS.class, ns1_hello_TYPE_QNAME);
        myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer = (CombinedSerializer)registry.getSerializer(SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding(), demo.mypackage.runtime.HellowsdlBinding_hello_RespS.class, ns1_helloResponse_TYPE_QNAME);
    private static final QName _portName = new QName("http://localhost/mywork/hellowsdl", "hellowsdlPort");
    private static final int hello_OPCODE = 0;
    private static final QName ns1_hello_hello_QNAME = new QName("http://localhost/mywork/hellowsdl", "hello");
    private static final QName ns1_hello_TYPE_QNAME = new QName("http://localhost/mywork/hellowsdl", "hello");
    private CombinedSerializer myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer;
    private static final QName ns1_hello_helloResponse_QNAME = new QName("http://localhost/mywork/hellowsdl", "helloResponse");
    private static final QName ns1_helloResponse_TYPE_QNAME = new QName("http://localhost/mywork/hellowsdl", "helloResponse");
    private CombinedSerializer myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer;
    private static final String[] myNamespace_declarations =
                                        new String[] {
                                            "ns0", "http://localhost/mywork/hellowsdl"
    private static final QName[] understoodHeaderNames = new QName[] {  };
    }The errors that are produced are-
    java.rmi.RemoteException: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 404 Not Found; nested exception is:
         HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 404 Not Found
    Kindly help to resolve this.
    Thanks.

    This is a problem in generating a java proxy for a PHP webservice.
    I have a PHP service running on Wamp Server and also a PHP client which is able to call the service.
    The WSDL for the PHP web service is also generated .
    I am trying to create a java proxy using the jdev (10.1.3.0.3) from the wsdl file.
    The wsdl generated by the php program is
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:si="http://soapinterop.org/xsd" xmlns:tns="urn:hellowsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:hellowsdl">
    <types>
    <xsd:schema targetNamespace="urn:hellowsdl">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
      </xsd:schema>
      </types>
    <message name="helloRequest">
      <part name="name" type="xsd:string" />
      </message>
    <message name="helloResponse">
      <part name="return" type="xsd:string" />
      </message>
    <portType name="hellowsdlPortType">
    <operation name="hello">
      <documentation>Says hello to the caller</documentation>
      <input message="tns:helloRequest" />
      <output message="tns:helloResponse" />
      </operation>
      </portType>
    <binding name="hellowsdlBinding" type="tns:hellowsdlPortType">
      <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    <operation name="hello">
      <soap:operation soapAction="urn:hellowsdl#hello" style="rpc" />
    <input>
      <soap:body use="encoded" namespace="urn:hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
    <output>
      <soap:body use="encoded" namespace="urn:hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
      </operation>
      </binding>
    <service name="hellowsdl">
    <port name="hellowsdlPort" binding="tns:hellowsdlBinding">
      <soap:address location="http://localhost/mywork/myphp.php" />
      </port>
      </service>
      </definitions>After making following changes to the wsdl program, I tried to generate java proxy.
    <definitions name="hellowsdl"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:si="http://soapinterop.org/xsd" xmlns:tns="http://localhost/mywork/hellowsdl.wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://localhost/mywork/myphpwsdl.wsdll">
    <types>
    <xsd:schema targetNamespace="http://localhost/mywork/hellowsdl.wsdl">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
      </xsd:schema>
      </types>
    <message name="helloRequest">
      <part name="name" type="xsd:string" />
      </message>
    <message name="helloResponse">
      <part name="return" type="xsd:string" />
      </message>
    <portType name="hellowsdlPortType">
    <operation name="hello">
      <documentation>Says hello to the caller</documentation>
      <input message="tns:helloRequest" />
      <output message="tns:helloResponse" />
      </operation>
      </portType>
    <binding name="hellowsdlBinding" type="tns:hellowsdlPortType">
      <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    <operation name="hello">
      <soap:operation soapAction="" style="rpc" />
    <input>
      <soap:body use="encoded" namespace="http://localhost/mywork/hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
    <output>
      <soap:body use="encoded" namespace="http://localhost/mywork/hellowsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
      </operation>
      </binding>
    <service name="hellowsdl">
    <port name="hellowsdlPort" binding="tns:hellowsdlBinding">
      <soap:address location="http://localhost/mywork/myphp.php" />
      </port>
      </service>
      </definitions>This is how the java stub file looks like:
    public class HellowsdlBinding_Stub
        extends oracle.j2ee.ws.client.StubBase
        implements demo.mypackage.HellowsdlPortType {
         *  public constructor
        public HellowsdlBinding_Stub(HandlerChain handlerChain) {
            super(handlerChain);
            _setProperty(ENDPOINT_ADDRESS_PROPERTY, "http://localhost/mywork/hellowsdl.php");
            setSoapVersion(SOAPVersion.SOAP_11);
            setServiceName( new QName("http://localhost/mywork/hellowsdl","hellowsdl"));
            setPortName( new QName("http://localhost/mywork/hellowsdl","hellowsdlPort"));
         *  implementation of hello
        public java.lang.String hello(java.lang.String name)
            throws java.rmi.RemoteException {
            StreamingSenderState _state = null;
            try {
                _state = _start(_handlerChain);
                if (_getProperty(ClientConstants.DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS) != null) {
                    _state.getMessageContext().getMessage().setProperty("DimeEncode",_getProperty(ClientConstants.DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS));
                InternalSOAPMessage _request = _state.getRequest();
                _request.setOperationCode(hello_OPCODE);
                _state.getMessageContext().setProperty("oracle.j2ee.ws.mgmt.interceptor.operation-qname",new QName("","hello"));
                demo.mypackage.runtime.HellowsdlBinding_hello_ReqS _myHellowsdlBinding_hello_ReqS = new demo.mypackage.runtime.HellowsdlBinding_hello_ReqS();
            _myHellowsdlBinding_hello_ReqS.setName(name);
            SOAPBlockInfo _bodyBlock = new SOAPBlockInfo(ns1_hello_hello_QNAME);
            _bodyBlock.setValue(_myHellowsdlBinding_hello_ReqS);
            _bodyBlock.setSerializer(myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer);
            _request.setBody(_bodyBlock);
            _state.getMessageContext().setProperty("http.soap.action", "http://localhost/mywork/hellowsdl");
            _send((String) _getProperty(ENDPOINT_ADDRESS_PROPERTY), _state);
            demo.mypackage.runtime.HellowsdlBinding_hello_RespS _myHellowsdlBinding_hello_RespS = null;
            Object _responseObj = _state.getResponse().getBody().getValue();
            if (_responseObj instanceof SOAPDeserializationState) {
                _myHellowsdlBinding_hello_RespS =
                    (demo.mypackage.runtime.HellowsdlBinding_hello_RespS)((SOAPDeserializationState)_responseObj).getInstance();
            } else {
                _myHellowsdlBinding_hello_RespS =
                    (demo.mypackage.runtime.HellowsdlBinding_hello_RespS)_responseObj;
            return _myHellowsdlBinding_hello_RespS.get_return();
        } catch (RemoteException e) {
            // let this one through unchanged
            throw e;
        } catch (JAXRPCException e) {
            throw new RemoteException(e.getMessage(), e);
        } catch (Exception e) {
            if (e instanceof RuntimeException) {
                throw (RuntimeException)e;
            } else {
                throw new RemoteException(e.getMessage(), e);
    *  this method deserializes the request/response structure in the body
    protected void _readFirstBodyElement(XMLReader bodyReader, SOAPDeserializationContext deserializationContext, StreamingSenderState  state) throws Exception {
        int opcode = state.getRequest().getOperationCode();
        switch (opcode) {
            case hello_OPCODE:
                _deserialize_hello(bodyReader, deserializationContext, state);
                break;
            default:
                throw new SenderException("sender.response.unrecognizedOperation", Integer.toString(opcode));
    * This method deserializes the body of the hello operation.
    private void _deserialize_hello(XMLReader bodyReader, SOAPDeserializationContext deserializationContext, StreamingSenderState state) throws Exception {
        try {
            Object myHellowsdlBinding_hello_RespSObj =
                myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer.deserialize(ns1_hello_helloResponse_QNAME,
                    bodyReader, deserializationContext);
            SOAPBlockInfo bodyBlock = new SOAPBlockInfo(ns1_hello_helloResponse_QNAME);
            bodyBlock.setValue(myHellowsdlBinding_hello_RespSObj);
            state.getResponse().setBody(bodyBlock);
        } catch (DeserializationException e) {
            if (e.getSoapFaultSubCodeType() == JAXRPCExceptionBase.FAULT_CODE_NONE && e.getSoapFaultCodeType() != JAXRPCExceptionBase.FAULT_CODE_DATA_ENCODING_UNKNOWN) {
                e.setSoapFaultSubCodeType(JAXRPCExceptionBase.FAULT_CODE_BAD_ARGUMENTS);
            throw e;
    public String _getEncodingStyle() {
        return SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding();
    public void _setEncodingStyle(String encodingStyle) {
        throw new UnsupportedOperationException("cannot set encoding style");
    public ClientTransport getClientTransport() {
        return super._getTransport();
    * This method returns an array containing (prefix, nsURI) pairs.
    protected String[] _getNamespaceDeclarations() {
        return myNamespace_declarations;
    * This method returns an array containing the names of the headers we understand.
    public QName[] _getUnderstoodHeaders() {
        return understoodHeaderNames;
    * This method handles the case of an empty SOAP body.
    protected void _handleEmptyBody(XMLReader reader, SOAPDeserializationContext deserializationContext, StreamingSenderState state) throws Exception {
    public void _initialize(InternalTypeMappingRegistry registry) throws Exception {
        super._initialize(registry);
        myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer = (CombinedSerializer)registry.getSerializer(SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding(), demo.mypackage.runtime.HellowsdlBinding_hello_ReqS.class, ns1_hello_TYPE_QNAME);
        myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer = (CombinedSerializer)registry.getSerializer(SOAPEncodingConstants.getSOAPEncodingConstants(soapVersion).getURIEncoding(), demo.mypackage.runtime.HellowsdlBinding_hello_RespS.class, ns1_helloResponse_TYPE_QNAME);
    private static final QName _portName = new QName("http://localhost/mywork/hellowsdl", "hellowsdlPort");
    private static final int hello_OPCODE = 0;
    private static final QName ns1_hello_hello_QNAME = new QName("http://localhost/mywork/hellowsdl", "hello");
    private static final QName ns1_hello_TYPE_QNAME = new QName("http://localhost/mywork/hellowsdl", "hello");
    private CombinedSerializer myns1_hello__HellowsdlBinding_hello_ReqS_SOAPSerializer;
    private static final QName ns1_hello_helloResponse_QNAME = new QName("http://localhost/mywork/hellowsdl", "helloResponse");
    private static final QName ns1_helloResponse_TYPE_QNAME = new QName("http://localhost/mywork/hellowsdl", "helloResponse");
    private CombinedSerializer myns1_helloResponse__HellowsdlBinding_hello_RespS_SOAPSerializer;
    private static final String[] myNamespace_declarations =
                                        new String[] {
                                            "ns0", "http://localhost/mywork/hellowsdl"
    private static final QName[] understoodHeaderNames = new QName[] {  };
    }The errors that are produced are-
    java.rmi.RemoteException: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 404 Not Found; nested exception is:
         HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 404 Not Found
    Kindly help to resolve this.
    Thanks.

  • Error while installing flash builder 4.5 for php

    Hello to all.
    Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend installed....
    can someone please help me? I just wanna use this freaking tool!!! =D
    Here is my LOG of installation:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0: 1 (0,1)
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0: 1 (0,1)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 2 (3,1)
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0: 3 (0,1)
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0: 3 (0,1)
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0: 3 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 3 (0,1)
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0: 3 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 3 (0,1)
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0: 4 (0,0)
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0: 4 (0,0)
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0: 5 (7,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: C:\Program Files (x86)\FLASHBUILDER
    Setting property "driverAdobeCode" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Setting property "mediaSignature" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Found payload actions:
    Deciding what installer mode to use...
    {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 not installed
    {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is: false
    [    4888] Mon Jun 20 08:30:05 2011  WARN
    DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    [    4888] Mon Jun 20 08:30:05 2011  INFO
    Value returned on lookup of payload: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is: true
    Action string for {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0  is remove
    Selection of payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 is: false
    Action string for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0 is: true
    Action string for {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 is: true
    Action string for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0 is: true
    Action string for {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0  is none
    Value returned on lookup of payload: {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0 is: true
    Action string for {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0  is none
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: true
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0 is: true
    Action string for {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 is: true
    Action string for {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\FLASHBUILDER
    [    4888] Mon Jun 20 08:30:06 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    ::START TIMER:: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}]
    [    3776] Mon Jun 20 08:30:06 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Effective AdobeCode for: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} is {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    [    3776] Mon Jun 20 08:30:07 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}] took 1004.34 milliseconds (1.00434 seconds) DTR = 2732.15 KBPS (2.66812 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    The csu inventory was not updated for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [    6088] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1006.47 milliseconds (1.00647 seconds) DTR = 5250.03 KBPS (5.12699 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:09 2011  INFO
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Calling the custom action code for pre-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066}
    ::START TIMER:: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}]
    [    1064] Mon Jun 20 08:30:09 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}] took 1014.44 milliseconds (1.01444 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [    4696] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1009.85 milliseconds (1.00985 seconds) DTR = 6947.54 KBPS (6.78471 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Calling the custom action code for pre-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    ::START TIMER:: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}]
    [    2788] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Effective AdobeCode for: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} is {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}] took 1019.34 milliseconds (1.01934 seconds) DTR = 18765.1 KBPS (18.3253 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0
    Calling the custom action code for pre-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378}
    ::START TIMER:: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}]
    [    4788] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}] took 1006.47 milliseconds (1.00647 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0
    Calling the custom action code for pre-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A}
    ::START TIMER:: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}]
    [     664] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}] took 1009.34 milliseconds (1.00934 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0
    Calling the custom action code for pre-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    ::START TIMER:: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}]
    [    5256] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Effective AdobeCode for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} is {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    [    5256] Mon Jun 20 08:30:15 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}] took 1014.14 milliseconds (1.01414 seconds) DTR = 15709.9 KBPS (15.3417 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:16 2011  INFO
    Successfully updated the csu inventory for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0
    Calling the custom action code for pre-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    ::START TIMER:: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}]
    [     304] Mon Jun 20 08:30:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}] took 1012.73 milliseconds (1.01273 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC}
    ::START TIMER:: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}]
    [    3496] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}] took 1004.29 milliseconds (1.00429 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    2844] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}] took 1019.87 milliseconds (1.01987 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    4888] Mon Jun 20 08:30:21 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 11 components:
    - Microsoft_VC90_CRT_x86
    - Adobe Flash Builder
    - Adobe Flash Player 10 Plugin
    - Adobe Flash Player 10 ActiveX
    - Microsoft_VC90_MFC_x86
    - AdobeTypeSupport CS5
    - AdobeHelp
    - Microsoft_VC90_MFCLOC_x86
    - AdobeCMaps CS5
    - Adobe Player for Embedding 3.2
    - Suite Shared Configuration CS5.5
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16246.8 milliseconds (16.2468 seconds) DTR = 3085.89 KBPS (3.01357 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 1 warning(s)
    WARNING: DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • Trying to install Acrobate 8 Standard on PC with Windows 7, 64 bit. During the installation I was asked to provide "File Adobe PDF.dll for Windows Vista. How can I obtain the required file?

    Trying to install Acrobate 8 Standard on PC with Windows 7, 64 bit. During the installation I was asked to provide "File Adobe PDF.dll for Windows Vista. How can I obtain the required file?

    Nothing in the Acrobat 8.x product family is compatible with Windows 7 (or any contemporary OS).
    The Acrobat 8.x product family passed into End of Support way back -- (November 2011).
    The current release of Acrobat (XI) is compatible in Windows 7.
    Be well...

  • Can't figure out how to install sql server for PHP

    I am trying to install SQL Server for PHP on a server with Server 2008 32 bit.  The exe from http://www.microsoft.com/en-us/download/details.aspx?id=20098 keeps tell me that it is an invalid win32 application.  I've tried running as administrator
    as well.  Somewhere I read you need to open the exe with 7zip.  I was able to do that and see all the files in there, but where do I go from there?
    Thanks
    Mike
    edit: forgot to mention I'm using Apache for my server

    That solution is obsolete. The current solution is here:
    http://msdn.microsoft.com/en-us/sqlserver/ff657782.aspx
    bill ross

  • How to recover deleted projects in adobe flash builder 4.5 for PHP

    Hi
    Problem:I accidently deleted project in adobe flash builder 4.5 for PHP and in confirming dialogue box,i checked delete contents one(see figure).
    I have wasted almost 6 hours and googled almost everything but couldn't find solution.
    I have also used data recovery software like Get Data:Recover my deleted files.It found all my deleted files which was deleted by me pressing Shift+Del,but it didn't displayed files which i wanted(since they were deleted by Adobe flash builder).
    Any help would be welcomed as that project was so important for me.

    Thanks for your solution but in mine it saying,There are no previous versions found.
    I have used almost 6 recovery software paid and free and didn't intstalled on that drive where my original files are located so that it don't get overwritten.
    All of them are able to recover some files like
    .project
    public/bin-debug folder
    .settings folder
    But my .php files i located in web root folder.Those file by i connect data/services. I mean PHP project files are deleted.
    I had following structure of files
    <Web root > php scritps to connect data\services\UserService.php                  (this file)
    <Web root > php scritps to connect data\services\EmployeeService.php          (this file)
    <Web root > php scritps to connect data\test\test.php                                    (this file)
    <Web root > php scritps to connect data\Imp files to connect data using PHP and MySql.txt (this file)
    Files marked by "this files "  are  lost and not found by any recovery software.
    I need those php and txt files specifically.

  • Which path of AddOnInstallAPI_x64.dll for 64 bit of SAP B1 9.0?

    Hi Everybody,
    Can u explain which path of AddOnInstallAPI_x64.dll for 64 bit of SAP B1 9.0 Version?
    Please share the download path for AddOnInstallAPI_x64.dll for 64 bit of SAP B1 9.0 Version.
    When am creating ARD fie for 64 bit of SAP B1 9.0 , By Right Click on the Project Properties-->compile-->Advanced Compile Options-->X64.
    Once created ARD file, then i opened "C:\Users\User1\Desktop\ARDFile\ARDname\ARDname\ARDname\AddOnRegDataGenFile"
    While double click on the "windows Batch file"(AddOnRegDataGen), it automatically generates ARD file and EXE File.
    In ARD file, Edit the ARD file--> Change the Platform "N" to "X". whereas EXE file could not change the 64 bit.
    Hence the error shows in SAP b1 "Addon exception or "Incorrect string format".
    Please fix this issue ASAP.
    Thanks & Regards,
    Bowya S S

    hi have a look below posts..
    While running Addon in server I am getting Error...
    in this post see only last reply only
    how to prepare  ard  for 64  bit os...
    How to make a ARD File
    If it is wrong wait for expert suggestion...

  • Dmamgr.dll & pcimgr.dll for Visual Studio 6.0 (Win 98 or 2K)

    I am missing the following NI dll's:dmamgr.dll & pcimgr.dll for Visual Studio 6.0 (Win 98 or 2K)
    Does anyone know the name of a .zip file that includes them, or any other information pertaining to them?
    Is there anyone from NI who has them?
    Thanks.

    Hi. An NI support engineer sent me a link, but when I tested it, the link failed.  Apparently it was only temporary.
    In any event, I've resolved this issue for my own satisfaction, however for the benefit of anyone with the same problem, the
    .dll's are in the following zip file:
    nivxi211.ZIP
    None-the-less, I did a search of the NI web site and cannot find this file at this time, so if anyone else wants it, they'll have to ask someone again.
    Thanks, however, as I said, my issue has been resolved happily. (-:
    JoeSoftware

  • Cannot install Flash Builder 4.6 for PHP

    I have FB4.5 premium installed, and have bought an upgrade license to the "for PHP" version. I downloaded the 2 files from the adobe web site (only V4.6 seems to be downloadable now) - that's FlashBuilderPHP_4_6_LS1.7z and FlashBuilderPHP_4_6_LS1.exe. The installation goes past specifying all the options but just before it finishes it says "rolling back installation" and exits. I hunted around and founf PDApp.log, and these are the last few lines. They give me no clue as to what has gone wrong except maybe the first line here but it keeps going for a little while after that message. I've tried 3 times now with a reboot in between, and it fails every time. Is it time to download a fresh copy of the installation files or get a DVD?
    Thanks
    2/3/2012 14:11:44 [INFO] PIM - Package id BE253463-D6DD-4046-BF29-FAF2E8EADEFB is already installed
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:44 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:49 [INFO] Utilities - File does not exist
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx.
    2/3/2012 14:11:50 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx
    2/3/2012 14:11:50 [INFO] Setup - Start Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - START installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - Trying to access xml at path:C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - XML is valid
    2/3/2012 14:11:50 [WARN] PIM - Failed to find Node
    2/3/2012 14:11:50 [INFO] PIM - Package id 288AEB6F-C67B-4244-8B68-392A279BC618 is already installed
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:50 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:56 [INFO] Utilities - File does not exist
    2/3/2012 14:11:57 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx.
    2/3/2012 14:11:57 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:57 [INFO] PIM - Processing ... _pimCreateOrUpdateAAMInventory
    2/3/2012 14:11:57 [INFO] PIM - Inventory Already present on the machine...
    2/3/2012 14:11:57 [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    2/3/2012 14:11:57 [WARN] Setup - Install Source Path not specified. Searching for payloads at the launch path.
    2/3/2012 14:11:57 [INFO] Setup - Deployment Engine launched with command : "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DWA\Setup.exe" --deploymentFile="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\silentinstall\remove.xml" --installSourcePath="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6"
    2/3/2012 14:11:58 [FATAL] Setup - End Adobe Setup. Exit code: 33
    2/3/2012 14:11:58 [INFO] PIM - PIMSqlite closeDB status 0
    2/3/2012 14:11:58 [INFO] PIM - FREE PIM Instance ...

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

Maybe you are looking for

  • Retrieve a phone number from iCloud that I deleted

    Is there a way to retrieve a phone number from iCloud that I deleted a while back from my address book? I had the number in my favorites and all contacts but now I don't know how to get the number back. I'm using Mavericks

  • Cannot install Creative Cloud on Windows 7 64 bit.

    Je ne peux pas installer ADOBE CREATIVE CLOUD . je suis sur windows 7 64 bits. Comment faire ?

  • Second Screen (TV) Only uses Pink-Black Colors!?

    I don't remember when it happend, but for some time now, I have my TV, which I have connected : MiniDVI-DVI -> DVI-HDMI -> TV ... I have it to view movies on and I've used it many many times. But then all of a sudden, reasons unknown, the colors went

  • Upgrade 10.2 to 11.2 manualy using cold backup copy on new server.

    Hi, I am going to manually upgrade my databases to 11.2 from 10.2. I will use cold backup of 10.2 and copy in to the new server Red Hat Linux 5. I got a Note (742108.1) done for upto 10.2.0.5 and it tells to set orapwd file=$oracle_HOME/dbs/orapw<SID

  • SQL 2012 SqlAgent wont start

    Hi, I'm testing a new install of SQL server2012, and the SQLAgent will no longer start. Build = Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64)  Enterprise Edition: Core-based Licensing (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)