*** Serialization in SOAP ***

Hi,
I m building a web service with Jdeveloper 9.0.3 . I m trying to pass org.w3c.dom.Document in the function argument but got the following error:
No Serializer found to serialize a 'org.w3c.dom.DOMImplementation' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'. [java.lang.IllegalArgumentException]
Help,pls.
Gary

Ok, at the end of this e-mail see the stub that was generated from the Oracle9iAS side and a main method that calls your Web service - this should get you going. Before the code I will give you the steps I did:
1. Make sure you delete the Web service you have deployed to OC4J before starting again (e.g. delete the directories <oc4j_home>\j2ee\home\application-deployments\gt-gt-WS, <oc4j_home>\j2ee\home\applications\gt-gt-WS, delete the file gt-gt-WS.ear from the <oc4j_home>\j2ee\home\applications\ directory and edit the file server.xml and remove the line: "<application name="gt-gt-WS" path="../applications/gt-gt-WS.ear" auto-start="true" />"
2. Delete the stub/proxy you have generated from the JDeveloper WSDL
3. Build your class as you did with a document parameter and return result
4. Wrap it as a Web service using the JDev publishing wizard
5. New step I missed previously: Before deploying to Oracle9iAS, right mouse click on the WebServices.deploy node and:
* Select settings
* Navigate to the classes node of the configuration tree
* De-select the WSDL file
* Exit from the configuration wizard by clicking on the OK button
6. Deploy to Oracle9iAS by right mouse clicking on the Webservices.deploy node
7. Go to the Web service endpoint (in your case: http://<your machine>:8888/gt-gt-context-root/XMLDocWS) in your browser. This can be found by editing the Web service node in JDeveloper and selecting "File Locations" and copying the URL in the field "Web service endpoint"
8. From the endpoint page, copy the "Service Description" URL (i.e. the WSDL location) (e.g. CTRL-C). On mine, the URL is: http://<my machine>:8888/gt-gt-context-root/XMLDocWS?WSDL
9. Go back to JDeveloper and in the project right mouse click on the project and select New->Web Service Stub/Skeleton.
10. In the WSDL location, paste in the WSDL location you copied from the Web Service endpoint (http://<my machine>:8888/gt-gt-context-root/XMLDocWS?WSDL)
11. Generate the new stub as normal.
12. For a quick test copy in the main method I built below.
From this point onwards your servlet you sent me should work.
For others watching this thread, as this problem is generic, here is the service implementation:
import org.w3c.dom.*;
import oracle.xml.parser.v2.*;
public class XMLDocWS
     public XMLDocWS()
     public Document query(org.w3c.dom.Document req)
Document res = req;
          return res;
Here is the stub that can be used to test it once you have published the above as a Web Service:
import java.util.Vector;
import java.net.URL;
import java.util.Properties;
import java.util.HashMap;
import org.apache.soap.rpc.Call;
import org.apache.soap.rpc.Parameter;
import org.apache.soap.rpc.Response;
import org.apache.soap.Fault;
import org.apache.soap.SOAPException;
import org.apache.soap.Constants;
import org.apache.soap.encoding.SOAPMappingRegistry;
import org.apache.soap.encoding.soapenc.BeanSerializer;
import org.apache.soap.util.xml.QName;
import oracle.soap.transport.http.OracleSOAPHTTPConnection;
import oracle.soap.encoding.soapenc.EncUtils;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import oracle.xml.parser.v2.*;
* Web service proxy: IXMLDocWS
* generated by Oracle WSDL toolkit (Version: 1.0).
public class IXMLDocWSProxy {
public static void main(String[] args)
try
IXMLDocWSProxy stub = new IXMLDocWSProxy();
XMLDocument doc = new XMLDocument();
Element elAdd = doc.createElement("employee");
Element elA = doc.createElement("name");;
elA.appendChild(doc.createTextNode("Mike"));
elAdd.appendChild(elA);
doc.appendChild(elAdd);
org.w3c.dom.Document in = (org.w3c.dom.Document)doc;
org.w3c.dom.Document out = stub.query(in);
XMLDocument out_print = (XMLDocument)out;
((XMLElement)out_print.getDocumentElement()).print(System.out);
} catch (Exception ex)
ex.printStackTrace();
public IXMLDocWSProxy() {
m_httpConnection = new OracleSOAPHTTPConnection();
_setMaintainSession(true);
Object untypedParams[] = {
new String("query"), new String("output"), new QName("http://xmlns.oracle.com/2001/XMLSchema/DOM","org.w3c.dom.Document")
String operationName;
String paramName;
QName returnType;
SOAPMappingRegistry registry;
org.apache.soap.util.xml.Deserializer deserializer;
int x;
for (x = 0; x < untypedParams.length; x += 3) {
operationName = (String) untypedParams[x];
paramName = (String) untypedParams[x+1];
returnType = (QName) untypedParams[x+2];
registry = (SOAPMappingRegistry) m_soapMappingRegistries.get(operationName);
if (registry == null) {
if (m_soapMappingRegistry != null) {
registry = new SOAPMappingRegistry(m_soapMappingRegistry);
} else {
registry = new SOAPMappingRegistry();
m_soapMappingRegistries.put(operationName,registry);
try {
deserializer = registry.queryDeserializer(returnType,Constants.NS_URI_SOAP_ENC);
registry.mapTypes(Constants.NS_URI_SOAP_ENC, new QName("",paramName), null, null, deserializer);
} catch(IllegalArgumentException e) {
public org.w3c.dom.Document query(org.w3c.dom.Document param0) throws Exception {
String soapActionURI = "urn:IXMLDocWS/query";
String encodingStyleURI = "http://schemas.xmlsoap.org/soap/encoding/";
Vector params = new Vector();
params.add(new Parameter("param0", org.w3c.dom.Document.class, param0, null));
Response response = makeSOAPCallRPC("query", params, encodingStyleURI, soapActionURI);
Parameter returnValue = response.getReturnValue();
return (org.w3c.dom.Document)returnValue.getValue();
private Response makeSOAPCallRPC(String methodName, Vector params, String encodingStyleURI, String soapActionURI) throws Exception {
Call call = new Call();
call.setSOAPTransport(m_httpConnection);
SOAPMappingRegistry registry;
if ((registry = (SOAPMappingRegistry)m_soapMappingRegistries.get(methodName)) != null)
call.setSOAPMappingRegistry(registry);
else if (m_soapMappingRegistry != null)
call.setSOAPMappingRegistry(m_soapMappingRegistry);
call.setTargetObjectURI(m_serviceID);
call.setMethodName(methodName);
call.setEncodingStyleURI(encodingStyleURI);
call.setParams(params);
Response response = call.invoke(new URL(m_soapURL), soapActionURI);
if (response.generatedFault()) {
Fault fault = response.getFault();
throw new SOAPException(fault.getFaultCode(), fault.getFaultString());
return response;
public String _getSoapURL() {
return m_soapURL;
public void _setSoapURL(String soapURL) {
m_soapURL = soapURL;
public String _getServiceID() {
return m_serviceID;
public void _setServiceID(String serviceID) {
m_serviceID = serviceID;
public SOAPMappingRegistry _getSOAPMappingRegistry() {
return m_soapMappingRegistry;
public void _setSOAPMappingRegistry(SOAPMappingRegistry soapMappingRegistry) {
m_soapMappingRegistry = soapMappingRegistry;
public boolean _getMaintainSession() {
return m_httpConnection.getMaintainSession();
public void _setMaintainSession(boolean maintainSession) {
m_httpConnection.setMaintainSession(maintainSession);
public Properties _getTransportProperties() {
return m_httpConnection.getProperties();
public void _setTransportProperties(Properties properties) {
m_httpConnection.setProperties(properties);
public String _getVersion() {
return m_version;
private String m_serviceID = "urn:IXMLDocWS";
private String m_soapURL = "http://mlehmann-lap.us.oracle.com:8888/gt-gt-context-root/XMLDocWS";
private OracleSOAPHTTPConnection m_httpConnection = null;
private SOAPMappingRegistry m_soapMappingRegistry = null;
private String m_version = "1.0";
private HashMap m_soapMappingRegistries = new HashMap();
Mike.

Similar Messages

  • Serialization of SOAP message in WL 7.1 (without toString)

    Hi all.
    I'm using Weblogic 7.1 and am trying to serialize the SOAP message I get in my
    request handler to raw XML. Unfortunately since WL 7.1 only seems to support an
    old version of SAAJ, that for some bizarre reason doesn't use the DOM interfaces,
    the only way I can think of to do this is to call toString() on the message. Of
    course I'd rather not do this since this is making assumptions about the WL implementation
    of SAAJ. Can anyone think of a better way of doing this?
    Since all I'm after is the raw XML anyway, would it make sense to just pass this
    in as a string in the RPC call (given that my messages are likely to be fairly
    big -- around 500K of raw XML)? Obviously this is a total hack, and I probably
    won't end up doing it, but does anyone know of any good technical reasons why
    I shouldn't do this?
    Thanks.
    Neil.

    Hi Neil
    Manoj has an WLS 7.x example passing XML without data bindings [1] that
    may assist your efforts. Also see the example using handlers to get the
    SOAP request/response message.
    Regards,
    Bruce
    [1]
    http://manojc.com/?wls70/sample2
    [2]
    http://manojc.com/?wls70/sample4
    Neil wrote:
    >
    Hi all.
    I'm using Weblogic 7.1 and am trying to serialize the SOAP message I get in my
    request handler to raw XML. Unfortunately since WL 7.1 only seems to support an
    old version of SAAJ, that for some bizarre reason doesn't use the DOM interfaces,
    the only way I can think of to do this is to call toString() on the message. Of
    course I'd rather not do this since this is making assumptions about the WL implementation
    of SAAJ. Can anyone think of a better way of doing this?
    Since all I'm after is the raw XML anyway, would it make sense to just pass this
    in as a string in the RPC call (given that my messages are likely to be fairly
    big -- around 500K of raw XML)? Obviously this is a total hack, and I probably
    won't end up doing it, but does anyone know of any good technical reasons why
    I shouldn't do this?
    Thanks.
    Neil.

  • Creating a custom serializer for SOAP

    Hi guys, i'm wondering if someone could help me. I'm trying to create a custom serializer for a class with SOAP and I'm geeting the following SOAPException:
    Fault Code = SOAP-ENV:Server.Exception:
    Fault String = org/apache/soap/util/xml/Serializer
    I'm able to deploy the service with no problems.
    I'm using a very simple example in which I'm only trying to get a Person class from the service. here is the deployment descriptor:
    <isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment" id="urn:PersonService">
      <isd:provider type="java"
                    scope="Application"
                    methods="getPerson">
        <isd:java class="app.PersonService" static="false"/>
      </isd:provider>
      <isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultListener>
      <isd:mappings>
        <isd:map encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
                 xmlns:x="urn:person"
                 qname="x:person"
                 javaType="app.Person"
                 java2XMLClassName="app.PersonSerializer"
                 xml2JavaClassName="app.PersonSerializer"/>
      </isd:mappings> 
    </isd:service>here is the PersonService.java:
    package app;
    public class PersonService {
        /** Creates a new instance of GetPerson */
        public PersonService() {
        public Person getPerson() {
            return new Person("joe", "something");
    }here is the Person.java:
    package app;
    public class Person {
        public String firstName;
        public String lastName;
        /** Creates a new instance of Person */
        public Person() {   
        public Person(String firstName, String lastName) {
            this.firstName = firstName;
            this.lastName = lastName;
    }here is the PersonSerializer.java:
    package app;
    import java.io.IOException;
    import java.io.Writer;
    import org.apache.soap.encoding.soapenc.SoapEncUtils;
    import org.apache.soap.rpc.Parameter;
    import org.apache.soap.rpc.RPCConstants;
    import org.apache.soap.rpc.SOAPContext;
    import org.apache.soap.util.Bean;
    import org.apache.soap.util.StringUtils;
    import org.apache.soap.util.xml.DOMUtils;
    import org.apache.soap.util.xml.Deserializer;
    import org.apache.soap.util.xml.NSStack;
    import org.apache.soap.util.xml.QName;
    import org.apache.soap.util.xml.Serializer;
    import org.apache.soap.util.xml.XMLJavaMappingRegistry;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    public class PersonSerializer implements Serializer, Deserializer {
        /** Creates a new instance of PersonSerializer */
        public PersonSerializer() {
        public void marshall(String string, Class aClass, Object object, Object object0, Writer writer, NSStack nSStack, XMLJavaMappingRegistry xMLJavaMappingRegistry, SOAPContext sOAPContext) throws IllegalArgumentException, IOException {
            nSStack.pushScope();
            SoapEncUtils.generateStructureHeader(string, aClass, sOAPContext, writer, nSStack, xMLJavaMappingRegistry);
            writer.write(StringUtils.lineSeparator);
            Person person = (Person)object;
            String firstName = person.firstName;
            String lastName = person.lastName;
            xMLJavaMappingRegistry.marshall(string, String.class, firstName, "firstName", writer, nSStack, sOAPContext);
            writer.write(StringUtils.lineSeparator);
            xMLJavaMappingRegistry.marshall(string, Integer.class, lastName, "lastName", writer, nSStack, sOAPContext);
            writer.write(StringUtils.lineSeparator);
            writer.write("</" + sOAPContext + '>');   
            nSStack.popScope();
        public Bean unmarshall(String string, QName qName, Node node, XMLJavaMappingRegistry xMLJavaMappingRegistry, SOAPContext sOAPContext) throws IllegalArgumentException {
            Element root = (Element)node;
            Element childElement = DOMUtils.getFirstChildElement(root);
            Person target;
            try {
                target = (Person)Person.class.newInstance();
            } catch (Exception e) {
                throw new IllegalArgumentException("Problem instantiating bean: " + e.getMessage());
            while(childElement !=null) {
                Bean paramBean = xMLJavaMappingRegistry.unmarshall(string, RPCConstants.Q_ELEM_PARAMETER, childElement, sOAPContext);
                Parameter param = (Parameter)paramBean.value;
                String tagName = childElement.getTagName();
                if(tagName.equals("firstName")) {
                    target.firstName = (String)param.getValue();
                } else if(tagName.equals("lastName")) {
                    target.lastName = (String)param.getValue();
                childElement = DOMUtils.getNextSiblingElement(childElement);
            return new Bean(Person.class, target);
    }and finally here is the client app class that calls the service, the GetPersonClient.java:
    package app;
    import java.net.MalformedURLException;
    import java.net.URL;
    import org.apache.soap.Constants;
    import org.apache.soap.Fault;
    import org.apache.soap.SOAPException;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    import org.apache.soap.rpc.Call;
    import org.apache.soap.rpc.Parameter;
    import org.apache.soap.rpc.Response;
    import org.apache.soap.util.xml.QName;
    public class GetPersonClient {
        /** Creates a new instance of GetPersonClient */
        public GetPersonClient() {
        public static void main(String[] args) {
            SOAPMappingRegistry registry = new SOAPMappingRegistry();
            PersonSerializer personSerializer = new PersonSerializer();
            // Map the types.
            registry.mapTypes(Constants.NS_URI_SOAP_ENC, new QName("urn:person", "person"), Person.class, personSerializer, personSerializer);
    // Build the call.
            Call call = new Call();
            call.setSOAPMappingRegistry(registry);
            call.setTargetObjectURI("urn:PersonService");
            call.setMethodName("getPerson");
            call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
            Response response;
            try {
               response = call.invoke(new URL("http://localhost:8090/soap/servlet/rpcrouter"), "");
            } catch (SOAPException e) {
                System.err.println("Caught SOAPException: " + e.getMessage());
                e.printStackTrace();
                return;
            } catch (MalformedURLException ex) {
                ex.printStackTrace();
                return;
            if (!response.generatedFault()) {
                Parameter parameter = response.getReturnValue();
                Person person = (Person)parameter.getValue();
                if ( person != null ) {
                    System.out.println( person.firstName + " " + person.lastName );
            } else {
                Fault fault = response.getFault();
                System.err.println("Generated fault: ");
                System.out.println("  Fault Code   = " + fault.getFaultCode());
                System.out.println("  Fault String = " + fault.getFaultString());
    }if someone could help me i would be grateful.
    cheers
    nmc

    Is the problem in your 'marshall' method? You seem to be using Integer.class instead of String.class for the 'lastName' parameter...

  • Need Help!! Problem with Bean Serializer in SOAP

    Hi.
    I have a webservice develope in Jdeveloper 9.0.3. The webservice is deploy in a 9ias 9.0.3. When a invoke a method with a complex type parameter i get this error:
    [SOAPException: faultCode=SOAP-ENV:Client; msg=No Deserializer found to deserialize a &apos;http://xml.apache.org/xml-soap:datPerWS_Tdatper&apos; using encoding style &apos;http://schemas.xmlsoap.org/soap/encoding/&apos;. [java.lang.IllegalArgumentException]]
    Please.SomeBody knows like resolve this problem?
    Thanks.

    Could you post your code, particularly the bean that you are passing? This code sample here gives some of the key rules including having an implementation of java.io.Serializable and setters/getters for each item:
    http://otn.oracle.com/tech/webservices/htdocs/samples/customtype/content.html
    Mike.

  • Getting error in serialization in soap

    Hi there ,
    I am adding a field and getter and setter methods for that in a class .
    public String effDate = null;
    * getter and setter methods
    public void setEffectiveDate(String s)
         this.effDate = s;
    public String getEffectiveDate()
         return this.effDate;
    This class is used for SOAP communication. When I add these methods I get an fault message in soap call . The message is :
    [faultCode=SOAP-ENV:Client] [faultString=Unable to retrieve PropertyDescriptor for property 'effectiveDate' of class 'class com.arrow.rct.RCTData'.] [faultActorURI=/soap/servlet/rpcrouter] [DetailEntries=] [FaultEntries=]
    what is property descriptor ? I am new to soap. Please help me !!!
    Thanks

    http://www-128.ibm.com/developerworks/webservices/library/ws-soapmap1/
    You will probably see the line like this in there with the element
    "checkMustUnderstands" having the xsi:type attribute...
    <checkMustUnderstands xsi:type="xsd:boolean">
    Try using a later version of Xerces such as 1.4 (my guess is you're using
    1.2.* or 1.3.1) and see if the namespace problem gets resolved. Your error
    is being thrown in the BeanSerializer class 'coz it can't find the
    PropertyDescriptor for that element

  • Synchronous Proxy to Soap  "MESSAGE" GENERAL /

    Hi,
    I try to use the SOAP HTTP (Axis)  Adapter in a PI 7.1 EHP 1 to consume a web service (soap version 1.2). Itu2019s a third-party web service. when I initiate the request  Iu2019m getting the following error.
    <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
           <SAP:P1 />
           <SAP:P2 />
           <SAP:P3 />
           <SAP:P4 />
           <SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: The SOAP action specified on the message, '', does not match the HTTP SOAP Action, ' https://webservices.123456.com/Services/Versions1/DocServ/SearchDoc'.</SAP:AdditionalText>
    If I test the web service with soapUI, I use the WS-A parameters u201EActionu201C and u201ETou201C and add the WS-A header to the request and it works.
    Excerpt from soapUI:
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ver="https://webservices.123456.com/Services/Versions1/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
       <soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"><wsa:Action soap:mustUnderstand="1">https://webservices.123456.com/Services/Versions1/DocServ/SearchDoc</wsa:Action><wsa:To soap:mustUnderstand="1">https://webservices.123456.com/Services/Versions1/DocServ.svc</wsa:To></soap:Header>
    u2026.
    But without these header informations, I get the same error message like the PI-error.
    My question is, what do I have to do in the PI to make it work?
    Iu2019m setting the parameter SOAP Action in the PI with the same value as soapUI. The Target URL in the PI is https://webservices.123456.com/Services/Versions1/DocServ.svc.
    Can you help me please?
    Thank you.
    Beatrice

    ErrorCode:104 - updatePerson operation failed: Failed to create context: LDAP: error code 32 - No Such Object</
    It seems that you are trying to call an updatePerson operation through the WSDL and the call is failing at this stage.
    Can you check if the request send by PI is correct in structure and that the WSDL is not facing any issue (check with the end system developer).

  • WSDL / SOAP http get binding

    Hello,
    i am looking for information regarding HTTP Get binding for SOAP. I have looked at the wsdl 1.1 specification which provides some information concerning that binding (http://www.w3.org/TR/wsdl#_http) and also in SOAP 1.2 (http://www.w3.org/TR/soap12-part0/#L26854). However all this is not precise enough.
    In particular, i am wondering whether the serialization of SOAP request (from its definition in a wsdl) using http get is clearly formalized somewhere (in a specification). If any, what are the limitations and constraints, for instance, does it support complex types defined in the WSDL. Are there implementations currently available?
    Thanks,
    Cyrille

    Hello,
    Which kind of Web Services are you building in JDeveloper?
    - JAX-RPC (J2EE 1.4)
    - Oracle Web Service stack (J2EE 1.3)
    What is your targetted environment?
    Oracle does not support Document style Web Services in Oracle Web Service stack (J2EE 1.3), it has to be done programmatically.
    However the JAX-RPC stack does support, and it is the default, Document style Web Services and you can right click on the Web Service node to edit the service.
    Regards
    Tugdual Grall

  • Can any one show me how to call web service using soap lite mod perl client

    Hi,  Experts
    SAP is new for me and now I need to develop a perl client using soap lite, I have read "HOWTO: SCRIPTING LANGUAGE SUPPORT FOR SAP SERVICES - PERL" but not quit understand that. Can some one show me a real perl client example?
    I enclosed the wsdl file generated from SAP web service.
    <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions targetNamespace="urn:sap-com:document:sap:rfc:functions" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:sap-com:document:sap:rfc:functions" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <wsdl:types>
    - <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:sap-com:document:sap:rfc:functions" targetNamespace="urn:sap-com:document:sap:rfc:functions" elementFormDefault="unqualified" attributeFormDefault="qualified">
    - <xsd:element name="Z_RFC_WEBSERVICE">
    - <xsd:complexType>
      <xsd:sequence />
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="Z_RFC_WEBSERVICEResponse">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="EV_STRING" type="xsd:string" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
      </xsd:schema>
      </wsdl:types>
    - <wsdl:message name="Z_RFC_WEBSERVICE">
      <wsdl:part name="parameters" element="tns:Z_RFC_WEBSERVICE" />
      </wsdl:message>
    - <wsdl:message name="Z_RFC_WEBSERVICEResponse">
      <wsdl:part name="parameters" element="tns:Z_RFC_WEBSERVICEResponse" />
      </wsdl:message>
    - <wsdl:portType name="Z_RFC_WEBSERVICE">
    - <wsdl:operation name="Z_RFC_WEBSERVICE">
      <wsdl:input message="tns:Z_RFC_WEBSERVICE" />
      <wsdl:output message="tns:Z_RFC_WEBSERVICEResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="Z_RFC_WEBSERVICESoapBinding" type="tns:Z_RFC_WEBSERVICE">
      <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="Z_RFC_WEBSERVICE">
      <soap:operation soapAction="" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="Z_RFC_WEBSERVICEService">
    - <wsdl:port name="Z_RFC_WEBSERVICESoapBinding" binding="tns:Z_RFC_WEBSERVICESoapBinding">
      <soap:address location="http://darkwind:9080/sap/bc/srt/rfc/sap/Z_RFC_WEBSERVICE?sap-client=800" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>
    Thanks for your help!

    now I know how to call from perl tool,
    #!/usr/bin/perl -wd
    use SOAP::Lite;
        use SOAP::Lite +trace;
       my $client = SOAP::Lite->new();
       $client->uri('urn:Z_RFC_WEBSERVICE');
       $client->on_action(sub {return'""'});
       $client->proxy('http://darkwind:9080/sap/bc/srt/rfc/sap/Z_RFC_WEBSERVICE?sap-client=800');
       my $som = $client->Z_RFC_WEBSERVICE();
       my $output = $som->result;
       print $output  "\n";
    but I got "Operation not supported" error when executing 
    my $som = $client->Z_RFC_WEBSERVICE();
    here is trace:
    SOAP::Transport::new: ()
    SOAP::Serializer::new: ()
    SOAP::Deserializer::new: ()
    SOAP::Parser::new: ()
    SOAP::Lite::new: ()
    SOAP::Transport::HTTP::Client::new: ()
    SOAP::Lite::call: ()
    SOAP::Serializer::envelope: ()
    SOAP::Serializer::envelope: Z_RFC_WEBSERVICE testtypesZ_RFC_WEBSERVICE
    SOAP::Data::new: ()
    SOAP::Data::new: ()
    SOAP::Data::new: ()
    SOAP::Data::new: ()
    SOAP::Data::new: ()
    SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x93f14a4)
    SOAP::Transport::HTTP::Client::send_receive: POST http://darkwind:9080/sap/bc/srt/rfc/sap/Z_RFC_WEBSERVICE?sap-client=800 HTTP/1.1
    Accept: text/xml
    Accept: multipart/*
    Content-Length: 552
    Content-Type: text/xml; charset=utf-8
    SOAPAction: ""
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><namesp1:Z_RFC_WEBSERVICE xmlns:namesp1="urn:Z_RFC_WEBSERVICE"><c-gensym3 xsi:type="xsd:string">testtypesZ_RFC_WEBSERVICE</c-gensym3></namesp1:Z_RFC_WEBSERVICE></SOAP-ENV:Body></SOAP-ENV:Envelope>
    SOAP::Transport::HTTP::Client::send_receive: HTTP::Response=HASH(0x93eb288)
    SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal Server Error
    Server: SAP Web Application Server (1.0;700)
    Content-Length: 264
    Content-Type: text/xml; charset=utf-8
    Client-Date: Sat, 14 Feb 2009 19:33:50 GMT
    Client-Peer: 146.225.80.176:9080
    Client-Response-Num: 1
    Sap-Srt-Id: 20090214/113349/v1.00_final_6.40/49958133C5E634E8E100000092E150B0
    Set-Cookie: sap-usercontext=sap-client=800; path=/
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"><soap-env:Body><soap-env:Fault><faultcode>soap-env:Client</faultcode><faultstring xml:lang="en">Operation not supported</faultstring></soap-env:Fault></soap-env:Body></soap-env:Envelope>
    SOAP::Deserializer::deserialize: ()
    SOAP::Parser::decode: ()
    SOAP::SOM::new: ()
    Can't use an undefined value as a symbol reference at ./sapClient.pl line 10.
    SOAP::Lite::DESTROY: ()
    SOAP::Deserializer::DESTROY: ()
    SOAP::Parser::DESTROY: ()
    SOAP::Transport::DESTROY: ()
    SOAP::Transport::HTTP::Client::DESTROY: ()
    SOAP::Serializer::DESTROY: ()
    SOAP::Data::DESTROY: ()
    SOAP::Data::DESTROY: ()
    SOAP::Data::DESTROY: ()
    SOAP::Data::DESTROY: ()
    SOAP::Data::DESTROY: ()
    SOAP::SOM::DESTROY: ()
    Ran SAP Web Service Navigator Test 'Z_RFC_WEBSERVICE' OK
    Can someone help?
    Thanks!

  • Serialization and Backward Compatibility

    Hi,
    We have an application in which we persist data to a flat file. For persisting we are using .net serialization with SOAP Formatter. Now the problem what we are facing is as follows.
    Problem Statement:
    Recently we have re-factored our source code i.e modifying project structure, renaming namespaces, renaming class names, adding or deleting properties. Can any one suggest a solution to handle the de-serialization issue while using the files which are persisted
    by old version of the application.
    Thanks,
    Manohar

    You could create/keep a project with the entity classes that you used to persist the data to your flat files. These would not contain any behavior and would only be used for deserializing and serializing from/to your flat files. You could put a facade in
    front of this and treat it like a service. Your new project/code would call the facade to retrieve and write to the old structures. Then you could continue to grow/refactor your new code base without having to worry about the dependency on the persisted file
    scheme.
    On a side note the default SOAP formatter takes up a lot of wasted space in files and data contracts alike and can be too tightly coupled to your code in my opinion. If you do ever consider switching you could go to something like:
    the XmlSerializer which gives your more control over how and what is persisted by way of attributes
    a JSon serializer which is even more light weight and flexible
    -Igor

  • Fatal error while executing the DQS installer on SQL Server 2014

    Hi all.
    I am receiving the following error when attempting to install DQS on the following platform:
    Windows Server 2012
    Microsoft SQL Server 2014 - 12.0.2000.8 (X64)   Feb 20 2014 20:04:26   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )
    (no entries in event viewer)
    Error is:
    [4/15/2015 8:45:04 AM] Fatal error while executing the DQS installer.
    Microsoft.Ssdqs.Proxy.ImportExport.ImportExportException: Error occurred in a server proxy call during the import/export process. ---> Microsoft.Ssdqs.Proxy.ImportExport.ImportProcessFailedException: System.NullReferenceException: Object reference not set
    to an instance of an object.
       at System.Security.Cryptography.CryptoStream..ctor(Stream stream, ICryptoTransform transform, CryptoStreamMode mode)
       at Microsoft.Ssdqs.ImportExportManagement.ImportExport.ImportExportReader..ctor(Stream stream)
       at Microsoft.Ssdqs.ImportExportManagement.ImportExport.ImportExportManager.Import(Stream input)
       at Microsoft.Ssdqs.ImportExportManagement.Calibrator.ImportKnowledgebaseCalibrator.Calibrate(IMasterContext masterContext, CalibrationMode calibrationMode, ConfigurationDomParameter calibratorConfiguration)
       at Microsoft.Ssdqs.Core.Service.Calibration.Impl.ExecuteCalibratorFlow.Process(IMasterContext context)
       --- End of inner exception stack trace ---
       at Microsoft.Ssdqs.Proxy.ImportExport.ImportAsProcessManager.WaitUntillProcessCompletes(Int64 processId, Int64 knowledgebaseId, ImportExportCancellationToken cancelToken)
       at Microsoft.Ssdqs.Proxy.ImportExport.ImportAsProcessManager.KnowledgebaseImport(String kbName, String kbDescription, String fileName, ImportExportCancellationToken cancelToken)
       at Microsoft.Ssdqs.DqsInstaller.Logic.Actions.LoadOutOfTheBoxDataAction.Execute()
       at Microsoft.Ssdqs.DqsInstaller.Logic.ActionExecuter.ExecuteAllActions()
       at Microsoft.Ssdqs.DqsInstaller.Logic.Installer.Main(String[] args)
    Thanks for any advice you can give.
    Full log below:
    Microsoft (R) DQS Installer Command Line Tool
    Copyright (c) 2014 Microsoft. All rights reserved.
    [4/15/2015 7:58:20 AM] DQS Installer started. Installation log will be written to C:\Program Files\Microsoft SQL Server\MSSQL12.DW01\MSSQL\Log\DQS_install.log
    [4/15/2015 7:58:20 AM] Setting the collation to default value: SQL_Latin1_General_CP1_CI_AS
    [4/15/2015 7:58:20 AM] Using instance: DW01, catalog: DQS.
    [4/15/2015 7:58:20 AM] Executing action: Validate collation argument.
    [4/15/2015 7:58:20 AM] Action 'Validate collation argument' finished successfully.
    [4/15/2015 7:58:20 AM] Executing action: Check whether system reboot is pending.
    [4/15/2015 7:58:20 AM] Action 'Check whether system reboot is pending' finished successfully.
    [4/15/2015 7:58:20 AM] Executing action: Create data quality event source.
    [4/15/2015 7:58:20 AM] Action 'Create data quality event source' finished successfully.
    [4/15/2015 7:58:20 AM] Executing action: Request Database Master Key password from user..
    Microsoft (R) DQS Installer Command Line Tool
    Copyright (c) 2014 Microsoft. All rights reserved.
    [4/15/2015 8:39:59 AM] DQS Installer started. Installation log will be written to C:\Program Files\Microsoft SQL Server\MSSQL12.DW01\MSSQL\Log\DQS_install.log
    [4/15/2015 8:39:59 AM] Parsing DqsInstaller command line arguments.
    [4/15/2015 8:39:59 AM] Setting the catalog to default value: DQS
    [4/15/2015 8:39:59 AM] Setting the collation to default value: SQL_Latin1_General_CP1_CI_AS
    [4/15/2015 8:39:59 AM] Using instance: DEV01, catalog: DQS.
    [4/15/2015 8:39:59 AM] Executing action: Validate collation argument.
    [4/15/2015 8:39:59 AM] Action 'Validate collation argument' finished successfully.
    [4/15/2015 8:39:59 AM] Executing action: Check whether system reboot is pending.
    [4/15/2015 8:39:59 AM] Action 'Check whether system reboot is pending' finished successfully.
    [4/15/2015 8:39:59 AM] Executing action: Create data quality event source.
    [4/15/2015 8:39:59 AM] Action 'Create data quality event source' finished successfully.
    [4/15/2015 8:39:59 AM] Executing action: Request Database Master Key password from user..
    [4/15/2015 8:41:05 AM] Action 'Request Database Master Key password from user.' finished successfully.
    [4/15/2015 8:41:05 AM] Executing action: Approve removal of data quality services previous schema.
    [4/15/2015 8:41:05 AM] Action 'Approve removal of data quality services previous schema' finished successfully.
    [4/15/2015 8:41:05 AM] Executing action: Load Installation Scripts.
    [4/15/2015 8:41:05 AM] Extracting script to: C:\Users\SqlServiceAcct\AppData\Local\Temp\3mo2vwbu.xch
    [4/15/2015 8:41:06 AM] Extracting script: db\create_core_db_objects.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\create_logic_db_objects.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\create_transient_db_objects.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\static_data.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\drop_dq_databases.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\db_version.sql
    [4/15/2015 8:41:06 AM] Extracting script: helper\DeleteSchemaDs.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\drop_all_assemblies.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\create_databases.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\drop_databases.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\drop_all_tables.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\drop_database_properties.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\master_create.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\master_recreate.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\register_assemblies.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\register_assemblies_tsql.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\register_dq_assemblies.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\create_service_broker_objects.sql
    [4/15/2015 8:41:06 AM] Extracting script: sql\drop_service_broker_objects.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\set_dq_databases_single_user.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\set_dq_databases_multi_user.sql
    [4/15/2015 8:41:06 AM] Extracting script: db\upgrade_all_versions.sql
    [4/15/2015 8:41:06 AM] Extracting script: recreate_schema.bat
    [4/15/2015 8:41:06 AM] Extracting script: upgrade_schema.bat
    [4/15/2015 8:41:06 AM] Extracting script: upgrade_version_tables.bat
    [4/15/2015 8:41:06 AM] Extracting script: drop_databases.cmd
    [4/15/2015 8:41:06 AM] Extracting script: register_dlls.cmd
    [4/15/2015 8:41:06 AM] Extracting script: unregister_dlls.cmd
    [4/15/2015 8:41:06 AM] Extracting script: assembly_paths_retail.txt
    [4/15/2015 8:41:06 AM] Extracting script: DQS_Data.dqs
    [4/15/2015 8:41:06 AM] Extracting script: DefaultKbs.xml
    [4/15/2015 8:41:06 AM] Total scripts extracted: 31
    [4/15/2015 8:41:06 AM] Action 'Load Installation Scripts' finished successfully.
    [4/15/2015 8:41:06 AM] Executing action: Create data quality schema.
    [4/15/2015 8:41:06 AM] Script: 'recreate_schema.bat CMTSQLSVR04\DEV01 DQS SQL_Latin1_General_CP1_CI_AS'
    [4/15/2015 8:41:06 AM] .  Trying to connect using Windows Authentication and db name...
    [4/15/2015 8:41:06 AM] Run create_databases.sql to create Data Quality Service databases if they do not exist.
    [4/15/2015 8:41:07 AM] 
    [4/15/2015 8:41:07 AM]  --> Running File: create_databases.sql
    [4/15/2015 8:41:07 AM] ---[ Creating databases ]---
    [4/15/2015 8:41:07 AM] Changed database context to 'master'.
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running File: drop_dq_database.sql
    [4/15/2015 8:41:10 AM] ---[ Dropping Data Quality Databases ]---
    [4/15/2015 8:41:10 AM] Creating DQS databases (DQS_MAIN, DQS_PROJECTS, DQS_STAGING_DATA)...
    [4/15/2015 8:41:10 AM] Configuring DQS databases
    [4/15/2015 8:41:10 AM] Configuration option 'clr enabled' changed from 0 to 1. Run the RECONFIGURE statement to install.
    [4/15/2015 8:41:10 AM] Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install.
    [4/15/2015 8:41:10 AM] Configuration option 'xp_cmdshell' changed from 0 to 1. Run the RECONFIGURE statement to install.
    [4/15/2015 8:41:10 AM] Creating Master Key for database DQS_MAIN...
    [4/15/2015 8:41:10 AM] Creating Module Signing Certificate for database DQS_MAIN...
    [4/15/2015 8:41:10 AM] Exporting Certificate from DQS_MAIN
    [4/15/2015 8:41:10 AM] Importing Certificate into DQS_PROJECTS
    [4/15/2015 8:41:10 AM] Configuration option 'xp_cmdshell' changed from 1 to 0. Run the RECONFIGURE statement to install.
    [4/15/2015 8:41:10 AM] Creating DQS roles
    [4/15/2015 8:41:10 AM] Run master_recreate.sql to recreate Data Quality Service Main and Projects Databases and drop all tables including known temporary tables.
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running master_recreate.sql
    [4/15/2015 8:41:10 AM] ---[ Recreate DQS Main and Projects Databases ]---
    [4/15/2015 8:41:10 AM] Changed database context to 'DQS_STAGING_DATA'.
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running File: drop_database_properties.sql
    [4/15/2015 8:41:10 AM] ---[ Dropping Database Properties]---
    [4/15/2015 8:41:10 AM] Changed database context to 'DQS_PROJECTS'.
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running File: drop_all_tables.sql
    [4/15/2015 8:41:10 AM] ---[ Dropping all SSDQS Database objects and KB schemas ]---
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all Symmetric Keys ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all Certificates ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all FK constraints ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all views ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all tables and synonyms ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all database triggers ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all stored procedures in Knowledge Base schemas ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all types in Knowledge Base schemas ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --[ Drop all Knowledge Base schemas ]
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running File: drop_database_properties.sql
    [4/15/2015 8:41:10 AM] ---[ Dropping Database Properties]---
    [4/15/2015 8:41:10 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:10 AM] 
    [4/15/2015 8:41:10 AM]  --> Running File: drop_all_tables.sql
    [4/15/2015 8:41:10 AM] ---[ Dropping all SSDQS Database objects and KB schemas ]---
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all Symmetric Keys ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all Certificates ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all FK constraints ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all views ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all tables and synonyms ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all database triggers ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all stored procedures in Knowledge Base schemas ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all types in Knowledge Base schemas ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --[ Drop all Knowledge Base schemas ]
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --> Running File: drop_database_properties.sql
    [4/15/2015 8:41:11 AM] ---[ Dropping Database Properties]---
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --> Running master_create.sql
    [4/15/2015 8:41:11 AM] ---[ Creating and Populating Main DQS DB ]---
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_STAGING_DATA'.
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_PROJECTS'.
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --> Running File: create_core_db_objects.sql
    [4/15/2015 8:41:11 AM] ---[  Creating Certificates  ]---
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM] ---[  Creating Symmetric Keys  ]---
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM] ---[  Creating Tables  ]---
    [4/15/2015 8:41:11 AM] Creating Table:     A_TEST   
    [4/15/2015 8:41:11 AM] Creating Table:     A_TEST2   
    [4/15/2015 8:41:11 AM] Creating Table:     A_FLOW   
    [4/15/2015 8:41:11 AM] Creating Table:     A_FLOW_ANSWER   
    [4/15/2015 8:41:11 AM] Creating Table:     A_EXECUTION_UNIT
    [4/15/2015 8:41:11 AM] Creating Table:     A_CODE_GROUP   
    [4/15/2015 8:41:11 AM] Creating Table:     A_CODE_MEMBER   
    [4/15/2015 8:41:11 AM] Creating Table:     A_CONFIGURATION   
    [4/15/2015 8:41:11 AM] Creating Table:     A_PROCESS   
    [4/15/2015 8:41:11 AM] Creating Table:     A_SERVICE_BROKER_TASK   
    [4/15/2015 8:41:11 AM] Creating Table:     A_KNOWLEDGEBASE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_KNOWLEDGEBASE_AUDIT   
    [4/15/2015 8:41:11 AM] Creating Table:     A_KNOWLEDGEBASE_ACTIVITY   
    [4/15/2015 8:41:11 AM] Creating Table:     A_PROFILING_ACTIVITY_ARCHIVE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_CLIENT_SESSION   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_PROVIDER   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_PROVIDER_SCHEMA   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_CACHE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_CACHE_SUGGESTION   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_CACHE_SUGGESTION_PARSED   
    [4/15/2015 8:41:11 AM] Creating Table:     A_REFERENCE_DATA_AUDIT   
    [4/15/2015 8:41:11 AM] Creating Table:     A_IMPORTED_PROJECT   
    [4/15/2015 8:41:11 AM] Creating Table:     A_SPELLER_DICTIONARY_VALUE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_SPECIAL_CHARACTER_RULE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_PERSISTENT_CACHE   
    [4/15/2015 8:41:11 AM] Creating Table:     A_TEMPLATE_OBJECTS   
    [4/15/2015 8:41:11 AM] Creating Table:     A_TEMPLATE_FOREIGN_KEYS   
    [4/15/2015 8:41:11 AM] Creating Table:     A_TEMPLATE_COLUMNS   
    [4/15/2015 8:41:11 AM] ---[ Creating Views ]---
    [4/15/2015 8:41:11 AM] Creating View:      V_A_FLOW
    [4/15/2015 8:41:11 AM] Creating View:      V_A_KNOWLEDGEBASE
    [4/15/2015 8:41:11 AM] Creating View:      V_A_KNOWLEDGEBASE_AUDIT
    [4/15/2015 8:41:11 AM] Creating View:     V_A_REFERENCE_DATA_PROVIDER   
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_PROJECTS'.
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --> Running File: static_data.sql
    [4/15/2015 8:41:11 AM] ---[ Inserting Data ]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Cleansing configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Logging settings section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Logging settings section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Association configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert DataValueService configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Association rules configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert IndexService configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Knowledgebase configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Notification configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert Interactive Cleansing configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Reference Data configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert client paging configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Insert client process sampling configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Matching configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Profiling configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Process configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[FileStorageManager configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[ImportExportManager configuration section]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Reference Data Add provider]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Reference Data Add provider schema]---
    [4/15/2015 8:41:11 AM] ---[Add Special characters for term normalization]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] 
    [4/15/2015 8:41:11 AM]  --> Running File: db_version.sql
    [4/15/2015 8:41:11 AM] ---[ Running version related work ]---
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:11 AM] Creating Table:     A_DB_VERSION_INFO   
    [4/15/2015 8:41:11 AM] Creating Table:     A_DB_VERSION   
    [4/15/2015 8:41:11 AM] Creating Table:     A_DB_VERSION_UPGRADE_SCRIPTS   
    [4/15/2015 8:41:11 AM] Creating Table:     A_DB_VERSION_UPGADE_SCRIPT_PATH   
    [4/15/2015 8:41:11 AM] Creating view:     V_DB_VERSION 
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (0 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (0 rows affected)
    [4/15/2015 8:41:11 AM] ---[Add DB Version information]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (0 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (0 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (0 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Add DB Version upgrade scripts]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Add DB Version upgrade scripts path]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] ---[Add DB Version upgrade scripts path]---
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] (1 rows affected)
    [4/15/2015 8:41:11 AM] Changed database context to 'DQS_PROJECTS'.
    [4/15/2015 8:41:11 AM] Creating Table:     A_DB_VERSION in PROJECTS database 
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM]
    [4/15/2015 8:41:11 AM] Action 'Create data quality schema' finished successfully.
    [4/15/2015 8:41:11 AM] Executing action: Register data quality assemblies and stored procedures.
    [4/15/2015 8:41:11 AM] Script: 'register_dlls.cmd CMTSQLSVR04\DEV01 DQS'
    [4/15/2015 8:41:12 AM] .  Trying to connect using Windows Authentication and db name...
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Running File: drop_all_assemblies.sql
    [4/15/2015 8:41:12 AM] ---[ Dropping all SSDQS Executable Objects ]---
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Drop all SSDQS Types
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Drop all SSDQS Assemblies
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Drop all SSDQS Schemas
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Drop all CLR Assemblies
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Drop DQ startup stored procedure DQInitDQS_MAIN
    [4/15/2015 8:41:12 AM] Changed database context to 'master'.
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Running File: drop_service_broker_objects.sql
    [4/15/2015 8:41:12 AM] ---[ Dropping all SSDQS Service Broker Objects ]---
    [4/15/2015 8:41:12 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:12 AM] Dropping Service Broker Services.
    [4/15/2015 8:41:12 AM] Dropping Service Broker Queues.
    [4/15/2015 8:41:12 AM] Dropping Service Broker Contracts.
    [4/15/2015 8:41:12 AM] Dropping Service Broker Messages.
    [4/15/2015 8:41:12 AM] Completed - Service Broker objects dropped.
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Running register_assemblies.sql
    [4/15/2015 8:41:12 AM] ---[ Registering Assemblies ]---
    [4/15/2015 8:41:12 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]  --> Registering Assemblies
    [4/15/2015 8:41:12 AM]      The following Warnings are benign to DQSInstaller and may be ignored.
    [4/15/2015 8:41:12 AM] 
    [4/15/2015 8:41:12 AM]      * Register .NET dependency assemblies
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.management, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.configuration.install, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.serialization, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'smdiagnostics, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.windows.forms, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.drawing, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'accessibility, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.serialization.formatters.soap, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the
    SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:25 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.jscript, version=10.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:26 AM] Warning: The Microsoft .NET Framework assembly 'system.management.instrumentation, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:27 AM] Warning: The Microsoft .NET Framework assembly 'system.messaging, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:27 AM] Warning: The Microsoft .NET Framework assembly 'system.directoryservices, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.enterpriseservices, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=amd64.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.remoting, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.web, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=amd64.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.framework, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.xaml, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.caching, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.utilities.v4.0, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.directoryservices.protocols, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.design, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.drawing.design, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.web.regularexpressions, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.tasks.v4.0, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM] Warning: The Microsoft .NET Framework assembly 'system.serviceprocess, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:44 AM]      * Register Microsoft.Practices assemblies
    [4/15/2015 8:41:47 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.csharp, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:47 AM] Warning: The Microsoft .NET Framework assembly 'system.dynamic, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [4/15/2015 8:41:47 AM] 
    [4/15/2015 8:41:47 AM]      The preceding Warnings are benign to DQSInstaller and may be ignored.
    [4/15/2015 8:41:48 AM] 
    [4/15/2015 8:41:48 AM]  --> Running register_dq_assemblies.sql
    [4/15/2015 8:41:48 AM] ---[  Registering Data Quality assemblies ]---
    [4/15/2015 8:41:49 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.infra, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:50 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.core, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:51 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.dataservice, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:51 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.referencedata, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:52 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.index, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:52 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.associationrules, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:53 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.datavalueservice, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:54 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.domainrules, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:54 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.cleansing, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:55 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.association, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:55 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.flow, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:56 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.matching, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:57 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs, version=12.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [4/15/2015 8:41:57 AM] Resource file was not copied
    [4/15/2015 8:41:57 AM] 
    [4/15/2015 8:41:57 AM]  --> Running register_assemblies_tsql.sql
    [4/15/2015 8:41:57 AM] ---[ Registering Assemblies for TSQL]---
    [4/15/2015 8:41:57 AM] Changed database context to 'master'.
    [4/15/2015 8:41:57 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:41:57 AM] 
    [4/15/2015 8:41:57 AM]      * Clear the Code Member Table A_CODE_MEMBER.
    [4/15/2015 8:41:57 AM]
    [4/15/2015 8:41:57 AM] (0 rows affected)
    [4/15/2015 8:41:57 AM] 
    [4/15/2015 8:41:57 AM]      * Clear the Code Group Table A_CODE_GROUP.
    [4/15/2015 8:41:57 AM]
    [4/15/2015 8:41:57 AM] (0 rows affected)
    [4/15/2015 8:41:57 AM] 
    [4/15/2015 8:41:57 AM]      * Register assemblies T-SQL executable objects
    [4/15/2015 8:41:57 AM]         - Creating assemblies T-SQL registeration stored procedure.
    [4/15/2015 8:41:57 AM] 
    [4/15/2015 8:41:57 AM]      * Creating the internal_core schema
    [4/15/2015 8:41:57 AM]         - Registering Microsoft.Ssdqs.Infra T-SQL executable objects.
    [4/15/2015 8:42:05 AM]         - Registering Microsoft.Ssdqs.Core T-SQL executable objects.
    [4/15/2015 8:42:11 AM]         - Registering Microsoft.Ssdqs.DataService T-SQL executable objects.
    [4/15/2015 8:42:16 AM]         - Registering Microsoft.Ssdqs.ReferenceData T-SQL executable objects.
    [4/15/2015 8:42:21 AM]         - Registering Microsoft.Ssdqs.Index T-SQL executable objects.
    [4/15/2015 8:42:26 AM]         - Registering Microsoft.Ssdqs.Cleansing T-SQL executable objects.
    [4/15/2015 8:42:32 AM]         - Registering Microsoft.Ssdqs.Association T-SQL executable objects.
    [4/15/2015 8:42:37 AM]         - Registering Microsoft.Ssdqs.Flow T-SQL executable objects.
    [4/15/2015 8:42:42 AM]         - Registering Microsoft.Ssdqs T-SQL executable objects.
    [4/15/2015 8:42:51 AM]         - Registering Microsoft.Ssdqs.DataValueService T-SQL executable objects.
    [4/15/2015 8:42:56 AM]         - Registering Microsoft.Ssdqs.DomainRules T-SQL executable objects.
    [4/15/2015 8:43:01 AM]         - Registering Microsoft.Ssdqs.AssociationRules T-SQL executable objects.
    [4/15/2015 8:43:06 AM]         - Registering Microsoft.Ssdqs.Matching T-SQL executable objects.
    [4/15/2015 8:43:12 AM]         - Creating refresh assemblies stored procedure.
    [4/15/2015 8:43:12 AM] Changed database context to 'master'.
    [4/15/2015 8:43:12 AM]         - Creating refresh assemblies helper linked server.
    [4/15/2015 8:43:12 AM]         - Creating and registering [dbo].[DQInitDQS_MAIN] (calls internal_core.InitServer) as startup stored procedure.
    [4/15/2015 8:43:12 AM] 
    [4/15/2015 8:43:12 AM]  --> Running File: create_service_broker_objects.sql
    [4/15/2015 8:43:12 AM] ---[ Registering Service Broker Objects ]---
    [4/15/2015 8:43:12 AM] Changed database context to 'DQS_MAIN'.
    [4/15/2015 8:43:12 AM]         - Creating SB dispatcher stored procedure, messages and contract
    [4/15/2015 8:43:13 AM]         - Creating parallel execution SB queues and services
    [4/15/2015 8:43:13 AM]         - Creating calibration SB queues and services
    [4/15/2015 8:43:13 AM]         - Creating parallel calibration SB queues and services
    [4/15/2015 8:43:13 AM]
    [4/15/2015 8:43:13 AM]
    [4/15/2015 8:43:13 AM] Successfully registered all assemblies.
    [4/15/2015 8:43:13 AM]
    [4/15/2015 8:43:13 AM]
    [4/15/2015 8:43:13 AM] Action 'Register data quality assemblies and stored procedures' finished successfully.
    [4/15/2015 8:43:13 AM] Executing action: Set product version property.
    [4/15/2015 8:43:13 AM] Action 'Set product version property' finished successfully.
    [4/15/2015 8:43:13 AM] Executing action: Create MDS user (if MDS login exists).
    [4/15/2015 8:43:13 AM] Action 'Create MDS user (if MDS login exists)' finished successfully.
    [4/15/2015 8:43:13 AM] Executing action: Load out of the box data.
    [4/15/2015 8:43:22 AM] Started loading knowledgebase 'DQS Data'
    [4/15/2015 8:45:04 AM] Starting installation rollback...
    [4/15/2015 8:45:04 AM] Installation rollback completed successfully.
    [4/15/2015 8:45:04 AM] Fatal error while executing the DQS installer.
    Microsoft.Ssdqs.Proxy.ImportExport.ImportExportException: Error occurred in a server proxy call during the import/export process. ---> Microsoft.Ssdqs.Proxy.ImportExport.ImportProcessFailedException: System.NullReferenceException: Object reference not set
    to an instance of an object.
       at System.Security.Cryptography.CryptoStream..ctor(Stream stream, ICryptoTransform transform, CryptoStreamMode mode)
       at Microsoft.Ssdqs.ImportExportManagement.ImportExport.ImportExportReader..ctor(Stream stream)
       at Microsoft.Ssdqs.ImportExportManagement.ImportExport.ImportExportManager.Import(Stream input)
       at Microsoft.Ssdqs.ImportExportManagement.Calibrator.ImportKnowledgebaseCalibrator.Calibrate(IMasterContext masterContext, CalibrationMode calibrationMode, ConfigurationDomParameter calibratorConfiguration)
       at Microsoft.Ssdqs.Core.Service.Calibration.Impl.ExecuteCalibratorFlow.Process(IMasterContext context)
       --- End of inner exception stack trace ---
       at Microsoft.Ssdqs.Proxy.ImportExport.ImportAsProcessManager.WaitUntillProcessCompletes(Int64 processId, Int64 knowledgebaseId, ImportExportCancellationToken cancelToken)
       at Microsoft.Ssdqs.Proxy.ImportExport.ImportAsProcessManager.KnowledgebaseImport(String kbName, String kbDescription, String fileName, ImportExportCancellationToken cancelToken)
       at Microsoft.Ssdqs.DqsInstaller.Logic.Actions.LoadOutOfTheBoxDataAction.Execute()
       at Microsoft.Ssdqs.DqsInstaller.Logic.ActionExecuter.ExecuteAllActions()
       at Microsoft.Ssdqs.DqsInstaller.Logic.Installer.Main(String[] args)
    Microsoft (R) DQS Installer Command Line Tool
    Copyright (c) 2014 Microsoft. All rights reserved.

    Thank you for the quick response.
    Unfortunately running cmd as admin had no effect on the result. Same exact error.
    After the rollback indicated in the log above, only the DQS_STAGING_DATA database remains in the sql server instance.

  • Fatal Error while Installing DQS.

    Fatal error while trying to install the DQS. Only the DQS staging database is available when I open the SSMS the other databases are not made available with the installation please help out with the error or provide with leads.
    Error Log:
    [11/18/2014 1:49:38 AM] DQS Installer started. Installation log will be written to C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Log\DQS_install.log
    [11/18/2014 1:49:39 AM] Setting the collation to default value: SQL_Latin1_General_CP1_CI_AS
    [11/18/2014 1:49:47 AM] Using instance: MSSQLSERVER, catalog: DQS.
    [11/18/2014 1:49:48 AM] Executing action: Validate collation argument.
    [11/18/2014 1:49:48 AM] Action 'Validate collation argument' finished successfully.
    [11/18/2014 1:49:48 AM] Executing action: Check whether system reboot is pending.
    [11/18/2014 1:49:48 AM] Action 'Check whether system reboot is pending' finished successfully.
    [11/18/2014 1:49:48 AM] Executing action: Create data quality event source.
    [11/18/2014 1:49:49 AM] Action 'Create data quality event source' finished successfully.
    [11/18/2014 1:49:49 AM] Executing action: Request Database Master Key password from user..
    [11/18/2014 1:50:38 AM] Action 'Request Database Master Key password from user.' finished successfully.
    [11/18/2014 1:50:38 AM] Executing action: Approve removal of data quality services previous schema.
    [11/18/2014 1:50:38 AM] Action 'Approve removal of data quality services previous schema' finished successfully.
    [11/18/2014 1:50:38 AM] Executing action: Load Installation Scripts.
    [11/18/2014 1:50:38 AM] Extracting script to: C:\Users\Administrator\AppData\Local\Temp\hvu0kshe.qei
    [11/18/2014 1:50:41 AM] Extracting script: db\create_core_db_objects.sql
    [11/18/2014 1:50:41 AM] Extracting script: db\create_logic_db_objects.sql
    [11/18/2014 1:50:41 AM] Extracting script: db\create_transient_db_objects.sql
    [11/18/2014 1:50:41 AM] Extracting script: db\static_data.sql
    [11/18/2014 1:50:41 AM] Extracting script: db\drop_dq_databases.sql
    [11/18/2014 1:50:41 AM] Extracting script: helper\DeleteSchemaDs.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\drop_all_assemblies.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\create_databases.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\drop_databases.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\drop_all_tables.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\drop_database_properties.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\master_create.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\master_recreate.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\register_assemblies.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\register_assemblies_tsql.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\register_dq_assemblies.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\create_service_broker_objects.sql
    [11/18/2014 1:50:41 AM] Extracting script: sql\drop_service_broker_objects.sql
    [11/18/2014 1:50:41 AM] Extracting script: recreate_schema.bat
    [11/18/2014 1:50:41 AM] Extracting script: drop_databases.cmd
    [11/18/2014 1:50:41 AM] Extracting script: register_dlls.cmd
    [11/18/2014 1:50:41 AM] Extracting script: unregister_dlls.cmd
    [11/18/2014 1:50:41 AM] Extracting script: assembly_paths_retail.txt
    [11/18/2014 1:50:41 AM] Extracting script: DQS_Data.dqs
    [11/18/2014 1:50:42 AM] Extracting script: DefaultKbs.xml
    [11/18/2014 1:50:42 AM] Total scripts extracted: 25
    [11/18/2014 1:50:42 AM] Action 'Load Installation Scripts' finished successfully.
    [11/18/2014 1:50:42 AM] Executing action: Create data quality schema.
    [11/18/2014 1:50:42 AM] Script: 'recreate_schema.bat SHANKS-PC DQS SQL_Latin1_General_CP1_CI_AS'
    [11/18/2014 1:50:42 AM] .  Trying to connect using Windows Authentication and db name...
    [11/18/2014 1:50:43 AM] Changed database context to 'master'.
    [11/18/2014 1:50:54 AM] Creating DQS databases (DQS_MAIN, DQS_PROJECTS, DQS_STAGING_DATA)...
    [11/18/2014 1:50:54 AM] Configuring DQS databases
    [11/18/2014 1:50:54 AM] Configuration option 'clr enabled' changed from 0 to 1. Run the RECONFIGURE statement to install.
    [11/18/2014 1:50:54 AM] Creating Master Key for database DQS_MAIN...
    [11/18/2014 1:50:54 AM] Creating Module Signing Certificate for database DQS_MAIN...
    [11/18/2014 1:50:54 AM] Exporting Certificate from DQS_MAIN
    [11/18/2014 1:50:54 AM] Importing Certificate into DQS_PROJECTS
    [11/18/2014 1:50:54 AM] Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
    [11/18/2014 1:50:54 AM] Configuration option 'xp_cmdshell' changed from 0 to 1. Run the RECONFIGURE statement to install.
    [11/18/2014 1:50:54 AM] Configuration option 'xp_cmdshell' changed from 1 to 0. Run the RECONFIGURE statement to install.
    [11/18/2014 1:50:54 AM] Creating DQS roles
    [11/18/2014 1:50:54 AM] Changed database context to 'DQS_STAGING_DATA'.
    [11/18/2014 1:50:54 AM]  
    [11/18/2014 1:50:54 AM]  --> Running File: drop_database_properties.sql
    [11/18/2014 1:50:54 AM] Changed database context to 'DQS_PROJECTS'.
    [11/18/2014 1:50:54 AM]  
    [11/18/2014 1:50:54 AM]  --> Drop all SSDQS Database objects and KB schemas
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Symmetric Keys ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Certificates ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all FK constraints ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all views ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all tables and synonyms ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all database triggers ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all stored procedures in Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all types in Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --> Running File: drop_database_properties.sql
    [11/18/2014 1:50:56 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --> Drop all SSDQS Database objects and KB schemas
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Symmetric Keys ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Certificates ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all FK constraints ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all views ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all tables and synonyms ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all database triggers ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all stored procedures in Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all types in Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --[ Drop all Knowledge Base schemas ]
    [11/18/2014 1:50:56 AM]  
    [11/18/2014 1:50:56 AM]  --> Running File: drop_database_properties.sql
    [11/18/2014 1:50:56 AM] Changed database context to 'DQS_STAGING_DATA'.
    [11/18/2014 1:50:56 AM] Changed database context to 'DQS_PROJECTS'.
    [11/18/2014 1:50:56 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:50:57 AM]  
    [11/18/2014 1:50:57 AM]  --> Running File: create_core_db_objects.sql
    [11/18/2014 1:50:57 AM] ---[  Creating Certificates  ]---
    [11/18/2014 1:50:57 AM]  
    [11/18/2014 1:50:57 AM] ---[  Creating Symmetric Keys  ]---
    [11/18/2014 1:50:57 AM]  
    [11/18/2014 1:50:57 AM] ---[  Creating Tables  ]---
    [11/18/2014 1:50:57 AM] Creating Table:     A_TEST    
    [11/18/2014 1:50:57 AM] Creating Table:     A_TEST2    
    [11/18/2014 1:50:57 AM] Creating Table:     A_FLOW    
    [11/18/2014 1:50:57 AM] Creating Table:     A_FLOW_ANSWER    
    [11/18/2014 1:50:57 AM] Creating Table:     A_EXECUTION_UNIT 
    [11/18/2014 1:50:57 AM] Creating Table:     A_CODE_GROUP    
    [11/18/2014 1:50:57 AM] Creating Table:     A_CODE_MEMBER    
    [11/18/2014 1:50:57 AM] Creating Table:     A_CONFIGURATION    
    [11/18/2014 1:50:57 AM] Creating Table:     A_PROCESS    
    [11/18/2014 1:50:57 AM] Creating Table:     A_SERVICE_BROKER_TASK    
    [11/18/2014 1:50:57 AM] Creating Table:     A_KNOWLEDGEBASE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_KNOWLEDGEBASE_AUDIT    
    [11/18/2014 1:50:57 AM] Creating Table:     A_KNOWLEDGEBASE_ACTIVITY    
    [11/18/2014 1:50:57 AM] Creating Table:     A_PROFILING_ACTIVITY_ARCHIVE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_CLIENT_SESSION    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_PROVIDER    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_PROVIDER_SCHEMA    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_CACHE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_CACHE_SUGGESTION    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_CACHE_SUGGESTION_PARSED    
    [11/18/2014 1:50:57 AM] Creating Table:     A_REFERENCE_DATA_AUDIT    
    [11/18/2014 1:50:57 AM] Creating Table:     A_IMPORTED_PROJECT    
    [11/18/2014 1:50:57 AM] Creating Table:     A_SPELLER_DICTIONARY_VALUE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_SPECIAL_CHARACTER_RULE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_PERSISTENT_CACHE    
    [11/18/2014 1:50:57 AM] Creating Table:     A_TEMPLATE_OBJECTS    
    [11/18/2014 1:50:57 AM] Creating Table:     A_TEMPLATE_FOREIGN_KEYS    
    [11/18/2014 1:50:57 AM] Creating Table:     A_TEMPLATE_COLUMNS    
    [11/18/2014 1:50:57 AM] ---[ Creating Views ]---
    [11/18/2014 1:50:57 AM] Creating View:      V_A_FLOW
    [11/18/2014 1:50:57 AM] Creating View:      V_A_KNOWLEDGEBASE
    [11/18/2014 1:50:57 AM] Creating View:      V_A_KNOWLEDGEBASE_AUDIT
    [11/18/2014 1:50:57 AM] Creating View:     V_A_REFERENCE_DATA_PROVIDER    
    [11/18/2014 1:50:57 AM] Changed database context to 'DQS_PROJECTS'.
    [11/18/2014 1:50:57 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:50:57 AM]  
    [11/18/2014 1:50:57 AM]  --> Running File: static_data.sql
    [11/18/2014 1:50:57 AM] ---[ Insert Data ]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Cleansing configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Logging settings section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Logging settings section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Association configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert DataValueService configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Association rules configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert IndexService configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Knowledgebase configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert Notification configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] ---[Insert Interactive Cleansing configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Reference Data configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert client paging configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Insert client process sampling configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Matching configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Profiling configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Process configuration section]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Reference Data Add provider]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] ---[Reference Data Add provider schema]---
    [11/18/2014 1:50:57 AM] ---[Add Special characters for term normalization]---
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] (1 rows affected)
    [11/18/2014 1:50:57 AM] 
    [11/18/2014 1:50:57 AM] Action 'Create data quality schema' finished successfully.
    [11/18/2014 1:50:57 AM] Executing action: Register data quality assemblies and stored procedures.
    [11/18/2014 1:50:57 AM] Script: 'register_dlls.cmd SHANKS-PC DQS'
    [11/18/2014 1:50:58 AM] .  Trying to connect using Windows Authentication and db name...
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all SSDQS Executable Objects
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all SSDQS Types
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all SSDQS Assemblies
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all SSDQS Schemas
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all CLR Assemblies
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop DQ startup stored procedure DQInitDQS_MAIN
    [11/18/2014 1:50:58 AM] Changed database context to 'master'.
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Drop all SSDQS Service Broker Objects
    [11/18/2014 1:50:58 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:50:58 AM] Dropping Service Broker Services.
    [11/18/2014 1:50:58 AM] Dropping Service Broker Queues.
    [11/18/2014 1:50:58 AM] Dropping Service Broker Contracts.
    [11/18/2014 1:50:58 AM] Dropping Service Broker Messages.
    [11/18/2014 1:50:58 AM] Completed - Service Broker objects dropped.
    [11/18/2014 1:50:58 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]  --> Registering Assemblies
    [11/18/2014 1:50:58 AM]  
    [11/18/2014 1:50:58 AM]      * Register .NET dependency assemblies
    [11/18/2014 1:51:49 AM] Warning: The Microsoft .NET Framework assembly 'system.management, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.configuration.install, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.serialization, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'smdiagnostics, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.windows.forms, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.drawing, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'accessibility, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.serialization.formatters.soap, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in
    the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.jscript, version=10.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.management.instrumentation, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.messaging, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:52:00 AM] Warning: The Microsoft .NET Framework assembly 'system.directoryservices, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.enterpriseservices, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=amd64.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.remoting, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.web, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=amd64.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.framework, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.xaml, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.runtime.caching, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.utilities.v4.0, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.directoryservices.protocols, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.design, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.drawing.design, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.web.regularexpressions, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server
    hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.build.tasks.v4.0, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted
    environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM] Warning: The Microsoft .NET Framework assembly 'system.serviceprocess, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:25 AM]      * Register Microsoft.Practices assemblies
    [11/18/2014 1:53:30 AM] Warning: The Microsoft .NET Framework assembly 'microsoft.csharp, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:30 AM] Warning: The Microsoft .NET Framework assembly 'system.dynamic, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment
    and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    [11/18/2014 1:53:30 AM]  
    [11/18/2014 1:53:30 AM]      * Register DQ assemblies
    [11/18/2014 1:53:34 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.infra, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:35 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.core, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:35 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.dataservice, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:36 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.referencedata, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:37 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.index, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:37 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.associationrules, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted
    environment.
    [11/18/2014 1:53:38 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.datavalueservice, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted
    environment.
    [11/18/2014 1:53:39 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.domainrules, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:44 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.cleansing, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:45 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.association, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:45 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.flow, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:46 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs.matching, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:47 AM] Warning: The SQL Server client assembly 'microsoft.ssdqs, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
    [11/18/2014 1:53:47 AM] Resource file was not copied
    [11/18/2014 1:53:47 AM] Changed database context to 'master'.
    [11/18/2014 1:53:47 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:53:47 AM]  
    [11/18/2014 1:53:47 AM]      * Clear the Code Member Table A_CODE_MEMBER.
    [11/18/2014 1:53:47 AM] 
    [11/18/2014 1:53:47 AM] (0 rows affected)
    [11/18/2014 1:53:47 AM]  
    [11/18/2014 1:53:47 AM]      * Clear the Code Group Table A_CODE_GROUP.
    [11/18/2014 1:53:47 AM] 
    [11/18/2014 1:53:47 AM] (0 rows affected)
    [11/18/2014 1:53:47 AM]  
    [11/18/2014 1:53:47 AM]      * Register assemblies T-SQL executable objects
    [11/18/2014 1:53:47 AM]         - Creating assemblies T-SQL registeration stored procedure.
    [11/18/2014 1:53:47 AM]  
    [11/18/2014 1:53:47 AM]      * Creating the internal_core schema
    [11/18/2014 1:53:47 AM]         - Registering Microsoft.Ssdqs.Infra T-SQL executable objects.
    [11/18/2014 1:54:01 AM]         - Registering Microsoft.Ssdqs.Core T-SQL executable objects.
    [11/18/2014 1:54:01 AM]         - Registering Microsoft.Ssdqs.DataService T-SQL executable objects.
    [11/18/2014 1:54:02 AM]         - Registering Microsoft.Ssdqs.ReferenceData T-SQL executable objects.
    [11/18/2014 1:54:02 AM]         - Registering Microsoft.Ssdqs.Index T-SQL executable objects.
    [11/18/2014 1:54:02 AM]         - Registering Microsoft.Ssdqs.Cleansing T-SQL executable objects.
    [11/18/2014 1:54:03 AM]         - Registering Microsoft.Ssdqs.Association T-SQL executable objects.
    [11/18/2014 1:54:03 AM]         - Registering Microsoft.Ssdqs.Flow T-SQL executable objects.
    [11/18/2014 1:54:03 AM]         - Registering Microsoft.Ssdqs T-SQL executable objects.
    [11/18/2014 1:54:08 AM]         - Registering Microsoft.Ssdqs.DataValueService T-SQL executable objects.
    [11/18/2014 1:54:08 AM]         - Registering Microsoft.Ssdqs.DomainRules T-SQL executable objects.
    [11/18/2014 1:54:08 AM]         - Registering Microsoft.Ssdqs.AssociationRules T-SQL executable objects.
    [11/18/2014 1:54:08 AM]         - Registering Microsoft.Ssdqs.Matching T-SQL executable objects.
    [11/18/2014 1:54:08 AM]         - Creating refresh assemblies stored procedure.
    [11/18/2014 1:54:10 AM] Changed database context to 'master'.
    [11/18/2014 1:54:10 AM]         - Creating refresh assemblies helper linked server.
    [11/18/2014 1:54:10 AM]         - Creating and registering [dbo].[DQInitDQS_MAIN] (calls internal_core.InitServer) as startup stored procedure.
    [11/18/2014 1:54:10 AM]  
    [11/18/2014 1:54:10 AM]      * Register Service Broker objects
    [11/18/2014 1:54:10 AM] Changed database context to 'DQS_MAIN'.
    [11/18/2014 1:54:10 AM]         - Creating SB dispatcher stored procedure, messages and contract
    [11/18/2014 1:54:10 AM]         - Creating parallel execution SB queues and services
    [11/18/2014 1:54:10 AM]         - Creating calibration SB queues and services
    [11/18/2014 1:54:10 AM]         - Creating parallel calibration SB queues and services
    [11/18/2014 1:54:10 AM] 
    [11/18/2014 1:54:10 AM] 
    [11/18/2014 1:54:10 AM] Successfully registered all assemblies.
    [11/18/2014 1:54:10 AM] 
    [11/18/2014 1:54:10 AM] 
    [11/18/2014 1:54:10 AM] Action 'Register data quality assemblies and stored procedures' finished successfully.
    [11/18/2014 1:54:10 AM] Executing action: Set product version property.
    [11/18/2014 1:54:10 AM] Action 'Set product version property' finished successfully.
    [11/18/2014 1:54:10 AM] Executing action: Create MDS user (if MDS login exists).
    [11/18/2014 1:54:10 AM] Action 'Create MDS user (if MDS login exists)' finished successfully.
    [11/18/2014 1:54:10 AM] Executing action: Load out of the box data.
    [11/18/2014 1:54:14 AM] Started loading knowledgebase 'DQS Data'
    [11/18/2014 1:59:54 AM] Starting installation rollback...
    [11/18/2014 1:59:55 AM] Installation rollback completed successfully.
    [11/18/2014 1:59:55 AM] Fatal error while executing the DQS installer.
    Microsoft.Ssdqs.Infra.Exceptions.EntryPointException: Execution of DB script 'Microsoft.Ssdqs.Core.Service.KnowledgebaseManagement.TSQL.create_logic_tables_and_copy_data.sql' failed.
       at Microsoft.Ssdqs.Proxy.Database.DBAccessClient.Exec()
       at Microsoft.Ssdqs.Proxy.EntryPoint.KnowledgebaseManagementEntryPointClient.KnowledgebasePublish(Knowledgebase knowledgebase)
       at Microsoft.Ssdqs.DqsInstaller.Logic.Actions.LoadOutOfTheBoxDataAction.Execute()
       at Microsoft.Ssdqs.DqsInstaller.Logic.ActionExecuter.ExecuteAllActions()
       at Microsoft.Ssdqs.DqsInstaller.Logic.Installer.Main(String[] args)
    [11/18/2014 2:08:25 AM] DQS Installer started. Installation log will be written to C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Log\DQS_install.log
    [11/18/2014 2:08:25 AM] Setting the collation to default value: SQL_Latin1_General_CP1_CI_AS
    [11/18/2014 2:08:26 AM] Using instance: MSSQLSERVER, catalog: DQS.
    [11/18/2014 2:08:26 AM] Executing action: Validate collation argument.
    [11/18/2014 2:08:26 AM] Action 'Validate collation argument' finished successfully.
    [11/18/2014 2:08:26 AM] Executing action: Check whether system reboot is pending.

    Can you check in event viewer for the actual errors? What is @@version?
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Exchange Passive Node Failover - Getting An Error While Installing Mailbox Role in Passive Node

    Hello,
    I was having Exchange 2007 CCR in Two Nodes, Due to hardware fail my passive node is crash. Now i want to recover my passive node i follow this steps
     http://www.msexchange.org/articles-tutorials/exchange-server-2007/high-availability-recovery/re-installing-cluster-nodes-exchange-2007-ccr-based-mailbox-server-setup-part2.html
    Evict the Damaged Node from the Cluster
    Install Windows Server 2003 on the replacement node
    Use the same drive letters and folder structure for the database and log file drives
    Install the same service packs & software updates as the cluster active node
     Use a unique computer name
    for the replacement node
    Join the replacement node to the domain
    Add the replacement node to the Cluster using Cluster Administrator
    When im installing Passive node i'm getting an error when mailbox role is installing "Object refernce not set to an instance of an object"
    Please Advise

    [1/6/2015 12:28:31 PM] [1] Processing component 'All Roles Precompile Management Binaries' (Pre-compiling management binaries.).
    [1/6/2015 12:28:31 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\microsoft.Exchange.Rpc.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:28:31 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\microsoft.Exchange.Rpc.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:28:31 PM] [2] Beginning processing.
    [1/6/2015 12:28:31 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Rpc.dll" /verbose
    [1/6/2015 12:28:41 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Rpc.dll
    Compiling 3 assemblies:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Rpc.dll ...
    Microsoft.Exchange.Rpc, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {A77F7B45-C91D-4B18-94DB-D563EB0D1F84}
     Source HASH: 1c8367b62a1131417ed73fe3e751c3828b38a5a1
     NGen GUID sign: {66199311-02ED-4287-D82B-3AB75FED547C}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\11931966ed028742d82b3ab75fed547c\Microsoft.Exchange.Rpc.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.VisualC, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{1483EE61-9ACA-4942-AC0A-402784F7E1B9}
       Sign:40be9432586208c4bb49866ff7ea31bc16665a6b
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Rpc.dll ...
        Compiling assembly Microsoft.VisualC, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
    Microsoft.VisualC, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
     Source MVID: {1483EE61-9ACA-4942-AC0A-402784F7E1B9}
     Source HASH: 40be9432586208c4bb49866ff7ea31bc16665a6b
     NGen GUID sign: {01CF6F39-E4D3-0686-274B-9F5584B1BA3D}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1">
    <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    version="1"
    Flags="SkipVerification"/>
    </PermissionSet>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.VisualC\396fcf01d3e48606274b9f5584b1ba3d\Microsoft.VisualC.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.VisualC, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{1483EE61-9ACA-4942-AC0A-402784F7E1B9}
       Sign:40be9432586208c4bb49866ff7ea31bc16665a6b
        Finished compiling assembly Microsoft.VisualC, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
        Compiling assembly System.Data.SqlXml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ...
    System.Data.SqlXml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
     Source MVID: {9F0BE212-39D8-4977-8C55-D2ADED637952}
     Source HASH: b97802318037f8b266acd7d3f0e16e3a9fb92384
     NGen GUID sign: {92C14596-C6E1-628A-572D-F352D8489683}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Data.SqlXml\9645c192e1c68a62572df352d8489683\System.Data.SqlXml.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      System.Data.SqlXml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{9F0BE212-39D8-4977-8C55-D2ADED637952}
       Sign:b97802318037f8b266acd7d3f0e16e3a9fb92384
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      System.Xml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{2B8AEF52-78D4-4F03-BA8B-F0B5272945C8}
       Sign:218b87cdd9259fa6d554495522606b60250a72d6
       Hardbound Guid:{D76087B7-4045-EE39-A98A-147340E84C24}
      System.Configuration, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{933D8A04-B103-4B70-BE89-87F8F370AEC4}
       Sign:f825e55c996a6136191e393eadffe07e2ed2b984
        Finished compiling assembly System.Data.SqlXml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ...
    [1/6/2015 12:28:41 PM] [2] Process standard error:
    [1/6/2015 12:28:41 PM] [2] Ending processing.
    [1/6/2015 12:28:41 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\microsoft.Exchange.Common.IL.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:28:41 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\microsoft.Exchange.Common.IL.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:28:41 PM] [2] Beginning processing.
    [1/6/2015 12:28:41 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Common.IL.dll" /verbose
    [1/6/2015 12:28:41 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Common.IL.dll
    Compiling 1 assembly:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Common.IL.dll ...
    Microsoft.Exchange.Common.IL, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {2C563679-AE56-41C7-8A80-8A0D965AFF9E}
     Source HASH: 318bf726c3ec004b8db6dfa3ad02a4eae82b4890
     NGen GUID sign: {DBE4EF23-FE16-7D26-5A96-72F3C43A5B66}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\23efe4db16fe267d5a9672f3c43a5b66\Microsoft.Exchange.Common.IL.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\microsoft.Exchange.Common.IL.dll ...
    [1/6/2015 12:28:41 PM] [2] Process standard error:
    [1/6/2015 12:28:41 PM] [2] Ending processing.
    [1/6/2015 12:28:41 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Diagnostics.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:28:41 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Diagnostics.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:28:41 PM] [2] Beginning processing.
    [1/6/2015 12:28:41 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Diagnostics.dll" /verbose
    [1/6/2015 12:29:01 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Diagnostics.dll
    Compiling 2 assemblies:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Diagnostics.dll ...
    Microsoft.Exchange.Diagnostics, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {8CBFBD3F-1859-44DB-B85B-3DE8CA01DF33}
     Source HASH: 1a70943ea983aa1742e98704ccbfb40bfef33c23
     NGen GUID sign: {77300B68-787B-A1CA-3298-EFA73DB0406B}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\680b30777b78caa13298efa73db0406b\Microsoft.Exchange.Diagnostics.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.Exchange.Data.Common, Version=8.0.681.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
       Sign:b8f148b173ec7d9e604f21424493a289b6e9873a
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      Microsoft.Exchange.Rpc, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{A77F7B45-C91D-4B18-94DB-D563EB0D1F84}
       Sign:1c8367b62a1131417ed73fe3e751c3828b38a5a1
      System.Configuration, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{933D8A04-B103-4B70-BE89-87F8F370AEC4}
       Sign:f825e55c996a6136191e393eadffe07e2ed2b984
      Microsoft.Exchange.Common.IL, Version=0.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{2C563679-AE56-41C7-8A80-8A0D965AFF9E}
       Sign:318bf726c3ec004b8db6dfa3ad02a4eae82b4890
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Diagnostics.dll ...
        Compiling assembly Microsoft.Exchange.Data.Common, Version=8.0.681.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 ...
    Microsoft.Exchange.Data.Common, Version=8.0.681.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
     Source HASH: b8f148b173ec7d9e604f21424493a289b6e9873a
     NGen GUID sign: {7A773BF5-FF43-09DF-08EF-86BA364EACF8}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\f53b777a43ffdf0908ef86ba364eacf8\Microsoft.Exchange.Data.Common.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.Exchange.Data.Common, Version=8.0.681.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
       Sign:b8f148b173ec7d9e604f21424493a289b6e9873a
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      System.Configuration, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{933D8A04-B103-4B70-BE89-87F8F370AEC4}
       Sign:f825e55c996a6136191e393eadffe07e2ed2b984
      System.Xml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{2B8AEF52-78D4-4F03-BA8B-F0B5272945C8}
       Sign:218b87cdd9259fa6d554495522606b60250a72d6
        Finished compiling assembly Microsoft.Exchange.Data.Common, Version=8.0.681.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 ...
    [1/6/2015 12:29:01 PM] [2] Process standard error:
    [1/6/2015 12:29:01 PM] [2] Ending processing.
    [1/6/2015 12:29:01 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Common.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:29:01 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Common.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:29:01 PM] [2] Beginning processing.
    [1/6/2015 12:29:01 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Common.dll" /verbose
    [1/6/2015 12:29:04 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Common.dll
    Compiling 4 assemblies:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Common.dll ...
    Microsoft.Exchange.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {090DC806-FB68-4A89-A969-BD125452394C}
     Source HASH: b982dcf50fe022b926a03529b85ca2e23a60d148
     NGen GUID sign: {792B0253-E3BE-1EFA-9121-A58ACC443015}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\53022b79bee3fa1e9121a58acc443015\Microsoft.Exchange.Common.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.Exchange.Data.Common, Version=8.0.681.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
       Sign:b8f148b173ec7d9e604f21424493a289b6e9873a
      System.ServiceProcess, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{B5D02EE9-B8F4-493D-98DE-B99067CAF039}
       Sign:346c2ee41e7e70d67ce4640726edd8203d3f276f
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      Microsoft.Exchange.Diagnostics, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{8CBFBD3F-1859-44DB-B85B-3DE8CA01DF33}
       Sign:1a70943ea983aa1742e98704ccbfb40bfef33c23
      Microsoft.Exchange.Common.IL, Version=0.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{2C563679-AE56-41C7-8A80-8A0D965AFF9E}
       Sign:318bf726c3ec004b8db6dfa3ad02a4eae82b4890
      System.Xml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{2B8AEF52-78D4-4F03-BA8B-F0B5272945C8}
       Sign:218b87cdd9259fa6d554495522606b60250a72d6
      System.Configuration, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{933D8A04-B103-4B70-BE89-87F8F370AEC4}
       Sign:f825e55c996a6136191e393eadffe07e2ed2b984
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Common.dll ...
        Compiling assembly System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
    System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
     Source MVID: {B5D02EE9-B8F4-493D-98DE-B99067CAF039}
     Source HASH: 346c2ee41e7e70d67ce4640726edd8203d3f276f
     NGen GUID sign: {9B9F9598-687E-0C63-2CA3-B8EDA6232888}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.ServiceProce#\98959f9b7e68630c2ca3b8eda6232888\System.ServiceProcess.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      System.ServiceProcess, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{B5D02EE9-B8F4-493D-98DE-B99067CAF039}
       Sign:346c2ee41e7e70d67ce4640726edd8203d3f276f
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      System.Configuration.Install, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{D5488AB9-12B4-4921-AA95-21DB22B1179F}
       Sign:f4643c4fbc352b9201db4aed87752b52241d6f41
      System.Windows.Forms, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{1FF9D862-38A6-4352-A1BC-17E1C0B67EC2}
       Sign:7779b2d88e7f75ffc31828f7112e7066410162e8
      System.Drawing, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{A3205C19-31D6-4357-9F8E-A9513306DEC7}
       Sign:fb709be7704fcf1fd7055d39ebaf4388194d2889
        Finished compiling assembly System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
        Compiling assembly System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
    System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
     Source MVID: {D5488AB9-12B4-4921-AA95-21DB22B1179F}
     Source HASH: f4643c4fbc352b9201db4aed87752b52241d6f41
     NGen GUID sign: {C503523D-FD52-F19C-05CB-4B7336D79A49}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Configuratio#\3d5203c552fd9cf105cb4b7336d79a49\System.Configuration.Install.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      System.Configuration.Install, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{D5488AB9-12B4-4921-AA95-21DB22B1179F}
       Sign:f4643c4fbc352b9201db4aed87752b52241d6f41
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{13BC79E5-AB8A-48B6-B2CC-0854119DCBDA}
       Sign:1014fd9f161aff328c98924d6088ae65aa3030d7
      System.Windows.Forms, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{1FF9D862-38A6-4352-A1BC-17E1C0B67EC2}
       Sign:7779b2d88e7f75ffc31828f7112e7066410162e8
        Finished compiling assembly System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
        Compiling assembly System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
    System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
     Source MVID: {13BC79E5-AB8A-48B6-B2CC-0854119DCBDA}
     Source HASH: 1014fd9f161aff328c98924d6088ae65aa3030d7
     NGen GUID sign: {34727167-AFF5-E848-9451-78BC72A62EC8}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Runtime.Seri#\67717234f5af48e8945178bc72a62ec8\System.Runtime.Serialization.Formatters.Soap.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{13BC79E5-AB8A-48B6-B2CC-0854119DCBDA}
       Sign:1014fd9f161aff328c98924d6088ae65aa3030d7
      System.Xml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{2B8AEF52-78D4-4F03-BA8B-F0B5272945C8}
       Sign:218b87cdd9259fa6d554495522606b60250a72d6
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
        Finished compiling assembly System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ...
    [1/6/2015 12:29:04 PM] [2] Process standard error:
    [1/6/2015 12:29:04 PM] [2] Ending processing.
    [1/6/2015 12:29:04 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Core.Strings.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:29:04 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Core.Strings.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:29:04 PM] [2] Beginning processing.
    [1/6/2015 12:29:04 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Core.Strings.dll" /verbose
    [1/6/2015 12:29:04 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Core.Strings.dll
    Compiling 1 assembly:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Core.Strings.dll ...
    Microsoft.Exchange.Core.Strings, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {E671C74F-10AB-419E-8A0F-4C027B3981B5}
     Source HASH: bef5663bd404d89f1c9e4e8df9e17b782e4ce766
     NGen GUID sign: {C4BFD0BF-BC1A-FF4C-DACE-61165E6BEE7C}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\bfd0bfc41abc4cffdace61165e6bee7c\Microsoft.Exchange.Core.Strings.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      Microsoft.Exchange.Data.Common, Version=8.0.681.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
       Sign:b8f148b173ec7d9e604f21424493a289b6e9873a
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Core.Strings.dll ...
    [1/6/2015 12:29:04 PM] [2] Process standard error:
    [1/6/2015 12:29:04 PM] [2] Ending processing.
    [1/6/2015 12:29:04 PM] [1] Executing '$fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Net.dll"); precompile-ManagedBinary -BinaryName $fullPath;', handleError = False
    [1/6/2015 12:29:04 PM] [2] Launching sub-task '$error.Clear(); $fullPath = [System.IO.Path]::Combine($RoleInstallPath, "bin\Microsoft.Exchange.Net.dll"); precompile-ManagedBinary -BinaryName $fullPath;'.
    [1/6/2015 12:29:04 PM] [2] Beginning processing.
    [1/6/2015 12:29:04 PM] [2] Starting: C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ngen.exe arguments: install "C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Net.dll" /verbose
    [1/6/2015 12:29:13 PM] [2] Process standard output: Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
    Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
    Installing assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Net.dll
    Compiling 3 assemblies:
        Compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Net.dll ...
    Microsoft.Exchange.Net, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {9177A7BE-2ECC-40D4-B5FB-0C643A1130E4}
     Source HASH: 2d34ca7cbaf2359fe068828351a1d8d30e21a536
     NGen GUID sign: {BBAEC190-74C2-84D5-C4B9-F7BA04A86E4E}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"
    Unrestricted="true"/>
     File:  C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Exchange.#\90c1aebbc274d584c4b9f7ba04a86e4e\Microsoft.Exchange.Net.ni.dll
     Dependencies:
      mscorlib, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{F107DDB2-5499-4106-A503-4AA24B5E4A4F}
       Sign:c2219dc660a826c6a3b4bc7e85de9105086db23d
       Hardbound Guid:{687FCFEB-5108-AC0C-E27B-D065DA0AE3B9}
      System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089:
       Guid:{71EFBB87-F94E-4397-8D46-76BB8FF60448}
       Sign:d464740812db1d60e65c51092d09f67028463192
       Hardbound Guid:{D5F143E5-1AD8-CB94-12D2-3D4AFFC46E22}
      Microsoft.Exchange.Data.Common, Version=8.0.681.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{F2CA7D1F-DA42-4E38-AF97-547F51FA377C}
       Sign:b8f148b173ec7d9e604f21424493a289b6e9873a
      Microsoft.Exchange.Common, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{090DC806-FB68-4A89-A969-BD125452394C}
       Sign:b982dcf50fe022b926a03529b85ca2e23a60d148
      System.ServiceProcess, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{B5D02EE9-B8F4-493D-98DE-B99067CAF039}
       Sign:346c2ee41e7e70d67ce4640726edd8203d3f276f
      Microsoft.Exchange.Diagnostics, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{8CBFBD3F-1859-44DB-B85B-3DE8CA01DF33}
       Sign:1a70943ea983aa1742e98704ccbfb40bfef33c23
      Interop.CertEnroll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{0E330E86-15D9-46AE-A943-0160454E3570}
       Sign:10641c56e63c1e3b9be7bfb997e948658dc1e2d1
      System.DirectoryServices, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{E467B35C-E345-465C-8CCB-F6D3E2E81276}
       Sign:ad9b0b1379315a2b0fc5d0367fa95cf9bd4681c9
      Interop.XEnroll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{678158A1-9581-44D6-BF1A-126EA654836E}
       Sign:01a0beca7e00e08f1291a22cfe2830785bf7f0ab
      System.Configuration, Version=2.0.0.0, PublicKeyToken=b03f5f7f11d50a3a:
       Guid:{933D8A04-B103-4B70-BE89-87F8F370AEC4}
       Sign:f825e55c996a6136191e393eadffe07e2ed2b984
      Microsoft.Exchange.Core.Strings, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35:
       Guid:{E671C74F-10AB-419E-8A0F-4C027B3981B5}
       Sign:bef5663bd404d89f1c9e4e8df9e17b782e4ce766
        Finished compiling assembly C:\Program Files\Microsoft\Exchange Server\bin\Microsoft.Exchange.Net.dll ...
        Compiling assembly Interop.CertEnroll, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 ...
    Interop.CertEnroll, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
     Source MVID: {0E330E86-15D9-46AE-A943-0160454E3570}
     Source HASH: 10641c56e63c1e3b9be7bfb997e948658dc1e2d1
     NGen GUID sign: {671C04E0-0279-45A6-2B1C-22C0FA104F19}
     OS:  WinNT
     Processor: amd64
     Runtime: 2.0.50727.926
     mscorwks.dll: TimeStamp=46D8E98C, CheckSum=009E1083
     Flags:  
     Scenarios:  <no debug info> <no debugger> <no profiler> <no instrumentation>
     Granted set: <PermissionSet class="System.Security.PermissionSet"
    version="1"

  • Calling web service from SQL 2008 error: System.Security.HostProtectionException: Attempted to perform an operation that was forbidden by the CLR host.

    Hi, 
    Im trying to use web service in c# sql database project. when running stored procedure, in which the web service should be called, im getting this error:
    System.TypeInitializationException: The type initializer for 'System.ServiceModel.ClientBase`1' threw an exception. ---> System.Security.HostProtectionException: Attempted to perform an operation that was forbidden by the CLR host.
    at System.ServiceModel.DiagnosticUtility.GetUtility()
    at System.ServiceModel.DiagnosticUtility.get_Utility()
    at System.ServiceModel.ClientBase`1..cctor()
    The protected resources (only available with full trust) were:
    All
    The demanded resources were:
    Synchronization, ExternalThreading
    --- End of inner exception stack trace ---
    at System.ServiceModel.ClientBase`1.InitializeChannelFactoryRef()
    at System.ServiceModel.ClientBase`1..ctor()
    at UMGClient..ctor()
    at UMG_StoredProcedures.spUMG_ProcessEmail(SqlInt64 cid_request)
    Here is the code:
    using System;
    using System.Data;
    using System.Data.SqlClient;
    using System.Data.SqlTypes;
    using Microsoft.SqlServer.Server;
    using CredexDB.Workflow;
    using System.Collections.Generic;
    using CredexDB.umgwcftest;
    public partial class UMG_StoredProcedures
    /// <summary>
    /// </summary>
    /// <param name="bankDate"></param>
    /// <param name="stateCategory"></param>
    [Microsoft.SqlServer.Server.SqlProcedure]
    public static void spUMG_ProcessEmail( SqlInt64 cid_request )
    SqlConnection conn = new SqlConnection("Context Connection=true;");
    conn.Open();
    try
    SqlContext.Pipe.Send("A");
    UMGClient umgcl = new UMGClient();
    SqlContext.Pipe.Send("B");
    UMGwcf.SoapExchangeMailMessage email = new UMGwcf.SoapExchangeMailMessage();
    string[] names = new string[1];
    names[0] = "[email protected]";
    email.To = names;
    email.Subject = "Test UmgWcf";
    email.MessageBody = "Testovacia správa - ľľššččťťťýéáí";
    email.From = "[email protected]";
    email.Priority = 20;
    email.Sender = 1;
    email.DoNotArchive = false;
    email.EncryptAndSign = false;
    //long ret = umgcl.SendMailMessage(email);
    catch (Exception e)
    SqlContext.Pipe.Send("C");
    SqlContext.Pipe.Send(e.ToString());
    finally
    SqlContext.Pipe.Send("D");
    conn.Close();
    private static void execSql(string sql, SqlConnection conn)
    new SqlCommand(sql, conn).ExecuteNonQuery();
    The error occurs at this row:
    UMGClient umgcl = new UMGClient();
    Here is the UMG class:
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    [System.ServiceModel.ServiceContractAttribute(Namespace="vub.sk/UMGwcf", ConfigurationName="IUMG")]
    public interface IUMG
    [System.ServiceModel.OperationContractAttribute(Action="vub.sk/UMGwcf/IUMG/SendMailMessage", ReplyAction="vub.sk/UMGwcf/IUMG/SendMailMessageResponse")]
    long SendMailMessage(UMGwcf.SoapExchangeMailMessage message);
    [System.ServiceModel.OperationContractAttribute(Action="vub.sk/UMGwcf/IUMG/ResendEmailMessage", ReplyAction="vub.sk/UMGwcf/IUMG/ResendEmailMessageResponse")]
    long ResendEmailMessage(long emailid);
    [System.ServiceModel.OperationContractAttribute(Action="vub.sk/UMGwcf/IUMG/GetEmailById", ReplyAction="vub.sk/UMGwcf/IUMG/GetEmailByIdResponse")]
    UMGwcf.SoapDeliveredMailMessage GetEmailById(long emailid);
    [System.ServiceModel.OperationContractAttribute(Action="vub.sk/UMGwcf/IUMG/SendSMSMessage", ReplyAction="vub.sk/UMGwcf/IUMG/SendSMSMessageResponse")]
    long SendSMSMessage(UMGwcf.SoapSMSMessage smsmessage);
    [System.ServiceModel.OperationContractAttribute(Action="vub.sk/UMGwcf/IUMG/GetSMSById", ReplyAction="vub.sk/UMGwcf/IUMG/GetSMSByIdResponse")]
    UMGwcf.SoapDeliveredSMSMessage GetSMSById(long smsid);
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public interface IUMGChannel : IUMG, System.ServiceModel.IClientChannel
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class UMGClient : System.ServiceModel.ClientBase<IUMG>, IUMG
    public UMGClient()
    public UMGClient(string endpointConfigurationName) :
    base(endpointConfigurationName)
    public UMGClient(string endpointConfigurationName, string remoteAddress) :
    base(endpointConfigurationName, remoteAddress)
    public UMGClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
    base(endpointConfigurationName, remoteAddress)
    public UMGClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
    base(binding, remoteAddress)
    public long SendMailMessage(UMGwcf.SoapExchangeMailMessage message)
    return base.Channel.SendMailMessage(message);
    public long ResendEmailMessage(long emailid)
    return base.Channel.ResendEmailMessage(emailid);
    public UMGwcf.SoapDeliveredMailMessage GetEmailById(long emailid)
    return base.Channel.GetEmailById(emailid);
    public long SendSMSMessage(UMGwcf.SoapSMSMessage smsmessage)
    return base.Channel.SendSMSMessage(smsmessage);
    public UMGwcf.SoapDeliveredSMSMessage GetSMSById(long smsid)
    return base.Channel.GetSMSById(smsid);
    the CLR where created as follows:
    ALTER DATABASE XXXX SET TRUSTWORTHY ON;
    CREATE ASSEMBLY [System.ServiceModel]
    FROM 'C:\ttrojcak\System.Runtime.Serialization.dll'
    WITH PERMISSION_SET = UNSAFE
    CREATE ASSEMBLY [System.ServiceModel]
    FROM 'C:\ttrojcak\System.ServiceModel.dll'
    WITH PERMISSION_SET = UNSAFE
    the message window shows warnings:
    Warning: The Microsoft .NET Framework assembly 'system.servicemodel, version=3.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.web, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=x86.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.drawing, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.directoryservices, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.directoryservices.protocols, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.enterpriseservices, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=x86.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.runtime.remoting, version=2.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.runtime.serialization.formatters.soap, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.design, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.windows.forms, version=2.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'accessibility, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.drawing.design, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.web.regularexpressions, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.serviceprocess, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.configuration.install, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.identitymodel, version=3.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.messaging, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'system.identitymodel.selectors, version=3.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    Warning: The Microsoft .NET Framework assembly 'microsoft.transactions.bridge, version=3.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in the SQL Server hosted environment and is not supported. In the future, if you upgrade or service this assembly or the .NET Framework, your CLR integration routine may stop working. Please refer SQL Server Books Online for more details.
    creating store procedure:
    EXEC sp_executesql N'
    CREATE PROCEDURE [spUMG_ProcessEmail]
    @cid_request bigint
    AS
    EXTERNAL NAME [CredexDB].[UMG_StoredProcedures].[spUMG_ProcessEmail]'
    IF (@@ERROR = 0)
    BEGIN
    DECLARE @procSchema sysname
    DECLARE @procName sysname
    SELECT @procSchema = SCHEMA_NAME(schema_id), @procName = name
    FROM sys.objects
    WHERE object_id = OBJECT_ID(N'[spUMG_ProcessEmail]')
    EXEC sp_addextendedproperty 'AutoDeployed', N'yes',
    'SCHEMA', @procSchema,
    'PROCEDURE', @procName
    EXEC sp_addextendedproperty 'SqlAssemblyFile', N'UMG\UMG.cs',
    'SCHEMA', @procSchema,
    'PROCEDURE', @procName
    EXEC sp_addextendedproperty 'SqlAssemblyFileLine', 95,
    'SCHEMA', @procSchema,
    'PROCEDURE', @procName
    END
    Any tips? 
    Thank you

    and this moves me to another problem. the stored procedure spUMG_ProcessEmail is unable to find and read app.config
    stored procedure is unable to read app.config. it is necesary to rewrite the xml config into c# code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="BasicHttpBinding_IUMG" closeTimeout="00:01:00"
    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
    useDefaultWebProxy="true">
    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <security mode="None">
    <transport clientCredentialType="None" proxyCredentialType="None"
    realm="" />
    <message clientCredentialType="UserName" algorithmSuite="Default" />
    </security>
    </binding>
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="http://umgwcftest/UMGwcf.svc" binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_IUMG" contract="IUMG"
    name="BasicHttpBinding_IUMG" />
    </client>
    </system.serviceModel>
    </configuration>
    and the rewrited code:
    BasicHttpBinding myBinding = new BasicHttpBinding();
    myBinding.Name = "BasicHttpBinding_IUMG";
    myBinding.CloseTimeout = new TimeSpan(00, 01, 00);
    myBinding.OpenTimeout = new TimeSpan(00, 01, 00);
    myBinding.ReceiveTimeout = new TimeSpan(00, 10, 00);
    myBinding.CloseTimeout = new TimeSpan(00, 01, 00);
    myBinding.AllowCookies = false;
    myBinding.BypassProxyOnLocal = false;
    myBinding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard;
    myBinding.MaxBufferSize = 65536;
    myBinding.MaxBufferPoolSize = 524288;
    myBinding.MaxReceivedMessageSize = 65536;
    myBinding.MessageEncoding = WSMessageEncoding.Text;
    myBinding.TextEncoding = System.Text.Encoding.UTF8;
    myBinding.TransferMode = TransferMode.Buffered;
    myBinding.UseDefaultWebProxy = true;
    myBinding.ReaderQuotas.MaxDepth = 32;
    myBinding.ReaderQuotas.MaxStringContentLength = 8192;
    myBinding.ReaderQuotas.MaxArrayLength = 16384;
    myBinding.ReaderQuotas.MaxBytesPerRead = 4096;
    myBinding.ReaderQuotas.MaxNameTableCharCount = 16384;
    myBinding.Security.Mode = BasicHttpSecurityMode.None;
    myBinding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    myBinding.Security.Transport.ProxyCredentialType = HttpProxyCredentialType.None;
    myBinding.Security.Transport.Realm = "";
    myBinding.Security.Message.ClientCredentialType = BasicHttpMessageCredentialType.UserName;
    myBinding.Security.Message.AlgorithmSuite = System.ServiceModel.Security.SecurityAlgorithmSuite.Default;
    EndpointAddress endPointAddress = new EndpointAddress(new Uri("http://umgwcftest/UMGwcf.svc"));
    SqlContext.Pipe.Send("2");
    UMGClient umgcl = new UMGClient(myBinding, endPointAddress);
    after that, I got another error and it's solution is here:
    error and solution
    So I got it finaly working 

  • Query designer problem

    Dear All,
    I am facing the problem in the query designer that when i edit any of the formula in the query it allows me but when i edit it second time , it wont allow me and throws a following exception...
    "An unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will be shut down immediately.
    Object reference not set to an instance of an object."
    and in details of the exception the following comes...
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
                                        Exception Text
    System.NullReferenceException: Object reference not set to an instance of an object.
       at com.sap.bi.et.QueryDesigner.QDbPoolEditSelection.Get()
       at com.sap.bi.et.QueryDesigner.QDbCommandEditElement.EditFormula(IQDView iSelectedView)
       at com.sap.bi.et.QueryDesigner.QDbCommandEditElement.ExecuteCommand()
       at com.sap.bi.et.QueryDesigner.QDbCommandBase.Execute()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.CommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.InitialCommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.DoExecuteCommandInternal()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.ItemClickedHandler(Object sender, BarItemClickedEventArgs args)
       at com.sap.bi.et.QueryDesigner.QDdEventDispatcher.MenuItemClickedHandler(Object iSender, BarItemClickedEventArgs iE)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarManager.OnItemClicked(BarItemClickedEventArgs args)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarItem.OnItemClicked(EventArgs args)
       at com.sap.bi.et.QueryDesigner.QDiBarItem.OnItemClicked(EventArgs args)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarItem.PerformClick()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.ExecuteDoubleclickCommand(ParentBarItem iContextMenu)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.NodeDoubleClickHandler(Object sender, EventArgs e)
       at com.sap.bi.et.QueryDesigner.QDdEventDispatcher.ItemDoubleClickHandler(Object sender, EventArgs e)
       at com.sap.bi.et.QueryDesigner.QDdEventDispatcher.ItemDoubleClickHandler(Object sender, EventArgs e)
       at com.sap.bi.et.QueryDesigner.QDuHeaderTree.OnItemDoubleClick(EventArgs iE)
       at com.sap.bi.et.QueryDesigner.QDuHeaderTree.NodeDoubleClickHandler(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnDoubleClick(EventArgs e)
       at Syncfusion.Windows.Forms.Tools.TreeViewAdv.OnDoubleClick(EventArgs e)
       at com.sap.bi.et.QueryDesigner.QDiTree.OnDoubleClick(EventArgs e)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at Syncfusion.Windows.Forms.ScrollControl.WmMouseUp(Message& msg)
       at Syncfusion.Windows.Forms.ScrollControl.WndProc(Message& msg)
       at Syncfusion.Windows.Forms.Tools.TreeViewAdv.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
                                                     Loaded Assemblies
    mscorlib
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
    BExQueryDesignerStarter
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.486
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExQueryDesignerStarter.exe
    System
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    BExQueryDesigner
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.486
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExQueryDesigner.DLL
    BExCommon
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExCommon.DLL
    BExControls
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExControls.DLL
    BExCAControls
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExCAControls.DLL
    System.Windows.Forms
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
    BExCommunication
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExCommunication.DLL
    Microsoft.VisualBasic
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.10.6001.4
        CodeBase: file:///c:/windows/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.dll
    System.Xml
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
    8mfr2iet
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    SAP.Connector
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.0.23
        CodeBase: file:///c:/windows/assembly/gac/sap.connector/2.0.0.0__50436dca5c7f7d23/sap.connector.dll
    Interop.SAPLogonCtrl
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Interop.SAPLogonCtrl.DLL
    SAP.Connector.Rfc
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.0.23
        CodeBase: file:///c:/windows/assembly/gac/sap.connector.rfc/2.0.0.0__50436dca5c7f7d23/sap.connector.rfc.dll
    BExGeneratedAll
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.123
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExGeneratedAll.DLL
    System.Web.Services
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dll
    System.Drawing
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
    System.Web
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dll
    nwibr-hj
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    orv3kyon
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    3wroaodz
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    uzyztof1
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    bmpxtf3w
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    BExControls2
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.123
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExControls2.DLL
    BExSharedImageList
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExSharedImageList.DLL
    System.Runtime.Serialization.Formatters.Soap
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.runtime.serialization.formatters.soap/1.0.5000.0__b03f5f7f11d50a3a/system.runtime.serialization.formatters.soap.dll
    BExSelectorAPI
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.202
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExSelectorAPI.DLL
    System.Data
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
    BExOpenSaveServices
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.108
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExOpenSaveServices.DLL
    Syncfusion.Tools.Windows
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Tools.Windows.DLL
    Syncfusion.Shared.Base
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Shared.Base.DLL
    Syncfusion.Grid.Windows
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Grid.Windows.DLL
    Syncfusion.Core
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Core.DLL
    Syncfusion.Grid.Base
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Grid.Base.DLL
    Syncfusion.Shared.Windows
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Shared.Windows.DLL
    Accessibility
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase: file:///c:/windows/assembly/gac/accessibility/1.0.5000.0__b03f5f7f11d50a3a/accessibility.dll
    AxInterop.SHDocVw
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/AxInterop.SHDocVw.DLL
    Interop.SHDocVw
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Interop.SHDocVw.DLL
    Syncfusion.Edit.Windows
        Assembly Version: 4.401.0.51
        Win32 Version: 4.401.0.51
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/Syncfusion.Edit.Windows.DLL
    ezadp-o7
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    czxpebds
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    ws48wlef
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    nbphnkyi
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    qmxat26w
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    BExFormulaParser
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.122
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExFormulaParser.DLL
    RegexAssembly140_0
        Assembly Version: 0.0.0.0
        Win32 Version: n/a
        CodeBase:
    System.Design
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2032
        CodeBase: file:///c:/windows/assembly/gac/system.design/1.0.5000.0__b03f5f7f11d50a3a/system.design.dll
    BExQueryDesignerFormulaParser
        Assembly Version: 7000.0.0.0
        Win32 Version: 7005.5.1401.2
        CodeBase: file:///C:/Program%20Files/SAP/FrontEnd/Bw/BExQueryDesignerFormulaParser.DLL
    JIT Debugging **************
    To enable just in time (JIT) debugging, the config file for this
    application or machine (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog.
    Please anybody help me.
    Nitesh

    Hi,
    This is a typical front end issue where you have to look at your GUI patch and front end patch.I recommend you deinstalling your frontend installation as follows:
    - Remove your frontend via 'START' - 'PROGRAMS' - 'SAP FRONTEND' -
       'REMOVE SAP FRONTEND'
    - Install the newest frontend and GUI patch and check the installation with sapbexc.xla
    Please run the front-end checktool SAPBEXC.XLA as per Note 918394 and ensure there are no errors.
    Path for frontend patches
    Please goto
    -> service.sap.com/patches
    ->entry by application group
    ->SAP Frontend Components
    ->SAP GUI FOR WINDOWS
    ->SAP GUI FOR WINDOWS 6.40
    ->SAP GUI FOR WINDOWS 6.40
    ->Win32
    ->Apply latest frontend patch
    Once the installation is done run the installation check file as per note 918394 and ensure that there are no red flags.
    Rgds
    Manoj Kumar

  • Error when restricting variable in Business explorer.

    Hi,
    I'm getting below pasted error in my BI 7.0 system...need to know how to proceed further for resolving same?
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at com.sap.bi.et.selector.api.SELConvert.ToAllowedReadModes(BExSelectorDeSer_ReadMode[] iAbapValues)
       at com.sap.bi.et.selector.api.SelGetMetaData.FillMetaData(String iString, ISelInfoObject cInfoObject)
       at com.sap.bi.et.selector.api.SelGetMetaData.LoadInfoObject(String iInfoObjectName, ISelInfoObject cInfoObject)
       at com.sap.bi.et.selector.BExSelectorDialog.SelUIDialog.FillContextFromOptions(ISelContext cContext)
       at com.sap.bi.et.selector.BExSelectorDialog.SelUIDialog.set_SelectorContext(ISelContext iValue)
       at com.sap.bi.et.QueryDesigner.QDbCommandSelectorBase.ExecuteCommand()
       at com.sap.bi.et.QueryDesigner.QDbCommandSelectValues.ExecuteCommand()
       at com.sap.bi.et.QueryDesigner.QDbCommandBase.Execute()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.CommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.InitialCommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.DoExecuteCommandInternal()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.ItemClickedHandler(Object sender, BarItemClickedEventArgs args)
       at com.sap.bi.et.QueryDesigner.QDdEventDispatcher.MenuItemClickedHandler(Object iSender, BarItemClickedEventArgs iE)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarManager.OnItemClicked(BarItemClickedEventArgs args)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarItem.OnItemClicked(EventArgs args)
       at com.sap.bi.et.QueryDesigner.QDiBarItem.OnItemClicked(EventArgs args)
       at Syncfusion.Windows.Forms.Tools.XPMenus.BarItem.PerformClick()
       at Syncfusion.Windows.Forms.Tools.XPMenus.MenuGrid.NotifyItem(BarItem item)
       at Syncfusion.Windows.Forms.Tools.XPMenus.MenuGrid.HidePopup(PopupCloseType popupCloseType)
       at Syncfusion.Windows.Forms.Tools.XPMenus.MenuGrid.ProcessItemClick(BarItem item)
       at Syncfusion.Windows.Forms.Tools.XPMenus.MenuGrid.OnMouseUp(MouseEventArgs e)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at Syncfusion.Windows.Forms.ScrollControl.WndProc(Message& msg)
       at Syncfusion.Windows.Forms.Grid.GridControlBase.WndProc(Message& msg)
       at Syncfusion.Windows.Forms.Tools.XPMenus.MenuGrid.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    BExQueryDesignerStarter
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.418
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExQueryDesignerStarter.exe
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    BExQueryDesigner
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.418
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExQueryDesigner.DLL
    BExCommon
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.109
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExCommon.DLL
    BExControls
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.109
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExControls.DLL
    BExCAControls
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.109
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExCAControls.DLL
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    BExCommunication
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.109
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExCommunication.DLL
    Microsoft.VisualBasic
        Assembly Version: 8.0.0.0
        Win32 Version: 8.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    hmaeg2w5
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    SAP.Connector
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.0.23
        CodeBase: file:///C:/WINDOWS/assembly/GAC/SAP.Connector/2.0.0.0__50436dca5c7f7d23/SAP.Connector.dll
    Interop.SAPLogonCtrl
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/Interop.SAPLogonCtrl.DLL
    SAP.Connector.Rfc
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.0.23
        CodeBase: file:///C:/WINDOWS/assembly/GAC/SAP.Connector.Rfc/2.0.0.0__50436dca5c7f7d23/SAP.Connector.Rfc.dll
    BExGeneratedAll
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.108
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExGeneratedAll.DLL
    System.Web.Services
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    nsnlwjn9
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    ul5pbncl
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    nusw6am0
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    udvpfz_1
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    zlauj9pd
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    BExControls2
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.108
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExControls2.DLL
    BExSharedImageList
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.109
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExSharedImageList.DLL
    System.Runtime.Serialization.Formatters.Soap
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll
    BExSelectorAPI
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.145
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExSelectorAPI.DLL
    System.Data
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
    BExOpenSaveServices
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.100
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExOpenSaveServices.DLL
    Syncfusion.Tools.Windows
        Assembly Version: 3.202.1.0
        Win32 Version: 3.202.1.0
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Syncfusion.Tools.Windows/3.202.1.0__3d67ed1f87d44c89/Syncfusion.Tools.Windows.dll
    Syncfusion.Shared.Base
        Assembly Version: 3.202.1.0
        Win32 Version: 3.202.1.0
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Syncfusion.Shared.Base/3.202.1.0__3d67ed1f87d44c89/Syncfusion.Shared.Base.dll
    Syncfusion.Grid.Windows
        Assembly Version: 3.202.1.0
        Win32 Version: 3.202.1.0
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Syncfusion.Grid.Windows/3.202.1.0__3d67ed1f87d44c89/Syncfusion.Grid.Windows.dll
    Syncfusion.Core
        Assembly Version: 3.202.1.0
        Win32 Version: 3.202.1.0
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Syncfusion.Core/3.202.1.0__632609b4d040f6b4/Syncfusion.Core.dll
    Accessibility
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    System.Design
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll
    AxInterop.SHDocVw
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/AxInterop.SHDocVw.DLL
    Interop.SHDocVw
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/Interop.SHDocVw.DLL
    Syncfusion.Edit.Windows
        Assembly Version: 3.202.1.0
        Win32 Version: 3.202.1.0
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Syncfusion.Edit.Windows/3.202.1.0__3d67ed1f87d44c89/Syncfusion.Edit.Windows.dll
    riqv1wg5
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    8syownkv
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Data.SqlXml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Data.SqlXml/2.0.0.0__b77a5c561934e089/System.Data.SqlXml.dll
    zveyyru2
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    hkg7lstx
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    5gy2p5jh
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    wabuh_ck
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    ajygaw33
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    utyvk7o0
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    j_d_2jji
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    BExSelectorDialog
        Assembly Version: 7100.0.0.0
        Win32 Version: 7100.0.0.145
        CodeBase: file:///C:/Program%20Files/SAP/Business%20Explorer/BI/BExSelectorDialog.DLL
    ejdefmef
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    y6pgt8bu
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    q6n2f2gt
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    on27ucqi
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    amd-4p01
        Assembly Version: 7100.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.

    Hi,
    I need to know what things need to be corrected, i'm from basis team only.
    But this was not installed by me.

Maybe you are looking for

  • Iphone will not show in itunes on windows 8

    I installed windows 8 operating system and itunes works, however, my iphone will not appear in itunes. How do we fix this?

  • Re: Portege R600-10Q- Toshiba DVD Player has stop working

    Hello, Please help me, I can't use the Toshiba DVD Player, every time I open it, appears the windows windows saying that the app has stop working... When I see the error report, appears 'app crash'.... I've already gone to the Toshiba site to make th

  • After signing in, keep getting message that I've been signed out

    I just downloaded Creative cloud onto my computer and it's my first time trying to use these applications, like Photoshop. I go to log into the Creative Cloud app and it loads but comes back saying "You've been signed out, please continue to sign in.

  • Content on the Books themselves

    New RoboHelp user here... I understand that pages contain the content of your help files, but can you also have a "page" appear when the user clicks on a book? Right now clicking on the book just opens or closes it. I've been asked to have a sort of

  • Disk Utility doesn't find any of my USB drives

    A few weeks ago my just stopped showing any of my external drives when I plug them in. I can not see them in Disk Utility or in Finder. A while ago I had TUXERA NTFS installed and today I got those messages after plugging one of my USB drives.  Is it