Does PI supports WSDL document literal wrapped?

Hi experts,
One question, please! Does PI supports WSDL document literal wrapped? If not which workaround we have?
Thanks in advance,
Jorge.

Thanks but didn't help too much.
In fact, the first thread was posted by myself and it's only document literal related. The second is regarding the WSDL formats supported and also with the element <wsdl:part name=" "> that is not supported.
I know that PI supports WSDL document literal, but anyone has implemented document literal wrapped, to invoke different functions that use the same parameters.
Regards,
Jorge.

Similar Messages

  • Document Literal / Wrapped

    Hi,
    I am using Oracle BPEL 10.1.2.0.2, and it seems like WSDLs are generated in Document Literal form. I can't seem to find a way to specify Document Literal Wrapped, is this possilbe?
    Thanks,
    Nicholas

    Actually, if we try to create webservice(wsdl) from XI (Integration Directory) by default it creates with document/literal style. My question is, Is there any way to create document/literal wrapped wsdl file(not only document/literal wrapped other styles also).
    If we take ORACLE Apps, they have 4 options (document,rpc style and etc) while creating the wsdl file.
    XI doesn't have this options, but can we do any workaround to do this?
    Regards
    Sara

  • Does LabVIEW support Multi Document Format

    Hi
    I had a doubt that does LabVIEW support Multi Document Format like Microsoft Word, execel etc.
    please reply me with some solution if anyone has
    With Regards
    Avni

    Yes, I know very well what MDI is, I just don't know what Multi Document Format is
    Programs like word, excel, etc support reading/writing of files in multiple formats (e.g. *.doc, *.rtf, *.txt, etc. for word or *.xls, *.csv, etc. for excel), so the question could be along these lines. I guess we have to wait for the original poster to come back to clarify.
    LabVIEW Champion . Do more with less code and in less time .

  • WSDL Document/ literal is supported in PI 7.1?

    Hi experts,
    I'm trying to consume a web service and when use it external definition (wsdl) to create my message mapping, only one field appears with the same name of the operation/method. I checked the WSDL and this element is defined as a literal type, e.g. <soap:body use="literal" />.
    I googled and I found that Today is the recommended way to develop web services. So, maybe PI 7.1 supported this convention, however I don't know how to create my graphical mapping and map the fields with this kind of wsdl elements.
    Anyone knows how to do it? in case it not supported, any workaround is welcome.
    Thanks in advance,
    Jorge.

    Are you using this with "parts" option in wsdl? If yes, then this option is supported only for certain scenarios like java proxies.
    Here is the list wherein you may find the supported tags for PI 7.1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00a9a425-1769-2a10-9196-bd8eeed72e4c
    however I don't know how to create my graphical mapping and map the fields with this kind of wsdl elements.
    You may import the wsdl under External Definition in IR and use it in mapping. The usage in mapping would be same. Literal type document won't affect mapping as it is not related to the schema, rather it is related to the bindings.
    Regards,
    Prateek

  • Hi. I use ExportPDF. Does Adobe support pdf documents written in Arabic Language? Does it change the documents in arabic language into microsoft word??

    I have PDF documents written in Arabic. I would like to convert it into Microsoft Word. Unfortunately I am unable to do this. Please help me in my quiery. Does Adobe PDF converter support Arabic font??

    Hi Yousif04,
    If your document has fonts attached you can convert to Microsoft word that is quite possible. But if the fonts were used to create the file arent present in the system the Microsoft word may not be able to retain the layout of the document.
    There shouldn't be any problem for ExportPdf service to convert your document.
    To check fonts used for that PDF. Open PDF either in Reader or In Acrobat. Click on File go to Properties. Document Property windows will appear there is Fonts Tab. You will the fonts embedded for the document.
    Regards,
    Ajlan Huda.

  • Does UTL_HTTP support calling document style web service??

    Hi,
    I am exploring UTL_HTTP options for one of the web service call requirement at a customer site.
    Can any one tell if they have used UTL_HTTP for a document style service.
    If so, pls share the code.
    TIA,
    -Bhawani

    >
    wscompile -keep -verbose -import -f:documentliteral
    -f:nodatabinding config.xml
    wscompile -cp . -keep -verbose -gen:server
    serverconfig.xml
    [creating model: test]
    [creating service: Test]
    [creating port: MyIntf]
    [creating operation: callTXLife]
    error: Type "javax.xml.soap.SOAPElement" implements
    more than one interface, interfaces:
    "javax.xml.soap.Node", "org.w3c
    .dom.Element" ...
    I have the same problem with J2EE 1.4 AS Developer Release.

  • Cant parse Document/Literal WS Response

    It might be the case that i'm not doing correctly, but I cant seem to parse the document/literal response for the life of me. The response parses as expected when I build the web service as an RPC WSDL, but fails when I build as document/literal. The company standard is document/literal wrapped, so thats the one I need to use. Any help would be greatly appreciated!!
    Here is the WSDL contents and the javascript...
    WSDL:
    <wsdl:definitions targetNamespace="http://dao.test.crowley.com">
    <!--
    WSDL created by Apache Axis version: 1.4
    Built on Apr 22, 2006 (06:55:48 PDT)
    -->
    <wsdl:types>
    <schema elementFormDefault="qualified" targetNamespace="http://dao.test.crowley.com">
    <element name="getUserJSON">
    <complexType>
    <sequence>
    <element name="sql" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    <element name="getUserJSONResponse">
    <complexType>
    <sequence>
    <element name="getUserJSONReturn" type="xsd:string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </wsdl:types>
    <wsdl:message name="getUserJSONRequest">
    <wsdl:part element="impl:getUserJSON" name="parameters">
          </wsdl:part>
    </wsdl:message>
    <wsdl:message name="getUserJSONResponse">
    <wsdl:part element="impl:getUserJSONResponse" name="parameters">
          </wsdl:part>
    </wsdl:message>
    <wsdl:portType name="UserDAO">
    <wsdl:operation name="getUserJSON">
    <wsdl:input message="impl:getUserJSONRequest" name="getUserJSONRequest">
           </wsdl:input>
    <wsdl:output message="impl:getUserJSONResponse" name="getUserJSONResponse">
           </wsdl:output>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="UserDAOSoapBinding" type="impl:UserDAO">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getUserJSON">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getUserJSONRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getUserJSONResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="UserDAOService">
    <wsdl:port binding="impl:UserDAOSoapBinding" name="UserDAO">
    <wsdlsoap:address location="http://localhost:8080/PDFTest/services/UserDAO"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Javascript:
    function testDocumentLiteral(){
         try{
              var cURL = "http://localhost:8080/PDFTest/services/UserDAO?wsdl";
            console.println("\n\n***** ECHO *****");
            console.println("\nWSDL: " + cURL);
              //Set SQL String
            var sqlString = "SELECT * FROM USER WHERE EMPLOYEE_ID = 123456";
              console.println("SQL: " + sqlString);
              // Call the echoString SOAP method -- it is an RPC Encoded method
              SOAP.wireDump = false;
              var response = SOAP.request(
                   cURL: cURL,
                   oRequest: {
                        "http://localhost:8080/PDFTest/services/UserDAO?wsdl:getUserJSON": {
                             sql: sqlString
                   cAction: ""
              var parsedResult = response["http://localhost:8080/PDFTest/services/UserDAO?wsdl:getUserJSONResponse"]["getUserJSONReturn"];
              console.println("Web Service Response: " + parsedResult);
         catch(e){
              console.println("Exception...\n" + e);

    Here is my wireDump:
    <soapenv:Envelope>

    <soapenv:Body>

    <getUserJSONResponse>

    <ns1:getUserJSONReturn>
    [{"firstName":"John","middleName":"X.","lastName":"Doe","employeeId":123456}]
    </ns1:getUserJSONReturn>
    </getUserJSONResponse>
    </soapenv:Body>
    </soapenv:Envelope>

  • Encryption of body's first child (method name) in Doc Literal Wrapped

    G'day all,
    I created a sample, where the service requires an encrypted input element (body's first child), which is the method name in document literal wrapped web services.
    I added few more operation to the SEI to make it more interesting scenario. It worked rightly.
    I am curious to know how WebService engine picks the security policy rightly? Since the on the wire shows EncryptedData element instead of input message name.
    Also, I added @Policy annotation description on the Impl Class level. Is it going to work or fail if I add different @Policy annotations to each WebMethod level and have encryption of the input element?
    With Regards,
    Mayank

    Hi
    The following link has information on using the Policy annotations
    http://edocs.bea.com/wls/docs100/webserv_sec/message.html#wp210258
    Ajay

  • Getting the WSDL documents

    hi,
    i need to get the WSDL document that describes the service that the user selects. but some how, my codes now does get a WSDL document but it does not describes the web seervice... more like describing the organization...
    the following is my codes:
    * Author : Lim Wei, Melissa Koh
    * Admin# : 002068s, 002915l
    * Class Name : Naics.java
    * Date : October 21, 2002
    * Description : Connects to UDDI registry as selected by user.
    package FYPJ;
    import javax.xml.registry.*;
    import javax.xml.registry.infomodel.*;
    import java.net.*;
    import java.util.*;
    import java.lang.*;
    public class NaicsQuery{
    private Connection m_conn;
    private int cntServices = 0;
    Vector servicesAva = new Vector();
    // empty constructor
    public NaicsQuery()
    public void makeConnection(String conn)
         Properties props = new Properties();
         props.setProperty("javax.xml.registry.queryManagerURL", conn);
         props.setProperty("javax.xml.registry.factoryClass",
    "com.sun.xml.registry.uddi.ConnectionFactoryImpl");
         try
    ConnectionFactory factory = ConnectionFactory.newInstance();
    factory.setProperties(props);
    this.m_conn = factory.createConnection();
    System.out.println("Connection to UDDI created");
         catch (Exception e)
    e.printStackTrace();
    if (this.m_conn != null)
              try
    this.m_conn.close();
              catch (Exception eb)
    public void executeQuery(String serviceName)
         RegistryService rs;
         BusinessQueryManager bqm;
         BusinessLifeCycleManager blcm;
    try
    // Get registry service & managers
    rs = m_conn.getRegistryService();
    bqm = rs.getBusinessQueryManager();
    blcm = rs.getBusinessLifeCycleManager();
    System.out.println("Got registry service, query manager, and life cycle manager.");
    Collection classifications = new ArrayList();
    classifications.add(serviceName);
    BulkResponse response = bqm.findOrganizations(null, classifications, null, null, null, null);
    Collection orgs = response.getCollection();
    // Display info about the organizations found
    Iterator orgIter = orgs.iterator();
    while(orgIter.hasNext())
    //Concept concept = (Concept)orgIter.next();
    Organization org = (Organization)orgIter.next();
    System.out.println("Organization Name: " + org.getName().getValue());
    System.out.println("Organization Description: " + org.getDescription().getValue());
    System.out.println("Organization Key ID: " + org.getKey().getId());
    //concept = (Concept)bqm.getRegistryObject(concept.getKey().getId());
    //String name = getName(concept);
    Collection links = org.getExternalLinks();
    if (links.size() > 0)
    ExternalLink link = (ExternalLink)links.iterator().next();
    System.out.println("\tURL to WSDL document: " + link.getExternalURI());
    // Display primary contact information
    User pc = org.getPrimaryContact();
    if(pc != null)
    PersonName pcName = pc.getPersonName();
    System.out.println("Contact name: " + pcName.getFullName());
    Collection phNums = pc.getTelephoneNumbers(null);
    Iterator phIter = phNums.iterator();
    while(phIter.hasNext())
    TelephoneNumber num = (TelephoneNumber)phIter.next();
    System.out.println("Phone number: " + num.getNumber());
    Collection eAddrs = pc.getEmailAddresses();
    Iterator eaIter = eAddrs.iterator();
    while(phIter.hasNext())
    System.out.println("Email Address: " + (EmailAddress)eaIter.next());
    // Display service and binding information
    Collection services = org.getServices();
    Iterator svcIter = services.iterator();
    while(svcIter.hasNext())
    Service svc = (Service)svcIter.next();
    System.out.println("Service name: " + svc.getName().getValue());
    System.out.println(" Service description: " + svc.getDescription().getValue());
    cntServices ++;
    servicesAva.add((String)svc.getName().getValue() + " (" + org.getName().getValue() + ")");
    Collection serviceBindings = svc.getServiceBindings();
    Iterator sbIter = serviceBindings.iterator();
    while(sbIter.hasNext())
    ServiceBinding sb = (ServiceBinding)sbIter.next();
    System.out.println(" Binding description: " + sb.getDescription().getValue());
    System.out.println(" Access URI: " + sb.getAccessURI());
    Collection specLinks = sb.getSpecificationLinks();
    Iterator slIter = specLinks.iterator();
    while(slIter.hasNext())
    SpecificationLink spLink = (SpecificationLink)slIter.next();
    System.out.println(" Usage description: " + spLink.getUsageDescription());
    Collection useParam = spLink.getUsageParameters();
    Iterator useIter = useParam.iterator();
    while(useIter.hasNext())
    String usage = (String)useIter.next();
    System.out.println(" Usage Parameter: " + usage);
    System.out.println("-----------------------------------");
    System.out.println("*****************************************************************");
    catch(Throwable e)
    e.printStackTrace();
    finally
    // At end, close connection to registry
    if(m_conn != null)
    try
    this.m_conn.close();
    catch(JAXRException jaxre)
    public int getNumServices()
    return cntServices;
    public Vector getServicesAva()
    return servicesAva;
    /*public static void main(String args[])
    String queryURL = "http://uddi.ibm.com/ubr/inquiryapi";
    if(args.length != 0)
    System.out.println("Error!");
    System.exit(1);
    NaicsQuery nq = new NaicsQuery();
    nq.makeConnection(queryURL);
    nq.executeQuery();
    how should i go abt getting the WSDL document i want???
    your help will be appreciated...
    thanx in advance...
    - trazzo

    Hi,
    What a lot of code! I think this is a lot easier than that.
    You need to use the WSDL2Java command. See tutorials.
    This will find a wsdl file and create the java files necessary.
    You then need to compile tese java files
    You also nned a client (more of that another day/night.
    Compile this also
    RUN.
    best
    kev

  • Document/literal style wsdl with more than one port

    Recently I have changed wsdl style from rpc/encoded to document/literal as BPEL does not handle soapenc:arrayType. The wsdl contains 2 operations and few complex type definitions.
    In BPEL Designer I have created a process that invokes all operations defined in the wsdl, but only one of them will have some data in the response message and the other one will have an empty message. On the other hand, when I use stub generation to invoke Web Service everything is working fine.
    If I provide separate wsdl for each operation (in BPEL process I would have two partnerLinks instead of one) than it works fine.
    Does this mean that BPEL does not handle document/literal style endpoints with more than one port (operation)?
    I have tested this with the orabpel_2.0_J1_win32.exe and orabpel_2.0rc9_win32.exe. Web Services, used for this test, are deployed in Jboss 3.2.3 and axis-1_2beta3.
    WSDL used as partnerLink:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions targetNamespace="http://test" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://test" xmlns:intf="http://test" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <schema elementFormDefault="qualified" targetNamespace="http://test" xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="CardId">
    <sequence>
    <element name="cardType" nillable="true" type="xsd:string" />
    <element name="number" nillable="true" type="xsd:string" />
    </sequence>
    </complexType>
    <complexType name="CardIdArray">
    <sequence>
    <element maxOccurs="unbounded" name="item" nillable="true" type="impl:CardId" />
    </sequence>
    </complexType>
    <element name="getCardsReturn" type="impl:CardIdArray" />
    <complexType name="CardholderCards">
    <sequence>
    <element maxOccurs="unbounded" name="cards" nillable="true" type="impl:CardId" />
    <element name="serialNumber" nillable="true" type="xsd:string" />
    </sequence>
    </complexType>
    <element name="retrieveChReturn" type="impl:CardholderCards" />
    </schema>
    </wsdl:types>
    <wsdl:message name="retrieveChRequest" />
    <wsdl:message name="getCardsRequest" />
    <wsdl:message name="retrieveChResponse">
    <wsdl:part element="impl:retrieveChReturn" name="retrieveChReturn" />
    </wsdl:message>
    <wsdl:message name="getCardsResponse">
    <wsdl:part element="impl:getCardsReturn" name="getCardsReturn" />
    </wsdl:message>
    <wsdl:portType name="TestService">
    <wsdl:operation name="getCards">
    <wsdl:input message="impl:getCardsRequest" name="getCardsRequest" />
    <wsdl:output message="impl:getCardsResponse" name="getCardsResponse" />
    </wsdl:operation>
    <wsdl:operation name="retrieveCh">
    <wsdl:input message="impl:retrieveChRequest" name="retrieveChRequest" />
    <wsdl:output message="impl:retrieveChResponse" name="retrieveChResponse" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="TestServiceSoapBinding" type="impl:TestService">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="getCards">
    <wsdlsoap:operation soapAction="" />
    <wsdl:input name="getCardsRequest">
    <wsdlsoap:body use="literal" />
    </wsdl:input>
    <wsdl:output name="getCardsResponse">
    <wsdlsoap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="retrieveCh">
    <wsdlsoap:operation soapAction="" />
    <wsdl:input name="retrieveChRequest">
    <wsdlsoap:body use="literal" />
    </wsdl:input>
    <wsdl:output name="retrieveChResponse">
    <wsdlsoap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="TestServiceService">
    <wsdl:port binding="impl:TestServiceSoapBinding" name="TestService">
    <wsdlsoap:address location="http://localhost:8080/axis/services/TestService" />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    Hi Dragana,
    We definitely support the ability to call a web service that exposes two operations (document/literal or not).
    Glancing through your WSDL, it looks good.
    Could you please try to tunnel the second request and see 1) what data is sent to the service and 2) what data is returned by the service?
    Can you please email us a reproduceable case so that we can help troubleshoot in parallel?
    Thank you,
    Edwin
    [email protected]
    please rename .zip to .zap

  • Does DII support document based web service?

    Hi,
    I am writing a web service cleint DII, the web service is document based. I followed the sample in
    https://bpcatalog.dev.java.net/nonav/soa/standalone-client/
    Everything seems correct. When I call call.invoke, I got an exception saying "operation style: \"document\" not supported".
    Here is the code fragment, can anyone tell me what's wrong or does DII support document based service?
    Thanks a lot!
    Y. Zhao
    try {
    ServiceFactory factory = ServiceFactory.newInstance();
    service = factory.createService(new QName(EXTRACTURLSERVICE));
    port = new QName(EXTRACTURLPORT);
    } catch (Exception se) {
    // throw new Exception("Can not create stock service: " + se.getMessage());
    _endPointAddr = "http://www.atomic-x.com/xmlservices/HyperlinkExtractor.asmx";
    _qnameNamespaceURI = new QName("ExtractUrl");
    requestQname = new QName(NAMESPACE_URI, "ExtractUrl");
    responseQname = new QName(NAMESPACE_URI, "ExtractUrlResponse");
    Call call = null;
         try {
    call = service.createCall(port);
    call.setTargetEndpointAddress(_endPointAddr);
    call.setProperty(Call.SOAPACTION_USE_PROPERTY,
    Boolean.TRUE);
    call.setProperty(Call.SOAPACTION_URI_PROPERTY, "http://www.atomic-x.com/xmlservices/HyperlinkExtractor/ExtractUrl");
    call.setProperty("javax.xml.rpc.encodingstyle.namespace.uri", "");
    call.setProperty(Call.OPERATION_STYLE_PROPERTY, "document");
    call.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY, "literal");
    call.addParameter("parameters", requestQname, ExtractUrl.class, ParameterMode.IN);
    call.setReturnType(responseQname, ExtractUrlResponse.class);
    result = (ExtractUrlResponse)call.invoke((Object[])params);
         } catch (Exception ex) {
    //throw new ServiceException("Can not get service: " + ex.getMessage());
    String msg = ex.getMessage();
    ex.printStackTrace();
         }

    There shouldn't be any restriction on the type of payload that's specific to DII.
    I did come across a similar message, but I found the cause back in the WSDL rather than the client code. Have a look at the WSDL and see if it mentions "RPC" meaning the web service is making available a remote procedure call interface.

  • Issue with generation of document/literal type WSDL using Axis

    Hi All,
    I am trying to convert some Java code into WSDL using Axis 1.2 framework. I used Document/Literal style for binding.
    One of the methods in my Java code returns an array. This array is described in Axis generated WSDL as follows:
    <complexType name="ArrayOfThings">
    <complexContent>
    <restriction base="soapenc:Array">
    <attribute ref="soapenc:arrayType" wsdl:arrayType="impl:Things[]"/>
    </restriction>
    </complexContent>
    </complexType>
    But the end user(client for the web service I am hosting) says " .NET won't allow him to consume my webservice (or generate the proper reference classes) for types that derive from encoded types".
    So my question is "Would it be possible to change the webservice so that it doesn’t use that(soapenc) implementation of the array?"
    The end user is expecting something more like this:
    <s:complexType name="ArrayOfThings">
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="unbounded" name="Things" nillable="true" type="tns:Things" />
    </s:sequence>
    </s:complexType>
    I am new to Web Services. So any help or guidance would be greatly appreciated.
    Thanks,
    Scott.

    Hi Dragana,
    We definitely support the ability to call a web service that exposes two operations (document/literal or not).
    Glancing through your WSDL, it looks good.
    Could you please try to tunnel the second request and see 1) what data is sent to the service and 2) what data is returned by the service?
    Can you please email us a reproduceable case so that we can help troubleshoot in parallel?
    Thank you,
    Edwin
    [email protected]
    please rename .zip to .zap

  • Wsdl soap style get RPC need document/literal

    Hi,
    Using jdev10.1.3/jre1.3 to generate webservice wrappers
    How do you change style which defaults to RPC and I need document/literal ?
    Can't really find any properties in the IDE to do it, can anyone point me in to the relevant sections?
    Thanks
    Pete

    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

  • In SharePoint 2010 Document Library "Open with Explorer" Your client does not support opening this list with Windows Explorer

    Hi.
    I am getting below error "Your client does not support opening this list with Windows Explorer" while click "Open with Explorer" option in document library.
    My system is client machine which is 32 Bit system and
    Web Client service is also running and Window 7 PC.
    Other SharePoint sites "Open with Explorer" option in document library is working fine but specific site is giving error.
    Even it was working fine but not is giving this error.
    Please help me on it. Its making frustrations.
    Thanks & Regards
    Poomani Sankaran

    Hi,
    According to your post, my understanding is that you got “Your client does not support opening this list with Windows Explorer” error.
    Did you enable the both authentication (Windows and FBA) on default zone.
    As far as I remember when FBA is enabled on the same zone when Windows is used, it breaks whole client integration.
    So it will be better if you will recheck your architecture and will use different zones for Windows and FBA.
    There is also another thing to try: use claims based authentication with authentication provider which will work both with Windows and FBA.
    What’s more, you can also check with below steps.
    Use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    Add the site into Trusted sites to check whether it works..
    Open the IE->Internet Options->Security->Sites->add the site into the Websites, then check whether it works.
    In addition, you can also try to enable Basic authentication on the client computer, by setting the BasicAuthLevel registry entry of the following key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
    For detailed steps, visit the following KB page.
    http://support.microsoft.com/kb/841215/en-us
    There are some similar threads for your reference.
    http://social.msdn.microsoft.com/Forums/en-US/e9a07773-db23-46e9-8d1d-7015cd5aa13b/your-client-does-not-support-opening-this-list-with-windows-explorer?forum=sharepointgeneralprevious
    http://blogs.technet.com/b/asiasupp/archive/2011/06/13/error-message-quot-your-client-does-not-support-opening-this-list-with-windows-explorer-quot-when-you-try-to-quot-open-with-explorer-quot-on-a-sharepoint-document-library-in-office-365-site.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • I cannot copy and paste details from my bank statement into a word document, without the formatting changing.I have a message in my Error console which reads: server does not support RFC 5746, see CVE-2009-3555

    Since transferring data from my desktop to my laptop, i am now having problems copying and pasting details from my bank website in to a word document, the formatting is all over the place. This didnt happen before, when i pasted the details in to the word document the formatting was exactly the same as on the webpage. If I use internet explorer, I dont have this problem, so, I can only assume it has something to do with Firefox. I have checked the "Error console" and I am receiving this message: server does not support RFC 5746, see CVE-2009-3555.

    Maybe:<br />
    Dafizilla Table2Clipboard: https://addons.mozilla.org/firefox/addon/1852

Maybe you are looking for

  • VOD doesn't work properly and customer service sucks!!!

    I contacted Verizon on 5/2 about my problem. I was told there was an outage and it would be fixed within 24 hours. 36 hours have come and gone and still no resolution to my problem, so I call back and I am told it will be another 12 hours or so until

  • For 'FIKRS': 'value' no Fiscal year variant is maintained

    Hello! I use TDMS version 3.0 SP 17. Process Type  - ERP Initial Package for Time based & Company Code Reduction. In Activity 'Analyze and Specify 'From-Date'' I have next very important problem: For 'FIKRS': 'my value' no Fiscal year variant is main

  • Unable to start 2nd instance in RAC

    Hi, i have a clustered environment, with 1 database consists of 3 instances. i recreated the spfile using init.ora file from other database to get the sga size etc... so far is fine, and able to start the database, and instance 1 is started and not s

  • Will the Nokia E70 ever support A2DP thru a firmwa...

    Hey Im wondering if (or if it is even possible) that the Nokia E70 will ever support A2DP thru a firmware update? I think that such a complete phone with up to 6 Bluetooth connections such support this as it would make it the best business/personal p

  • Wireless Speed Test Great - Browsing Not So Great

    I have a wireless setup and my MacBook Pro web browsing seems to be a bit slow. I ran a speed test (FTP) and it was blazing for my connection (over 1MBPS on Hughes.netb Satellite). The web browsing doesn't equate to this speed. Are there any Safari s