Wsdl that references xsd's

Hello experts,
My wsdl has reference to a xsd. The problem is, when I try to import the wsdl, I do not see the entire request structure which is required while doing the mapping.
I have both the wsdl and xsdu2019s in the same folder.
I did go through the forum and tried what was suggested.
I have changed the parameter in the wsdl:
<xs:import schemaLocation="Distance.xsd"
Earlier schemaLocation was pointing to a url. Now I am pointing it to the xsd file name.
I have uploaded the wsdl and the xsd as external definition's under the same namespace. I can see the xsd name under "External Reference" tab of the wsdl as well. But the wsdl does not show the entire structure while doing the mapping.
Could you please advise if I need to change any other parameters as well.
Thank you.

Hi Radha,
Under External References tab in WSDL ,there are two columns, Source and Name:
Source should have xsd name and Name should have the name of External Definition which uses this xsd
Can you see values populated for both Source and Name?
If not,you have to go to the External Definition for your referenced xsd,there are two entries ,File and Source
In File ,you must have given XSD name.
Copy the same XSD name and enter it in source.
Basically value of this Source and value of Source under External Regerences tab in wsdl should be same.
Kindly let us know if this resolves your problem.
Thanks.
Regards,
Shweta

Similar Messages

  • Unable to create web service from wsdl that contains xsd as import

    I have written a WSDL and tried to create the web services by weblogic workshop.
    Prior to that I have created the war file and able to deploy them properly. Also able to access any wsdl by hitting the server.
    But when I am trying to create the web services by weblogic workshop its throwing error as "URL is not well formed" for those XSDs which I have imported in my WSDL. I have kept all my XSDs and WSDLs in the same folder.
    The WSDL has given below :
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:intf="http://soapheader.ibm.com" xmlns:impl="http://soapheader.ibm.com" xmlns:MessageContext="MessageContext" xmlns:AlertUpdateRequest="AlertUpdateRequest" xmlns:AlertFetchResponse="AlertFetchResponse" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://soapheader.ibm.com">
         <import namespace="MessageContext" location="http://localhost:7001/WebApplicationWeb/gss/xsd/MessageContext.xsd"/>
         <import namespace="AlertUpdateRequest" location="http://localhost:7001/WebApplicationWeb/gss/xsd/AlertUpdateRequest.xsd"/>
         <import namespace="AlertFetchResponse" location="http://localhost:7001/WebApplicationWeb/gss/xsd/AlertFetchResponse.xsd"/>
         <wsdl:types>
              <schema elementFormDefault="qualified" targetNamespace="http://ggg.com" xmlns="http://www.w3.org/2001/XMLSchema">
              </schema>
         </wsdl:types>
         <wsdl:message name="alertUpdateRequest">
              <wsdl:part name="parameters" element="AlertUpdateRequest:AlertUpdateRequest"/>
              <wsdl:part name="request_header" element="MessageContext:MessageContext"/>
         </wsdl:message>
         <wsdl:message name="alertUpdateResponse">
              <wsdl:part name="parameters" element="AlertUpdateRequest:AlertUpdateRequest"/>
              <wsdl:part name="request_header" element="MessageContext:MessageContext"/>
         </wsdl:message>
         <wsdl:message name="alertFetchRequest">
              <wsdl:part name="parameters" element="AlertFetchResponse:AlertFetchResponse"/>
              <wsdl:part name="request_header" element="MessageContext:MessageContext"/>
         </wsdl:message>
         <wsdl:message name="alertFetchResponse">
              <wsdl:part name="parameters" element="AlertFetchResponse:AlertFetchResponse"/>
              <wsdl:part name="request_header" element="MessageContext:MessageContext"/>
         </wsdl:message>
         <wsdl:portType name="AlertUpdateService">
              <wsdl:operation name="getAlertUpdate">
                   <wsdl:input name="alertUpdateRequest" message="intf:alertUpdateRequest"/>
                   <wsdl:output name="alertUpdateResponse" message="intf:alertUpdateResponse"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:portType name="AlertFetchService">
              <wsdl:operation name="getAlert">
                   <wsdl:input name="alertUpdateRequest" message="intf:alertFetchRequest"/>
                   <wsdl:output name="alertUpdateResponse" message="intf:alertFetchResponse"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="AlertUpdateServiceSoapBinding" type="intf:AlertUpdateService">
              <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="getAlertUpdate">
                   <wsdlsoap:operation/>
                   <wsdl:input>
                        <wsdlsoap:header message="intf:alertUpdateRequest" part="request_header" use="literal"/>
                        <wsdlsoap:body parts="parameters" use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <wsdlsoap:header message="intf:alertUpdateResponse" part="request_header" use="literal"/>
                        <wsdlsoap:body parts="parameters" use="literal"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:binding name="AlertFetchServiceSoapBinding" type="intf:AlertFetchService">
              <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="getAlert">
                   <wsdlsoap:operation/>
                   <wsdl:input>
                        <wsdlsoap:header message="intf:alertFetchRequest" part="request_header" use="literal"/>
                        <wsdlsoap:body parts="parameters" use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <wsdlsoap:header message="intf:alertFetchResponse" part="request_header" use="literal"/>
                        <wsdlsoap:body parts="parameters" use="literal"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="AlertUpdateServiceService">
              <wsdl:port name="AlertUpdateService" binding="intf:AlertUpdateServiceSoapBinding">
                   <wsdlsoap:address location="http://localhost:9080/SOAPHeaderWeb/services/AlertUpdateService"/>
              </wsdl:port>
         </wsdl:service>
         <wsdl:service name="AlertFetchServiceService">
              <wsdl:port name="AlertFetchService" binding="intf:AlertFetchServiceSoapBinding">
                   <wsdlsoap:address location="http://localhost:9080/SOAPHeaderWeb/services/AlertFetchService"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>

    Hi,
    From your description I am assuming that you are using JAX-WS, if not get back to me as I might have another bug to look at.
    The problem is that the annotation @Oneway needs to be added to the methods in java files for this to work correctly. You can either do this manually or use the PI in the code editor. I have raised bug 6266513 to track the fact this annotation is not written out properly. I have logged bug 6266556 to track the nillable=true and extranious elements you will see when you do add @Oneway.
    Thanks for the quality of your bug report, and we would of course welcome any other feedback good or bad you would like to give us.
    Gerard Davison
    JDeveloper Web Services Team

  • FB3B2 unable to import WSDL files that contain XSD imports

    Much to my dismay, the new WSDL import wizard does not seem
    to work on WSDL files that import XSD files. When "Finish" is
    pressed, an error dialog states "The WSDL definition could not be
    parsed. The wizard cannot complete successfully."
    I created a sample WSDL that uses the most basic of XSD
    files to demonstrate. Remove the import line from the WSDL and it
    will import, with the line it will not.

    Hi Jeff,
    How are you specifying the WSDL URI?
    - If as an absolute path on your machine, make sure there are
    no spaces in that path – there is a known issue about path
    with spaces and WSDL with imports, and we’re on it. We tried
    out your sample WSDL this way and it works.
    - If you are specifying it as an HTTP url (accessing it over
    the Apache HTTP server, for example), the workaround is a little
    more complicated. There are indeed some unresolved issues with the
    ActionScript generator. Try putting the wsdl and xsd files inside a
    folder in the webroot, and another copy of the xsd in the webroot.
    This worked for me - the problem is about locating the imported
    document correctly: the introspection correctly uses the sibling
    xsd file, while the generator incorrectly looks for that file one
    level up. We’ll look into this and fix it.
    Please let me know if it starts working or if it still does
    not generate the ActionScript client classes. Thank you.
    Also, please be aware of another known issue about WSDL with
    imports:
    http://bugs.adobe.com/jira/browse/FB-7678
    (For WSDLs that import other documents, the cached WSDL file should
    include the content of the imported documents).
    Lacra

  • PI 7.1 import wsdl that uses paths not working

    Hello SDN!!!
    I have a question. Our company is using wsdl's that have external http links to xsd documents. This is a valid wsdl per XML SPY and Soap Util.
    A snapshot of the wsdl looks like so
    <xs:import namespace="urlToA.xsd"/>
    <xs:import namespace="http://schemas/shared/EMFSchemaV1" schemaLocation="http://url_TO_A_.xsd"/>
    <xs:import namespace="http://schemas/shared/EMFSoapFaultV1" schemaLocation="http://anotherurlTOA.xsd"/>
    <xs:element name="request">
      <xs:complexType>
        <xs:sequence>
         <xs:element ref="init:Project"    xmlns:init="http://schemasdefinedabove"                                             minOccurs="0" maxOccurs="1"/>
                             </xs:sequence>
                        </xs:complexType>
    Basically it makes a reference to schemas defined in links, it seems the wsdl being generated as an external definition in SAP doesn't follow the links to fill in the xsd definition.
    Is there a method to have sap import the xsd's in the location they are being referenced?

    Yeah, you also need to import these remote xsd's in XI. Download them and create an external definition for each one of them.
    Then, within each external definition, fill the "Source" field with the schema Location that the wsdl is waiting for. For example, in the external definition for the 1st xsd, fill its Source field with the value
    http://url_TO_A_.xsd
    Check in the wsdl's References tab whether it found the references correctly (for each expected location, you should see the corresponding external definition).
    Regards,
    Henrique.

  • Unable to find a WSDL that has a definition for service

    Dear all
    I have a very simple composite applicationexposing a web service. When I deploy the application I get:
    There was an error deploying the composite on soa_server1: Deployment Failed: Unable to find a WSDL that has a definition for service {http://soa/sf/login}bpelprocess1_client_ep and port loginPort_pt. Please make sure that the port attribute for the binding defined in the composite file is correct by checking the namespace, service name, and port name. In addition, check that the WSDL associated with the binding namespace is imported and currently reachable (check the import nodes at the top of the composite file). Finally, validate the HTTP proxy settings for the server.
    However the build process shows no errors. The entire application was built using Jdeveloper 11.1.1.5 using a pre-constructed WSDL. The SOA suite is 11.1.1.5
    Any pointers will be really appreciated.
    Thanks
    The composite is this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [2/28/13 2:25 PM]. -->
    <composite name="SOA2" revision="1.0" label="2013-02-28_14-25-14_553"
    mode="active" state="on" xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/">
    <import namespace="http://soa/sf/login" location="loginToSFDC.wsdl"
    importType="wsdl"/>
    <service name="bpelprocess1_client_ep" ui:wsdlLocation="loginToSFDC.wsdl">
    <interface.wsdl interface="http://soa/sf/login#wsdl.interface(loginPort)"/>
    <binding.ws port="http://soa/sf/login#wsdl.endpoint(bpelprocess1_client_ep/loginPort_pt)"/>
    </service>
    <component name="BPELProcess1" version="2.0">
    <implementation.bpel src="BPELProcess1.bpel"/>
    <property name="bpel.config.transaction" type="xs:string" many="false">required</property>
    </component>
    <wire>
    <source.uri>bpelprocess1_client_ep</source.uri>
    <target.uri>BPELProcess1/bpelprocess1_client</target.uri>
    </wire>
    </composite>
    The WSDL used to generate the BPEL is:
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <definitions
    targetNamespace="http://soa/sf/login"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns1="http://soa/sf/login"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:flt="urn:fault.partner.soap.sforce.com"
    xmlns:obj="urn:sobject.partner.soap.sforce.com"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:typ="urn:partner.soap.sforce.com"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <types>
    <xsd:schema targetNamespace="http://uk.gov.fca.sf/login" elementFormDefault="qualified" xmlns:tns1="http://uk.gov.fca.sf/login"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:flt="urn:fault.partner.soap.sforce.com"
    xmlns:obj="urn:sobject.partner.soap.sforce.com" xmlns:typ="urn:partner.soap.sforce.com"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
    <xsd:import namespace="urn:partner.soap.sforce.com" schemaLocation="xsd/partner_types.xsd"/>
    <xsd:import namespace="urn:fault.partner.soap.sforce.com" schemaLocation="xsd/partner_faults.xsd"/>
    <xsd:import namespace="urn:sobject.partner.soap.sforce.com" schemaLocation="xsd/partner_objects.xsd"/>
    </xsd:schema>
    </types>
    <message name="loginInMessage">
    <part name="loginIn" element="typ:login"/>
    <part name="LoginScopeHeaderIn" element="typ:LoginScopeHeader"/>
    <part name="CallOptionsIn" element="typ:CallOptions"/>
    </message>
    <message name="loginOutMessage">
    <part name="return" element="typ:loginResponse"/>
    </message>
    <portType name="loginPort">
    <operation name="loginOp">
    <input message="tns1:loginInMessage"/>
    <output message="tns1:loginOutMessage"/>
    </operation>
    </portType>
    <binding name="loginPortSOAP11Binding" type="tns1:loginPort">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loginOp">
    <soap:operation style="document" soapAction="http://soa:8101/login/loginOp"/>
    <input>
    <soap:body use="literal" parts="in"/>
    </input>
    <output>
    <soap:body use="literal" parts="return"/>
    </output>
    </operation>
    </binding>
    <binding name="loginPortSOAP12Binding" type="tns1:loginPort">
    <soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loginOp">
    <soap12:operation style="document" soapAction="http://uk.gov.fca.sf:7101/login/loginOp" soapActionRequired="false"/>
    <input>
    <soap12:body use="literal" parts="in"/>
    </input>
    <output>
    <soap12:body use="literal" parts="return"/>
    </output>
    </operation>
    </binding>
    <service name="loginSrvc">
    <port name="login_port_11" binding="tns1:loginPortSOAP11Binding">
    </port>
    <port name="login_port_12" binding="tns1:loginPortSOAP12Binding">
    </port>
    </service>
    <partnerLinkType name="ProviderRole"
    xmlns="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    <role name="Role1">
    <portType name="tns1:loginPort"/>
    </role>
    </partnerLinkType>
    </definitions>

    Hi,
    I don't see a loginPort_pt port in the wsdl, but it is referenced by the composite...
    There's only ports login_port_11 and login_port_12 defined...
    Cheers,
    Vlad

  • Enumerate methods from a WSDL service reference

    Hi all,
    I have a service reference https://xxx.xxx.xxx.xxx:XXXX/blah?wsdl that exposes many methods. I wish to enumerate these into test strings, but I have no idea how to do this easily. I've created the
    service reference "ServiceReference1" and can see each method when I type "ServiceReference1.", but I can't see how to export the items as text. Nor can I do it via the object browser.
    Any help is greatly received.
    Jib

    But it's a C# question I thought. I want to know how to enumerate something in C#, ok, it's related to web services, but the answer should be C# code only.
    Yes, your answer should be C# code only. But
    Most of us are working on mixed platforms and languages so it's not always C# but when you post in this forum you need to make sure that the issue at hand is
    related to C#; From your description, your case related to Web Services. You should post
    http://forums.asp.net/28.aspx/1?WCF+ASMX+and+other+Web+Services
    Thanks  for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to find a WSDL that has a definition for service name

    Hello,
    I have a wsdl shared in mds and a composite with a bpel process that consumes that wsdl, but when that happens I get the following error:
    oracle.fabric.common.FabricInvocationException: Unable to find the WSDL service defined for service name {http://directvla.com/schema/businessdomain/ServiceConfigurationRules/v1-0}ServiceConfigurationRules_pt. Please make sure that the port attribute for the binding defined in the composite file is correct by checking the namespace and service name in the #wsdl.endpoint element. In addition, check that the WSDL associated with the binding namespace is imported and currently reachable (check the import nodes at the top of the composite file). Finally, validate any HTTP proxy settings for the server.
    I checked the composite, the wsdl and the endpoint and everything is ok. At the momment to avoid the error, the wsdl is local, but this is not a real solution, what I really need is to make it work with the mds.
    Can somebody help me?
    Thank for advance.

    Hi,
    here is my wsdl:
    <definitions
    targetNamespace="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:commondt-v1-0="http://xxxxxx.com/schema/util/commondatatypes/v1-0"
    xmlns:ns1="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/parameters"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:ServiceConfigurationRules-v1-0="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0" xmlns:tns="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:commonex-v1-0="http://xxxxxx.com/schema/util/commonexceptions/v1-0"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
         <types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:commondt-v1-0="http://xxxxxx.com/schema/util/commondatatypes/v1-0" xmlns:ns1="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/parameters"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:ServiceConfigurationRules-v1-0="http://oracle.com/sca/soapservice/XXXXBusinessRule/ServiceConfigurationRules/ServiceConfigurationRules" xmlns:tns="http://oracle.com/sca/soapservice/XXXXBusinessRule/ServiceConfigurationRules/ServiceConfigurationRules"
    xmlns:commonex-v1-0="http://xxxxxx.com/schema/util/commonexceptions/v1-0"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
                   <xsd:import namespace="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/parameters" schemaLocation="oramds:/apps/schemas/RESB/RulesParmsInput_2.xsd"/>
              </xsd:schema>
         </types>
         <message name="ServiceActivationRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ServiceActivationRequest"/>
         </message>
         <message name="ServiceActivationResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ServiceActivationResponse"/>
         </message>
         <message name="ServiceActivationException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ServiceActivationException"/>
         </message>
         <message name="GetAddActivationConfigurationRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationRequest"/>
         </message>
         <message name="GetAddActivationConfigurationResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationResponse"/>
         </message>
         <message name="GetAddActivationConfigurationException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationException"/>
         </message>
         <message name="ResourceChangeMigrationRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationRequest"/>
         </message>
         <message name="ResourceChangeMigrationResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationResponse"/>
         </message>
         <message name="ResourceChangeMigrationException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationException"/>
         </message>
         <message name="ResourceChangeMigrationUpgradeRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeRequest"/>
         </message>
         <message name="ResourceChangeMigrationUpgradeResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeResponse"/>
         </message>
         <message name="ResourceChangeMigrationUpgradeException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeException"/>
         </message>
         <message name="GetServiceConfigurationException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationException"/>
         </message>
         <message name="GetAntenaSenialRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAntenaSenialRequest"/>
         </message>
         <message name="GetAntenaSenialResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAntenaSenialResponse"/>
         </message>
         <message name="GetAntenaSenialException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationException"/>
         </message>
         <message name="OrderPayPerViewRuleRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleRequest"/>
         </message>
         <message name="OrderPayPerViewRuleResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleResponse"/>
         </message>
         <message name="OrderPayPerViewRuleException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleException"/>
         </message>
         <message name="GetOperationForWOServiceTypeRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeRequest"/>
         </message>
         <message name="GetOperationForWOServiceTypeResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeResponse"/>
         </message>
         <message name="GetOperationForWOServiceTypeException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeException"/>
         </message>
         <message name="CompareResourceTechnologyRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:CompareResourceTechnologyRequest"/>
         </message>
         <message name="CompareResourceTechnologyResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:CompareResourceTechnologyResponse"/>
         </message>
         <message name="CompareResourceTechnologyException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:CompareResourceTechnologyException"/>
         </message>
         <message name="GetBasicProductMigrationRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetBasicProductMigrationRequest"/>
         </message>
         <message name="GetBasicProductMigrationResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetBasicProductMigrationResponse"/>
         </message>
         <message name="GetBasicProductMigrationException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetBasicProductMigrationException"/>
         </message>
         <message name="GetMaxResourcesForCustomerRequest">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerRequest"/>
         </message>
         <message name="GetMaxResourcesForCustomerResponse">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerResponse"/>
         </message>
         <message name="GetMaxResourcesForCustomerException">
              <part name="parameter" element="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerException"/>
         </message>
         <portType name="ServiceConfigurationRules_pt">
              <operation name="GetAddActivationConfiguration">
                   <input message="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationResponse"/>
                   <fault name="GetAddActivationConfigurationException" message="ServiceConfigurationRules-v1-0:GetAddActivationConfigurationException"/>
              </operation>
              <operation name="ResourceChangeMigration">
                   <input message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationResponse"/>
                   <fault name="ResourceChangeMigrationException" message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationException"/>
              </operation>
              <operation name="ResourceChangeMigrationUpgrade">
                   <input message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeResponse"/>
                   <fault name="ResourceChangeMigrationUpgradeException" message="ServiceConfigurationRules-v1-0:ResourceChangeMigrationUpgradeException"/>
              </operation>
              <operation name="GetAntenaSenial">
                   <input message="ServiceConfigurationRules-v1-0:GetAntenaSenialRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:GetAntenaSenialResponse"/>
                   <fault name="GetReasonResponseException" message="ServiceConfigurationRules-v1-0:GetAntenaSenialException"/>
              </operation>
              <operation name="OrderPayPerViewRule">
                   <input message="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleResponse"/>
                   <fault name="OrderPayPerViewRuleException" message="ServiceConfigurationRules-v1-0:OrderPayPerViewRuleException"/>
              </operation>
              <operation name="GetServiceActivation">
                   <input message="ServiceConfigurationRules-v1-0:ServiceActivationRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:ServiceActivationResponse"/>
                   <fault name="ServiceActivationException" message="ServiceConfigurationRules-v1-0:ServiceActivationException"/>
              </operation>
              <operation name="GetOperationForWOServiceType">
                   <input message="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeResponse"/>
                   <fault message="ServiceConfigurationRules-v1-0:GetOperationForWOServiceTypeException" name="GetOperationForWOServiceTypeException"/>
              </operation>
              <operation name="GetMaxResourcesForCustomer">
                   <input message="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerResponse"/>
                   <fault message="ServiceConfigurationRules-v1-0:GetMaxResourcesForCustomerException" name="GetMaxResourcesForCustomerException"/>
              </operation>
              <operation name="GetBasicProductMigration">
                   <input message="ServiceConfigurationRules-v1-0:GetBasicProductMigrationRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:GetBasicProductMigrationResponse"/>
                   <fault message="ServiceConfigurationRules-v1-0:ServiceActivationRequest" name="GetBasicProductMigrationException"/>
              </operation>
              <operation name="CompareResourceTechnology">
                   <input message="ServiceConfigurationRules-v1-0:CompareResourceTechnologyRequest"/>
                   <output message="ServiceConfigurationRules-v1-0:CompareResourceTechnologyResponse"/>
                   <fault message="ServiceConfigurationRules-v1-0:ServiceActivationRequest" name="CompareResourceTechnologyException"/>
              </operation>
         </portType>
         <binding name="ServiceConfigurationRules_ptSOAP11Binding" type="ServiceConfigurationRules-v1-0:ServiceConfigurationRules_pt">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <operation name="GetAddActivationConfiguration">
                   <soap:operation style="document" soapAction="http://xxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetAddActivationConfiguration"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="GetAddActivationConfigurationException">
                        <soap:fault name="GetAddActivationConfigurationException" use="literal"/>
                   </fault>
              </operation>
              <operation name="ResourceChangeMigration">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/ResourceChangeMigration"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="ResourceChangeMigrationException">
                        <soap:fault name="ResourceChangeMigrationException" use="literal"/>
                   </fault>
              </operation>
              <operation name="ResourceChangeMigrationUpgrade">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/ResourceChangeMigrationUpgrade"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="ResourceChangeMigrationUpgradeException">
                        <soap:fault name="ResourceChangeMigrationUpgradeException" use="literal"/>
                   </fault>
              </operation>
              <operation name="GetAntenaSenial">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetAntenaSenial"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="GetReasonResponseException">
                        <soap:fault name="GetReasonResponseException" use="literal"/>
                   </fault>
              </operation>
              <operation name="OrderPayPerViewRule">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/OrderPayPerViewRule"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="OrderPayPerViewRuleException">
                        <soap:fault name="OrderPayPerViewRuleException" use="literal"/>
                   </fault>
              </operation>
              <operation name="GetServiceActivation">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetServiceActivation"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="ServiceActivationException">
                        <soap:fault name="ServiceActivationException" use="literal"/>
                   </fault>
              </operation>
              <operation name="GetOperationForWOServiceType">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetOperationForWOServiceType"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="GetOperationForWOServiceTypeException">
                        <soap:fault name="GetOperationForWOServiceTypeException" use="literal"/>
                   </fault>
              </operation>
              <operation name="GetMaxResourcesForCustomer">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetMaxResourcesForCustomer"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="GetMaxResourcesForCustomerException">
                        <soap:fault name="GetMaxResourcesForCustomerException" use="literal"/>
                   </fault>
              </operation>
              <operation name="GetBasicProductMigration">
                   <soap:operation style="document" soapAction="http://xxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/GetBasicProductMigration"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="GetBasicProductMigrationException">
                        <soap:fault name="GetBasicProductMigrationException" use="literal"/>
                   </fault>
              </operation>
              <operation name="CompareResourceTechnology">
                   <soap:operation style="document" soapAction="http://xxxxxx.com/schema/businessdomain/ServiceConfigurationRules/v1-0/CompareResourceTechnology"/>
                   <input>
                        <soap:body use="literal" parts="parameter"/>
                   </input>
                   <output>
                        <soap:body use="literal" parts="parameter"/>
                   </output>
                   <fault name="CompareResourceTechnologyException">
                        <soap:fault name="CompareResourceTechnologyException" use="literal"/>
                   </fault>
              </operation>
         </binding>
         <plnk:partnerLinkType name="ServiceConfigurationRules_pt_PL">
              <plnk:role name="ServiceConfigurationRules_pt_Role">
                   <plnk:portType name="tns:ServiceConfigurationRules_pt"/>
              </plnk:role>
         </plnk:partnerLinkType>
         <service name="ServiceConfigurationRules_pt">
              <port name="ServiceConfigurationRules_ptPort" binding="ServiceConfigurationRules-v1-0:ServiceConfigurationRules_ptSOAP11Binding">
                   <soap:address location="http://host:port/soa-infra/services/default/ServiceConfigurationRules/ServiceRules"/>
              </port>
         </service>
    </definitions>
    Thank you.

  • Error while crawling LOB contents in SP 2013:'Could not find default endpoint element that references contract in the ServiceModel client configuration section

    Hi,
    I created custom BDC Model using Visual Studio. In ReadList method i am getting data using Web Service call. Using this External Content Type (BDC Model) i created one external list and it is populating with data.
    I created one new content source in search service application using this BDC Model and when crawled this content source i am getting the below error.
    Error while crawling LOB contents. ( Error caused by exception: Microsoft.BusinessData.Runtime.RuntimeException MethodInstance with Name 'ReadList' on Entity (External Content Type) with Name 'Entity1' in Namespace 'bcsex.BdcModel1' failed
    unexpectedly. The failure occurred in method 'ReadList' defined in class 'bcsex.BdcModel1.EntityService1' with the message 'Could not find default endpoint element that references contract 'ServiceReference1.Service1Soap' in the ServiceModel client configuration
    section.
    I included the bindings and client end point configuration settings in web.config file located at
    \\Inetpub\wwwroot\wss\VirtualDirectories\Port_Number, but still getting the same error.
    Please help. Thanks a lot.

    The Issue resolved by including the bindings and client end point configuration settings in
    machine.config file located at C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\ and also restarted the server after config changes.

  • SQL 2012 and later will fail to publish a database for any tables with a default constraint that references a user defined function.

    Script will create database, 3 database objects and publish. 
    The error is due to the generation script to create the conflict tables that is not stripping out default constraints that reference a UDF. 
    As you can see below, the failure is on the generation script for the conflict table.
    The conflict table should be a bucket table that shouldn’t enforce data integrity. 
    See how the default constraints for the columns someint and somestring were stripped out of the generation logic however the default constraint that utilizes a UDF persist and uses the same object name that was used on the production table (The
    bold line) , this occurs if I explicitly name the constraint or let the system generate the name for me like in the example posted. 
      The only way I could see getting around this right now is to drop all default constraints in the system that uses a UDF, publish then add the constraints back which is vulnerable to invalid data and a lot of moving
    steps.  This all worked with SQL 2000, 2005, 2008, 2008r2, it’s stopped working in SQL 2012 and continues to not work in SQL 2014. 
    Error messages:
    Message: There is already an object named 'DF__repTable__id__117F9D94' in the database.
    Could not create constraint. See previous errors.
    Command Text: CREATE TABLE [dbo].[MSmerge_conflict_MergeRepFailurePublication_repTable](
            [id] [varchar](8) NULL CONSTRAINT [DF__repTable__id__117F9D94]  DEFAULT ([dbo].[repUDF]()),
            [somedata] [varchar](64) NULL,
            [rowguid] [uniqueidentifier] ROWGUIDCOL  NULL,
            [someint] [int] NULL,
            [somestring] [varchar](64) NULL
    Parameters:
    Stack:    at Microsoft.SqlServer.Replication.AgentCore.ReMapSqlException(SqlException e, SqlCommand command)
       at Microsoft.SqlServer.Replication.AgentCore.AgentExecuteNonQuery(SqlCommand command, Int32 queryTimeout)
       at Microsoft.SqlServer.Replication.AgentCore.ExecuteDiscardResults(CommandSetupDelegate commandSetupDelegate, Int32 queryTimeout)
       at Microsoft.SqlServer.Replication.Snapshot.YukonMergeConflictTableScriptingManager.ApplyBaseConflictTableScriptToPublisherIfNeeded(String strConflictScriptPath)
       at Microsoft.SqlServer.Replication.Snapshot.BaseMergeConflictTableScriptingManager.DoConflictTableScriptingTransaction(SqlConnection connection)
       at Microsoft.SqlServer.Replication.RetryableSqlServerTransactionManager.ExecuteTransaction(Boolean bLeaveTransactionOpen)
       at Microsoft.SqlServer.Replication.Snapshot.BaseMergeConflictTableScriptingManager.DoConflictTableScripting()
       at Microsoft.SqlServer.Replication.Snapshot.MergeSmoScriptingManager.GenerateTableArticleCftScript(Scripter scripter, BaseArticleWrapper articleWrapper, Table smoTable)
       at Microsoft.SqlServer.Replication.Snapshot.MergeSmoScriptingManager.GenerateTableArticleScripts(ArticleScriptingBundle articleScriptingBundle)
       at Microsoft.SqlServer.Replication.Snapshot.MergeSmoScriptingManager.GenerateArticleScripts(ArticleScriptingBundle articleScriptingBundle)
       at Microsoft.SqlServer.Replication.Snapshot.SmoScriptingManager.GenerateObjectScripts(ArticleScriptingBundle articleScriptingBundle)
       at Microsoft.SqlServer.Replication.Snapshot.SmoScriptingManager.DoScripting()
       at Microsoft.SqlServer.Replication.Snapshot.SqlServerSnapshotProvider.DoScripting()
       at Microsoft.SqlServer.Replication.Snapshot.MergeSnapshotProvider.DoScripting()
       at Microsoft.SqlServer.Replication.Snapshot.SqlServerSnapshotProvider.GenerateSnapshot()
       at Microsoft.SqlServer.Replication.SnapshotGenerationAgent.InternalRun()
       at Microsoft.SqlServer.Replication.AgentCore.Run() (Source: MSSQLServer, Error number: 2714)
    Get help: http://help/2714
    Server COL-PCANINOW540\SQL2012, Level 16, State 0, Procedure , Line 1
    Could not create constraint. See previous errors. (Source: MSSQLServer, Error number: 1750)
    Get help: http://help/1750
    Server COL-PCANINOW540\SQL2012, Level 16, State 0, Procedure , Line 1
    Could not create constraint. See previous errors. (Source: MSSQLServer, Error number: 1750)
    Get help: http://help/1750
    Pauly C
    USE [master]
    GO
    CREATE DATABASE [MergeRepFailure]
    ALTER DATABASE [MergeRepFailure] SET COMPATIBILITY_LEVEL = 110
    GO
    USE [MergeRepFailure]
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    create view
    [dbo].[repView] as select right(newid(),8) as id
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE FUNCTION [dbo].[repUDF]()
    RETURNS varchar(8)
    BEGIN
    declare @val varchar(8)
    select top 1 @val = id from [repView]
    return @val
    END
    GO
    create table repTable
    id varchar(8) default([dbo].[repUDF]()),
    somedata varchar(64) null,
    rowguid uniqueidentifier ROWGUIDCOL default(newid()),
    someint int default(1),
    somestring varchar(64) default('somestringvalue')
    GO
    insert into reptable (somedata) values ('whatever1')
    insert into reptable (somedata) values ('whatever2')
    go
    /*test to make sure function is working*/
    select * from reptable
    GO
    /*Publish database*/
    use [MergeRepFailure]
    exec sp_replicationdboption @dbname = N'MergeRepFailure', @optname = N'merge publish', @value = N'true'
    GO
    declare @Descrip nvarchar(128)
    select @Descrip = 'Merge publication of database ''MergeRepFailure'' from Publisher ''' + @@servername +'''.'
    print @Descrip
    -- Adding the merge publication
    use [MergeRepFailure]
    exec sp_addmergepublication @publication = N'MergeRepFailurePublication', @description = N'@Descrip',
    @sync_mode = N'native', @retention = 14, @allow_push = N'true', @allow_pull = N'true', @allow_anonymous = N'true',
    @enabled_for_internet = N'false', @snapshot_in_defaultfolder = N'true', @compress_snapshot = N'false', @ftp_port = 21,
    @ftp_subdirectory = N'ftp', @ftp_login = N'anonymous', @allow_subscription_copy = N'false', @add_to_active_directory = N'false',
    @dynamic_filters = N'false', @conflict_retention = 14, @keep_partition_changes = N'false', @allow_synctoalternate = N'false',
    @max_concurrent_merge = 0, @max_concurrent_dynamic_snapshots = 0, @use_partition_groups = null, @publication_compatibility_level = N'100RTM',
    @replicate_ddl = 1, @allow_subscriber_initiated_snapshot = N'false', @allow_web_synchronization = N'false', @allow_partition_realignment = N'true',
    @retention_period_unit = N'days', @conflict_logging = N'both', @automatic_reinitialization_policy = 0
    GO
    exec sp_addpublication_snapshot @publication = N'MergeRepFailurePublication', @frequency_type = 4, @frequency_interval = 14, @frequency_relative_interval = 1,
    @frequency_recurrence_factor = 0, @frequency_subday = 1, @frequency_subday_interval = 5, @active_start_time_of_day = 500, @active_end_time_of_day = 235959,
    @active_start_date = 0, @active_end_date = 0, @job_login = null, @job_password = null, @publisher_security_mode = 1
    use [MergeRepFailure]
    exec sp_addmergearticle @publication = N'MergeRepFailurePublication', @article = N'repTable', @source_owner = N'dbo', @source_object = N'repTable', @type = N'table',
    @description = null, @creation_script = null, @pre_creation_cmd = N'drop', @schema_option = 0x000000010C034FD1, @identityrangemanagementoption = N'manual',
    @destination_owner = N'dbo', @force_reinit_subscription = 1, @column_tracking = N'false', @subset_filterclause = null, @vertical_partition = N'false',
    @verify_resolver_signature = 1, @allow_interactive_resolver = N'false', @fast_multicol_updateproc = N'true', @check_permissions = 0, @subscriber_upload_options = 0,
    @delete_tracking = N'true', @compensate_for_errors = N'false', @stream_blob_columns = N'false', @partition_options = 0
    GO
    use [MergeRepFailure]
    exec sp_addmergearticle @publication = N'MergeRepFailurePublication', @article = N'repView', @source_owner = N'dbo', @source_object = N'repView',
    @type = N'view schema only', @description = null, @creation_script = null, @pre_creation_cmd = N'drop', @schema_option = 0x0000000008000001,
    @destination_owner = N'dbo', @destination_object = N'repView', @force_reinit_subscription = 1
    GO
    use [MergeRepFailure]
    exec sp_addmergearticle @publication = N'MergeRepFailurePublication', @article = N'repUDF', @source_owner = N'dbo', @source_object = N'repUDF',
    @type = N'func schema only', @description = null, @creation_script = null, @pre_creation_cmd = N'drop', @schema_option = 0x0000000008000001,
    @destination_owner = N'dbo', @destination_object = N'repUDF', @force_reinit_subscription = 1
    GO

    More information, after running a profile trace the following 2 statements, the column with the default on a UDF returns a row while the other default does not.  This might be the cause of this bug.  Is the same logic to generate the object on
    the subscriber used to generate the conflict table?  
    exec sp_executesql N'
    select so.name, schema_name(so.schema_id)
    from sys.sql_dependencies d
    inner join sys.objects so
    on d.referenced_major_id = so.object_id
    where so.type in (''FN'', ''FS'', ''FT'', ''TF'', ''IF'')
    and d.class in (0,1)
    and d.referenced_major_id <> object_id(@base_table, ''U'')
    and d.object_id = object_id(@constraint, ''D'')',N'@base_table nvarchar(517),@constraint nvarchar(517)',@base_table=N'[dbo].[repTable]',@constraint=N'[dbo].[DF__repTable__id__117F9D94]'
    exec sp_executesql N'
    select so.name, schema_name(so.schema_id)
    from sys.sql_dependencies d
    inner join sys.objects so
    on d.referenced_major_id = so.object_id
    where so.type in (''FN'', ''FS'', ''FT'', ''TF'', ''IF'')
    and d.class in (0,1)
    and d.referenced_major_id <> object_id(@base_table, ''U'')
    and d.object_id = object_id(@constraint, ''D'')',N'@base_table nvarchar(517),@constraint nvarchar(517)',@base_table=N'[dbo].[repTable]',@constraint=N'[dbo].[DF__repTable__somein__1367E606]'
    Pauly C

  • Exporting projects that reference images in other projects

    Hello, all. I'm wondering if anyone out there has had luck exporting projects that reference images in another project. I've just given this a try, and I get empty images (dotted gray outlines that can't be multi-selected and can't be "managed" as referenced files, even though it knows where the original file should be).
    Here's how I have things set up:
    1. main project with referenced images
    2. secondary project with an album that references images in the main project (secondary project shows 0 images, but album in secondary project shows N images)
    I export the secondary project, and import it into another Aperture instance. All images show up as dotted outlines.
    Furthermore, if I go into list view, the Activity Monitor does something bizarre. It shows the # thumbnails remaining as a moving target. See the video below for an example.
    Any help would be greatly appreciated. Thank you!
    Screen captures:
    Missing images as dotted outlines:
    http://echeng.com/temp/aperture-missing-images.png
    Small video of thumbnail creating bug:
    http://echeng.com/temp/aperture-thumbnail-bug.mov

    I do this sort of thing constantly and things a whole lot more complicated. It works fine on all three of my laptops and my macpro. I actually just tried to simulate the exact conditions you describe and I will tell you what happened.
    1)Create new empty project in library A called "export"
    2)Create new empty album in that project.
    3)Dragged multiple images from different projects (all referenced) into that new album.
    4)Used file->export project with the consolidate images checked. Imported that project into a new/different library.
    All of the images showed up and they all showed up as managed masters as expected. So I then relocated the masters from that project and did the same thing in reverse, back to the old library. I ended up with another project called "export (1)" with all of the images referenced and having nothing to do with the original project or the original referenced masters - as expected.
    I did the testing not to figure it out but to validate that nothing had changed or broken since the last update.
    You are either not doing what you think you are doing or your library/library is forked - you may want to try a rebuild or just create a brand new set of libraries and try to validate that it will work with a brand new set of libraries to try to isolate the issue to 1 - your existing libraries or 2 - your installation.
    RB

  • Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.
      intially i created view object named EmpByEmail.........for that EmpByEmail1 is created in datacontrols....i deleted EmpByEmail in demo.model by mistake and i created again with same name EmpBYEmail another view object...again another EmpByEmail2 is created in datacontrols.....
    while i am running i am getting following error:::::::
    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Hi,
        Please seasrch for the EmpByEmail1 file in ur project and remove all the details in the Page Def and UI and then try again.
    Due to the EmpByEmail1 existance in page Def this may occur . It may help , still if it was not working then I am sorry for that.

  • Custom Timer Job to execute WCF web service error - Could not find default endpoint element that references contract

    Hi,
    I am currently creating custom timer job to call WCF web service to perform nighty job to update employee document library metadata. If I update regular list/library items it updates correctly on a specified interval basis. However when I try to integrate
    the WCF client, it throws error shown below :
    Could not find default endpoint element that references contract EmployeeServiceReference.
    EmployeeServiceClient in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.
    I followed exact instructions Andrew Connell has provided but included my logic in execute()
    public
    override
    void Execute(Guid
    targetInstanceId)
    var empClient =
    new
    'ServiceReference.EmployeeServiceClient();
    var employee = empClient.EmployeesMethod();
    I have tried all approaches to manually adding app.config settings in sharepoing web.config but still it throws the error mentioned. It seems that application config and sharepoint site config binding issue still exist and cannot be resolved.
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding
    name="BasicHttpBinding_EmployeeService"
    />
    </basicHttpBinding>
    <netTcpBinding>
    <binding
    name="CustomBinding_EmployeeService">
    <security>
    <transport
    protectionLevel="None"
    />
    </security>
    </binding>
    </netTcpBinding>
    <wsHttpBinding>
    <binding
    name="WSHttpBinding_EmployeeService">
    <security
    mode="None"
    />
    </binding>
    </wsHttpBinding>
    </bindings>
    <client>
    <endpoint
    address="http://services.mycomp.com/EmployeeService.svc"
    binding="wsHttpBinding"
    bindingConfiguration="WSHttpBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="WSHttpBinding_EmployeeService"
    />
    <endpoint
    address="http://services.mycomp.com/EmployeeService.svc/soap"
    binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="BasicHttpBinding_EmployeeService"
    />
    <endpoint
    address="net.tcp://crmapp.mycomp.com:5050/EmployeeService.svc/tcp"
    binding="netTcpBinding"
    bindingConfiguration="CustomBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="CustomBinding_EmployeeService">
    <identity>
    <userPrincipalName
    value="[email protected]"
    />
    </identity>
    </endpoint>
    </client>
    </system.serviceModel>
    Will you please help resolving this issue?

    Hi,
    You can use any of the three approaches:-
    1) Access web application's web.config programmatically in Execute() method.
    http://praveenkasireddy.wordpress.com/2012/12/14/access-web-application-configuration-values-in-timer-job-sharepoint/
    2) Store the configuration in xml and upload it to SharePoint document library then read from there
    http://www.sharepointdynamics.net/2011/08/using-an-xml-settings-file-to-store-values-for-your-sharepoint-projects/
    3) Programmatically configure a WCF endpoint.
    http://msdn.microsoft.com/en-us/library/ff647110.aspx
    Regards, Shruti

  • BPM. Creating element in container that references the sync. interface

    I couldn't select  synchronous, abstract interface for container element.
    i see only async interfaces.
    How to get sync interfaces there?

    sorry, problem is solved.
    help is not correct on this link
    http://help.sap.com/saphelp_nw70/helpdata/en/43/6211331c895f6ce10000000a1553f6/content.htm
    wrong line is:
    In the Synchronous Interface field, select the <b>container element</b> that references the synchronous, abstract interface for sending the request message and receiving the reply message.

  • PI does not combine .wsdl file with .xsd files.

    Hi,
    I imported .wsdl file with necessary .xsd files in PI system (7.1).
    PI does not find fields in .wsdl already necessary .xsd files imported with .wsdl file.
    Is there anyone to help me to solve problem with test it in PI system.
    I send .wsdl file and necessary .xsd files as attachment his mail address.
    Thanks.

    Did you try opening the wsdl file in some XML tool...if there is problem in referring the XSD then it will be visible in the tool itself.....even I am working on PI7.1 and some of the WSDLs are referring XSDs...and i had no problem in using them.....dont know what is failing in your case
    Do you want me to send .wsdl and .xsd files zipped into your mail box
    instead you can post your wsdl file and the corresponding XSD here in SDN....even a dummy structure would do....we are not allowed to do personal email comunication
    Regards,
    Abhishek.

  • Text messaging some are green and some are blue does that reference that they have orhave not been received

    Some of my text messages are green and some are blue,does that reference some delivered some not.  Why is there a difference in color.  Some of my texts seem to not go through

    Blue = iMessage...
    Green = Text message... SMS
    Using Messages  >  http://support.apple.com/kb/HT3529

Maybe you are looking for

  • Boot Camp - Windows can read Mac disk, but cannot write to it

    iMac OSX Snow Leopard. Windows XP. Can anyone help me resolve this. I have installed Windows XP using Boot Camp. The Windows folder is 31GB using FAT32. Windows can read from the Mac disk, but cannot write to it (I get an ACCESS DENIED) error. I have

  • Error SHM starting ECC 6.0 on Solaris

    Hello We are working in a customer installation. ECC 6.0 SR1 , Oracle 10.2.0  in Solaris 10. Installation process is finished, but SAP doesn't start . It seems a problem with memory segment. Only message server, collector, sender , icman and igs keep

  • Error : Reverse an AR invoice having downpayment linked to it.

    Hi, I am facing a problem in reversing a AR Invoice having a downpayment through AR credit Memo. System displays a message as - Copying an invoice which includes a down payment is not currently supported [Message 3703-18] I am opening the AR invoice

  • H.323 Gateway is not Registering in CCM 4.1.2

    H.323 Gateway. I am using cisco2620 ======================================== nafay#sh run Building configuration... Current configuration : 966 bytes version 12.2 service timestamps debug uptime service timestamps log uptime no service password-encry

  • Updating Data in Database using JSP

    Hi all, Can anyone please give me an idea that i have a JSP page that connects to the MS Access database. Now i have a query that shows all the data sorted by date for each individual user. Now if anyone wants to update from there meaning that there