P6 R8.1 Web Service installation issue on Linux

We are trying to install P6R8.1 web services on weblogic in linux. We have the following setup:
1. Oracle 11g standard database in CentOS-5.4 64-bit
2. P6R8.1/ Weblogic 10.3.3.4 installed on CentOS 5.4 64-bit (separate server).
We have installed as per the oracle installation guide without any warning/ failure. After deploying the .war file (p6ws.war), it also showing Active in Weblogic admin console. But while trying to access the application (http://localhost:7001/p6ws) we are getting error: 403 Forbidden.
We have tested the weblogic by deplyoing some sample .war file and it works fine
After examining, we have found that there is no index.jsp file in the root of the p6ws.war file and it is only 29 mb compare to primaveraweb.ear file which is 194 mb of our existing installation (P6V7 with similar environment).
Is our .war file is not properly generated or we are missing some steps? Or there is any other issue?
Any help will be highly appreciated.
Best Regards,
Sandip

In previous versions the following was sufficient:
http://HOST:PORT/p6ws/
The correct URL as of version 8.0 of P6 Web Services is the following:
http://HOST:PORT/p6ws/services
See the following: "Error 403--Forbidden" When Attempting To View Available Services For P6 Web Services (Doc ID 1293112.1)

Similar Messages

  • Database Web Service Installation

    Hi All,
    Using Oracle 10g. Trying for Oracle Web Service Installation(Database Web Service).
    Looking to implement 'Database Call-In' approach with 'Exposing a SQL Query or DML Statement as a Web Service' option.
    Gone through the Web Services Developer's Guide, but unable to grasp complete process from it.
    Can anyone help me in sharing, the complete requirements/Prerequisites that i should have for implementing this web service??
    Also how can i confirm whether my app server has OC4J JAX-RPC processing servlet, WebServicesAssembler in it??
    Dont have much clue regd this implementation. Want to know,learn more for doing this. Please let me know if any other info req for
    answering my questions.
    Thanks,
    Sandeep

    very helpful Rene..
    Sharing one which was found from Web Services Developer's Guide..
    http://download.oracle.com/docs/cd/B31017_01/web.1013/b28974/gettingstart.htm#BABHFFEG
    any other method available to develop Web service from SQL Query rather than using PL/SQL package??

  • A web service design issue with patterns

    Hello,
    I�d like to ask for your help in the following design issue:
    I need to create an email sending web service (with Axis). Only just one method which returns with an integer return code. This handles the following:
    - based on the given parameters gets the email addresses from an
    LDAP server (with netscape ldap for java)
    -     makes a cache from them (only after a timeout period will be the cache
    refreshed) (don�t know what tool to use for this)
    -     selects html templates which to be sent based on the given parameters
    -     sends emails with the appropriate templates (with Velocity)
    -     the whole process is logged (with log4j)
    I have to write the code as generic as possible. I know that some design pattern should be used for this. (some from GoF , and I know there exists design patterns specially created for web services as well).
    Could you enumerate me which patterns (and for what part of the program) would be the best choice to solve this problem? I have read through some books about patterns, but don�t have the knowledge to pick up the right one for a concrete problem like this..
    Thank you in advance,
    nagybaly

    Hello,
    I�d like to ask for your help in the following design
    issue:
    I need to create an email sending web service (with
    Axis). Only just one method which returns with an
    integer return code. This handles the following:Lots of responsibilities here. You would do well to break this up into several classes that you can test separately.
    I would also advise that you not embed all this in a servlet. Make a service that collaborates with several objects to accomplish the task and let the serlvet just call it.
    .> - based on the given parameters gets the email
    addresses from an
    LDAP server (with netscape ldap for java)I'd recommend Spring's LDAP module. Pretty terrific stuff.
    cache from them (only after a timeout period will be
    the cache
    refreshed) (don�t know what tool to use for
    this)Maybe EhCache or OsCache or something like that.
    -     selects html templates which to be sent based on
    the given parametersWhere does this come from? Certainly not the LDAP. A relational database? Write a DAO for the document template.
    -     sends emails with the appropriate templates (with
    Velocity)Have an e-mail sender service using Java Mail.
    -     the whole process is logged (with log4j)Easily done.
    I have to write the code as generic as possible. I
    know that some design pattern should be used for
    this. No pattern. There might be patterns, if you say that the DAOs to access the LDAP and RDB are patterns.
    Stop thinking patterns and start thinking objects.
    (some from GoF , and I know there exists design
    patterns specially created for web services as
    well).Nope.
    Could you enumerate me which patterns (and for what
    part of the program) would be the best choice to
    solve this problem? I have read through some books
    about patterns, but don�t have the knowledge to pick
    up the right one for a concrete problem like this..
    Thank you in advance,
    nagybalyYou haven't read them because they aren't there. Your problem is pretty specific, even if it's common.
    %

  • Removing xmlns from web service response issue (XSTL mapping)

    Hi XI experts.
    I'm having a very strange issue with a pamming program: It all started because the response from a 3rd party web service is coming with a "xmlns=http://....etc" in the document node and this was causing XI not to recognize the message.
    After reading most of the forum threads and with the help of other web resources, I was able to write a small XSLT program to remove this. The program seems to work perfectly: I can open the resulting XML document in IE, return it as a response to a test soapUI call, even load it all in "green" in the XI mapping test tool.
    But, when I feed the resulting message into the next mapping (XI mapping), only the Message Type node is produced at the other end!!! Not even an error message is issued. The same happens in the mapping test tool. Hoewver, I'm able to display the queues. I'm puzzled.
    This is my XSLT mapping, is there anything wrong with it?
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="*">
    <xsl:element name="{local-name()}">
    <xsl:for-each select="@*">
    <xsl:attribute name="{local-name()}">
    <xsl:value-of select="."/>
    </xsl:attribute>
    </xsl:for-each>
    <xsl:apply-templates/>
    </xsl:element>
    </xsl:template>
    </xsl:stylesheet>
    Thanks in advance.
    Carlos

    Hi Aamir,
    Thanks for your response. I will check it out.
    In the last 10 minutes or so I realized that the empty message is being produced because the first child node of the message is optional (0..1) and for some strange reason that source node mapped to it was not being recognized after the XSLT. I confirmed this by mapping this node to a constant. Then I restored the original mapping and now it's working - weird! It looks like something was messed up inside the XI mapping program.  I will continue testing however I am now off-site and have no connectivity via SOAPUI until Monday.
    Thanks.
    Carlos

  • How to include the NIWebAppServer.conf when building a web service installer in LV2010

    Hi all,
    I'm build a LabVIEW 2010 web service and creates a deployable setup installation as described in Web Services FAQ:
    http://zone.ni.com/devzone/cda/tut/p/id/7747#toc12
    but also would like to include my .conf file for the NI Application Web Server. The file is located in:
    C:\Program Files\National Instruments\Shared\NI WebServer\NIWebAppServer.conf
    This is where all settings (listening ports, SSL, users etc.) are configured.
    If I look in LabVIEW 2009 build instructions for web services:
    http://digital.ni.com/public.nsf/allkb/62B9C2D5C91EE8B28625778800609FF2?OpenDocument
    they include this file, but it is a new procedure in LV2010 (as seen in the top link) and I can't seem to get this conf file included and installed on the deployed system automatically for LV2010. Today, I must copy it manually.
    Any ideas of how to do this?
    Thanks,
    Mattias

    Having the same problem, even if pointing the installer to install the particular file, the installer will install its own some default file. Did you find any solution?
    /Carl

  • Web Service Response issue for some Requests

    I have a WebService deployed on Oracle Application Server and it's an HTTPS connection. I am facing a small issue and can't figure out
    what's going on. For each request there's a response returned. Sometimes the comsumer does not get the response back even though the request
    is successfully processed and response generated but some how it never makes it to the consumer.
    Here is the signature of the function:
    public Element parseData(Element data) throws RemoteException;
    --------------------------------------------------------------------------------And I can't figure out why a consumer does not receive a response back for some of the requests. Any ideas what might be wrong or how to
    debug this issue. Is there any place I can look to see for each request is a response going back. I don't know if it's related Network or
    App. Server and where to start to debug this. As looking at the logs of my Web Service I do see all the requests being processed and response
    being generated but some how it never makes it to the consumer. It normally takes arround 5 to 10 seconds to process each request and most
    of time multiple requests may be being processed.
    Any help is appreciated.
    Thanks

    Hi there.
    If the consumer of your service is a .NET client, it will silently ignore any response that is not formated as advertize in the WSDL and will return an empty object to the caller. As you are trying to use raw XML Element, it seams to be a potential explaination.
    If you can turn off SSL in your test environment, you may want to run a TCP sniffer tool, on the host where your server is running. You can setup a filter on the IP @ of the consumer or the TCP port of the service comsumed. I'll recommend you look at ethereal as it's a cross platform utility.
    Hope it helps.
    Eric

  • Query as a web service Sorting issue

    Hi All,
    We have designed an existing BI query as a web service but it seems to be ignoring the Sort order of different characteristics used (as defined in Bex Query Designer).
    Using the Context menu in QAAS and defining/managing the Sort is not working.
    Has anyone experienced such an issue and how to handle this?
    Thanks and Regards,
    Bansi

    Hi All,
    You can try this solution. It has something to do with the universe parameter, END_SQL.
    I implemented this as a work around and it solved our problem about the sorting issue with QAAWS.
    Here are the steps:
    1: Open the universe
    2. Ope File,  then Universe Parameter
    3. Click the parameter tab
    4. Scroll down until you see the 'END_SQL' entry. This entry is blank by default.
    5. Select END_SQL
    6. On the VALUE box, type: ORDER BY 1
    7. This will enable the REPLACE button. Click REPLACE
    8. Save the universe
    9 Test a query using 2 columns and view the SQL.
    You should see now the ORDER BY 1 inferred in the SQL statement.
    Voila!!!!
    Of course you can always add ORDER By 1,2,3 later if there's a need.
    Enjoy.....
    Ferdinand

  • MDM Web Service authentication issue. How to use ?

    Hi,
    I' am a Microsoft technology person I' am working on integrating SAP MDM 7.1 to SharePoint 2010 using MDM Web Services interface and consuming the same in .NET custom component.
    I tried the WS with "None" authentication and it worked great.
    I' am having issues understanding how HTTPAuthentication with SAP Logon ticket authentication works in MDM.
    Created the authentication enabled web service and while testing in NetWeaver WS Navigator, it throws me exception, not able to establish session with repository for user XYZ.
    Please help me with the following queries I have:
    1) How to test a authentication enabled web service in NetWeaver WS Navigator ? Do the user id/password needs to be set in the "Invocation Parameters" ? Link to any article etc will be appreciated.
    2) How to pass the MDM user credentials (or just the username) in the MDM web service in .NET code. I didn't see any parameter in the Client class constructor to pass the same, nothing related to that found in the code that gets generated on adding the service reference.
    As per the documentation on the MDM security, looks like a trust relationship also needs to be configured on MDM - allow.ip file entries.
    However first I want to understand how to pass this information in Web Services through code.
    SharePoint   -
    (1)--> SAP PI  -(2)--
    > SAP MDM                                             
    (integrated with Active Directory                        (Where Web services are deployed     (have its own user accounts)
    so logged in user is already authenticated)          and have its own user accounts)
    The trust relationship configuration could solve the problem of authentication marked in second hop (2) by registering the IP address of PI server.
    Please help me understand how would it work to solve the first hop (1) problem and what needs to be done.
    Thanks,
    Parvinder

    Thanks Gaurav.
    The link talks about setting up the Trust with MDM server.
    The code sample provided there has the following step where user name is being set and passed to MDM:
    Use  command to authenticate user session on trusted connection
           TrustedUserSessionCommand  tuscTrustedUser =
           new TrustedUserSessionCommand(mySimpleConnection);
           //  Set the user name to use
           tuscTrustedUser.setUserName(UsernameAsString);
           tuscTrustedUser.setSession(session);
           tuscTrustedUser.execute();
           session =  tuscTrustedUser.getSession();
    I want to understand how to do that for MDM Web Services.
    I didn't see any method accepting this user name while calling the web service method / creating client object.
    So that link is still missing.
    Appreciate if anyone can help me with that.
    This is for MDM 7.1
    Thanks,
    Parvinder

  • Web Services Integration issues on Oracle Web Service Example Page..

    The Oracle hosted pages for the Web Services Integration, all of the applications are dying when you try and run them. 1/2 of them are having ACL (Access Control List issues)..
    Don't know if this is because of the change-over to APEX 4.0 or a new version of teh database being used, just though Oracle should know and they MIGHT want to fix them..
    Thank you,
    Tony Miller
    Webster, TX

    Tony:
    Thanks for pointing that out. They should now all be fixed with the exception of the Amazon sample. Amazon changed their API some time ago to require a signature parameter, I blogged about this here: http://jastraub.blogspot.com/2009/10/rest-now-supported-in-flexwsapi-and.html.
    Regards,
    Jason

  • [Oracle Web Service Manager] Issues working with gateway

    Hello,
    Whenever we create a gateway which have a component id other then "C0003001" then we have to create its entry in "gateway-config-installer" and restart soa suite, Why its like that? Ofcourse we can not restart the soa suite on production.
    Moreover, we created a second gateway, it was assinged with id "C0003003" (first one was having if "C0003002") , also we created its entry in "gateway-config-installer" and restarted soa suite, then it was observed that services with gateway C0003003 are working but services with gateway idC0003002 have stopped working. Does this means that only one gateway can be active at a given time?
    Also on some developer machines, service urls provided by the gateway are not working (Page not found error occurs). What can be the possible reasons?

    Hai munir,
    I have some doubt on registering with the gateway and an registering the webservice. I think you have done the same.
    I specify my hostname and ports. I am working on Oracle SOA 10.1.3.3.0.
    Hostname: http://DWH-34316-K2.wipro.com or (10.118.70.181) Port: 7777
    Component Name: - user defined gateway name or what?
    Component type : - gateway
    Component URL : I have doubt on giving this In my case If I give like this is it correct. http://DWH-34316-K2.wipro.com:7777/gateway
    After this we will be registering a webservice.
    In that it will be asking the following details.
    service name : CallHelloWorld (In my case)
    service version: 1.0
    service description : user defined.
    WSDL URL : --> Here how we must want to give. I have given the wsdl taken from the Enterprise manager console. I have taken it while we test the web service we will find the service decription and I clicked it and taken that it is working one.
    http://dwh-34316-k2.wipro.com:7777/orabpel/default/CallHelloWorld/1.0?WSDL
    After I all this and click Next and It will go to the Http messenger page and in this page in URL column the same WSDL url given is auto populated and save and commit this.
    When I go to test page and paste the URL got from the Service WSDL Url and give submit query it is displaying the following error message.
    Failed to read WSDL from http://dwh-34316-k2.wipro.com:7777/gateway/services/SID0003017?wsdl:WSDL not found
    Please specify any other changes do I need make some changes in the server otherthan changing the Id in the gateway-config-installer.properties
    Can you help on this please. It is somewhat urgent.
    Regards,
    Mahes.

  • Web Service: Deploy: Issues

    Hi, I am trying out the basic tutorial 'Developing, Deploying and Managing Web Services Using JDeveloper and Oracle Application Server' located at http://www.oracle.com/technology/obe/obe1013jdev/ws/wsandascontrol.htm#t4
    I am getting a weird error when I try to deploy the WebService.Deploy to oc4jconn.
    This web service does not use any db connection. myjdev is configured to jdev and I can run other applications connecting to mysql. Any pointers will be great I am stuck with this error.
    Here is the full error stack:
    ---- Deployment started. ---- Oct 7, 2006 11:08:50 PM
    Target platform is Standalone OC4J 10g 10.1.3 (oc4jconn).
    Wrote WAR file to D:\jdevhome\mywork\TopDownContractDevelopment\GetDates\deploy\WebServices.war
    Wrote EAR file to D:\jdevhome\mywork\TopDownContractDevelopment\GetDates\deploy\TopDownContractDevelopment-GetDates-WS.ear
    Uploading file TopDownContractDevelopment-GetDates-WS.ear ...
    Application Deployer for TopDownContractDevelopment-GetDates-WS STARTS.
    Copy the archive to D:\Jdev10_1_3\j2ee\home\applications\TopDownContractDevelopment-GetDates-WS.ear
    Initialize D:\Jdev10_1_3\j2ee\home\applications\TopDownContractDevelopment-GetDates-WS.ear begins...
    Unpacking TopDownContractDevelopment-GetDates-WS.ear
    Done unpacking TopDownContractDevelopment-GetDates-WS.ear
    Unpacking WebServices.war
    Done unpacking WebServices.war
    Initialize D:\Jdev10_1_3\j2ee\home\applications\TopDownContractDevelopment-GetDates-WS.ear ends...
    Starting application : TopDownContractDevelopment-GetDates-WS
    Initializing ClassLoader(s)
    Initializing EJB container
    Loading connector(s)
    Starting up resource adapters
    Warning. Unable to set up connection factory to location TopDownContractDevelopment-GetDates-WS for a resource adapter in {1}
    application : TopDownContractDevelopment-GetDates-WS is in failed state
    Operation failed with error:
    Error occurred initializing connectors. Exception is: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : com.mysql.jdbc.Driver
    Deployment failed
    Elapsed time for deployment: 3 seconds
    #### Deployment incomplete. #### Oct 7, 2006 11:08:53 PM

    I had the same problem and found the issue.  This post is to help anyone else that runs across it.
    If you get to this point you probably did the following:
      Set up a deployable proxy DC.
      Added all the entries to the various xml files.
      Had a problem with deployment of the ear due to the reference type being set to 'hard'.
      Changed the reference type to 'weak' to get the deployment to work.
    The Reference type really needs to be set to 'hard'.
    The issue is that the Reference target name needs to be set to the deployable proxy name.  For example, if the proxy DC is named 'testprxy' then the Reference target needs to have this name.  If you are using NWDI tracks (not a local DC), then the name will include the SC name (ex. abc~testprxy where abc is the SC name).
    Also, the provider name should be the same as the vendor name used for the DC.
    If the proxy DC full path name is: com.myco.abc.proxies.TestProxy -
    Summary of names and paths to use for the various entries:
      In ejb-j2ee-engine.xml - Server component JNDI name
        /wsclients/proxies/myco.com/abc~testprxy/com.myco.abc.proxies.TestProxy
      In application-j2ee-engine.xml - Reference target
        abc~testprxy  (or just testprxy if it is a local DC)
    Use any name for the Application local JNDI name in the ejb-j2ee-engine.xml.  But this is the only place in the xml files where this name is used.
    If you use MyTestProxy as the Application local JNDI name, then the reference in code for the context lookup would be 'java:comp/env/MyTestProxy'.
    Just remember local DCs don't have an SC name to include (which was 'abc~' in the examples above).
    When in doubt about the JNDI name (full path), use Visual Administrator to look at the JNDI registry (start at wsclients which is at the bottom of the list).
    Hope this helps.
    -Cindy

  • Secured Web Service - security issue

    Hi,
    I have successfuly created Web Services Data Control, with authentication - userid/password (WSDL uses https).
    I have created a simple page with Search form and ADF read-only table for results.
    I'm getting following error when starting the page / executing the search:
    <Utils> <buildFacesMessage> ADF: Adding the following JSF error message: Client hat SOAP-Fehler vom Server erhalten: Error on verifying message against security policy Error code:1000
    oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client hat SOAP-Fehler vom Server erhalten: Error on verifying message against security policy Error code:1000
    =====
    How can I verify content in <soapenv:Header><wsse:Security ........> tags in the message sent to SOAP server? Is there a way how can I configure generated Header (e.g. Password Type, or xmlns:wsu ... )?
    Thanks a lot for support,
    DanielF
    Edit: It seems, that Header is not composed properly (Security Subject: anonymous):
    Target URL -- http://localhost:7101/FSS_Demo-ViewController-context-root/faces/WebServices2.jspx
    <JAXWSMessageLogger> <errorLogException> Error while invoking endpoint "https://172.22.30.12:8114/DV900/AddressBookManager" from client; Security Subject: anonymous
    <WebServiceConnectionMessages> <debugExecuteFailure> Failed to execute a SAAJ interaction.
    oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client hat SOAP-Fehler vom Server erhalten: Error on verifying message against security policy Error code:1000
    How can I control the Header composition?

    Dimitar,
    thanks a lot for response, this is something new for me.
    When I edit Data Control Policies, JDeveloper throws following error:
    Mar 13, 2012 5:43:23 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    SEVERE: The policy manager repository path "C:\Dokumente%20und%20Einstellungen\fasda\Anwendungsdaten\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\oracle\store\gmds" does not contain any valid directories.
    java.lang.IllegalArgumentException: WSM-04694 : An invalid directory was provided to connect to a file-base MDS repository.
    When I ignore this error, "Edit Data Control Policies" window is displayed. There are no selected policies in the Security Tab.
    ====
    Edited by: DanielF on 13.03.2012 09:51
    Web service expects header in following format:
    <soapenv:Header>
    <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken wsu:Id="UsernameToken-1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:Username>username</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    How shall I set up the Control Policies?
    Thanks a lof for support,
    Daniel

  • BPEL process web service security issue

    Hi guys,
    I could use a web service based on BPEL process from local machine, but when I am calling the same service from one of the client machines i get following type of error
    WARNING: Unable to connect to URL: http://server1:7777/orabpel/default/SendTransfer/1.0 due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: server1:
    23:14:16 HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed
    any help is appreciated

    In your service url http://server1:7777/orabpel/default/SendTransfer/1.0 , the "server1" should be a proper IP address recognized over your network. Otherwise you can add this name with corresponding IP address in hosts file entry.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Mailbox server web services proxy issue

    One of our 3 mailbox servers gives us an error when mailbox databases are mounted on it.
    All web services are not functioning properly, there is an event log error for each web service web.config file saying file not found, If I open each web.config file and look at the line in question they all point to:
    <assemblies>
            <add assembly="Microsoft.Exchange.Security, Version=15.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
          </assemblies>
    Does anyone know what this is pointing at or what my server is missing?
    It is Exchange 2013 Sp1 RU7 as are my other 2 mbx servers which work fine...
    all pre-req's are installed as I double checked and no difference between the 3 mbx servers that I can see...
    ***Don't forget to mark helpful or answer***

    Here is the IIS error:
    === Pre-bind state information ===<o:p></o:p>
    LOG: DisplayName = Microsoft.Exchange.Security, Version=15.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35<o:p></o:p>
    (Fully-specified)<o:p></o:p>
    LOG: Appbase = file:///C:/Program Files/Microsoft/Exchange Server/V15/ClientAccess/Autodiscover/<o:p></o:p>
    LOG: Initial PrivatePath = C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\Autodiscover\bin<o:p></o:p>
    Calling assembly : (Unknown).<o:p></o:p>
    ===<o:p></o:p>
    LOG: This bind starts in default load context.<o:p></o:p>
    LOG: Using application configuration file: C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\Autodiscover\web.config<o:p></o:p>
    LOG: Using host configuration file: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet.config<o:p></o:p>
    LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.<o:p></o:p>
    LOG: Post-policy reference: Microsoft.Exchange.Security, Version=15.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/autodiscover/b455e468/cbaac37d/Microsoft.Exchange.Security.DLL.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/autodiscover/b455e468/cbaac37d/Microsoft.Exchange.Security/Microsoft.Exchange.Security.DLL.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Program Files/Microsoft/Exchange Server/V15/ClientAccess/Autodiscover/bin/Microsoft.Exchange.Security.DLL.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Program Files/Microsoft/Exchange Server/V15/ClientAccess/Autodiscover/bin/Microsoft.Exchange.Security/Microsoft.Exchange.Security.DLL.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/autodiscover/b455e468/cbaac37d/Microsoft.Exchange.Security.EXE.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/autodiscover/b455e468/cbaac37d/Microsoft.Exchange.Security/Microsoft.Exchange.Security.EXE.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Program Files/Microsoft/Exchange Server/V15/ClientAccess/Autodiscover/bin/Microsoft.Exchange.Security.EXE.<o:p></o:p>
    LOG: Attempting download of new URL file:///C:/Program Files/Microsoft/Exchange Server/V15/ClientAccess/Autodiscover/bin/Microsoft.Exchange.Security/Microsoft.Exchange.Security.EXE.<o:p></o:p>
    ***Don't forget to mark helpful or answer***

  • Accessing BPEL processes via a proxy web service performance issues

    Hello,
    I have more BPEL processes implemented, each such a process implementing business functionality in a certain domain (generally, a domain has more business processes).
    The request was to provide a single web service for each domain. It means that all the business methods (processes) in the same domain should be accessed through the same web service. This request doesn't make possible to expose the BPEL processes themselves as web services that could be directly consumed by different clients of the application.
    The alternative will be to implement the "domain" web services through a Java class, for instance. With this approach, the Java based domain web services will expose the needed business methods to the clients. And the Java class will get the request input parameters and will call the corresponding BPEL process via SOAP. This scenario would be fine, but... this approach would imply a supplementary marshalling/unmarshalling process at the domain web service level. The data returned by the BPEL processes could be very large and in such a situation the Java based domain web service will introduce an important performance drawback.
    Is there any other solution to this case that will allow the using of a "proxy" domain web services that will not introduce any important drawback via marshalling/unmarshalling?
    Many thanks in advance!
    Regards,
    Marinel

    Hello,
    First, thank you Sandor for your answer.
    I understand that it is possible to create a BPEL process that exposes multiple operations/messages. This would be exactly what I need: a single process (web service) that will expose many operations. Could anyone, please, point me to such an example?
    So far I thought that there is possible to have only one operation exposed with a BPEL process, what is delimited between the receive/reply blocks (in the synchronous case).
    Regards,
    Marinel

Maybe you are looking for

  • How come full screen exclusive mode is so slow?

    Hi. I am currently working on customer facing point-of-sale application. This application has a lot of animation going on and so needs quite speedy graphics performance. When I first investigated this it looked like I could do it in pure Java 2D whic

  • Tv@nywhere a/d no composite video

    After getting my tuner working on win7 i still get no image on my composite. I tried fiddling with brightness, hue, contrast sliders, the way i got my tv tuner working, but this isn't working for the composite channel. My signal is fine, so if anybod

  • Can't change tnsnames.ora

    Hi Everybody, Am using 10gXE , while trying to add new entry to tnsnames.ora or init.ora it throws a exception that don't have enough privellege.Am having the database in my local system.How to handle the sitution .please help. Thanks

  • ITunes Movies Disappearing

    I am in the process of migrating all of my iTunes content to a new external device (it was previously on a smaller external device) when I noticed something. Several of my purchased movies showed up as "in the cloud" (ie I hadn't downloaded them) whe

  • My Screen Keeps Going to Sleep after restore from Time Capsule

    This is the weirdest thing. I've had a new had drive put in, so I restored the system from Time Capsule. Now for some weird reason the display keeps going to sleep. I can bring it back up with ctrl-shift-eject, but two seconds later it goes back off.