SOAP Error in Profile Source

I've written a profile service to import employee information from our HR system to populate user profiles.
When I run the Profile Source Job, I'm getting this error:
4/14/04 13:16:48- The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed.4/14/04 13:16:48- *** Job Operation #1 failed: The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed. (0x4)4/14/04 13:16:48- Done with job operations.4/14/04 13:16:48- The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed.
Does this look familiar to anyone?
Thanks,Wes [email protected]

Joseph, Akash--Let me answer your questions:
Coding is set to Doc Literal for .netSoap timeout is 30 seconds (this is an immediate error)I can access the web service from the automation serverI'm using the Remote Server Basic AuthenticationHaven't gone the TCPTrace route yet.I run Spy from the portal server 98% of the time-- I often forget to run it on the remote servers. When I ran Spy from the Automation Server, it looks like there is SOAP exception being thrown by the remote Profile Web Service when the Initialize call is made:
3342 04-15 10:37:16 Warn SOAP 6092 6084 Envelope.cpp(105) *** COM exception caught *** Error info: IDispatch error #19876 (0x80044fa4): [SOAP fault: faultcode='soap:Server' faultstring='System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.IO.FileNotFoundException: File or assembly name openfoundation, or one of its dependencies, was not found.
File name: "openfoundation"_   at Plumtree.Remote.Profile.Soap.ProfileProviderSoapBinding.Initialize(PropertyListArray PropertyList, NamedValueHolder ProfileSourceInfo, NamedValueHolder AuthSourceInfo)
=== Pre-bind state information ===LOG: DisplayName = openfoundation, Version=2.0.9.8318, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5(Fully-specified)LOG: Appbase = [url=file:///C:/Inetpub/wwwroot/Abra]file:///C:/Inetpub/wwwroot/AbraLOG: Initial PrivatePath = bin_Calling assembly : xpcommon, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null._===
LOG: Publisher policy file is not found.LOG: No redirect found in host configuration file (C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet.config).LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.LOG: Post-policy reference: openfoundation, Version=2.0.9.8318, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/TemporaryASP.NET Files/abra/16123dc4/9c23a487/openfoundation.DLL.LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/TemporaryASP.NET Files/abra/16123dc4/9c23a487/openfoundation/openfoundation.DLL.LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/Abra/bin/openfoundation.DLL.LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/Abra/bin/openfoundation/openfoundation.DLL.LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/TemporaryASP.NET Files/abra/16123dc4/9c23a487/openfoundation.EXE.LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/TemporaryASP.NET Files/abra/16123dc4/9c23a487/openfoundation/openfoundation.EXE.LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/Abra/bin/openfoundation.EXE.LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/Abra/bin/openfoundation/openfoundation.EXE. --- End of inner exception stack trace ---'] (105,Envelope.cpp)
Since we've identified a SOAP exception, what do I need to do next?
Thanks all--Wes

Similar Messages

  • Unable to sign SOAP Kerberos Token Profile message

    I'm constructing a SOAP Kerberos Token Profile message in Java 1.6 and am unable to sign the BinarySecurityToken to send to a .NET service.
    My aim is to achieve SSO from the Windows Desktop for the user that has already logged on using a Java Client.
    (i.e. I don't want to use JAAS to ask the user to login again).
    Based on my reading so far, I'm using the javax.security.auth.useSubjectCredsOnly set to false to force the use of the underlying mechanism (in this case the windows credential cache).
    I've also configured the jaas.conf as follows:
    com.sun.security.jgss.initiate {
    com.sun.security.auth.module.Krb5LoginModule required debug=true useTicketCache=true doNotPrompt=true;
    My problem is this, in order to sign the BinarySecurityToken element, which contains the Base64 encoded Kerberos service ticket, I need to gain access to the shared session key which is embedded in the service ticket.
    Some other posts, in particular this (excellently written) one,
    http://thejavamonkey.blogspot.com/2008/05/hacking-jvm-kerberos-libraries-session.html
    demonstrate how to do this, by this assumes the use of a JAAS subject and takes advantage of the feature that the GSS-API copies the session key to the private credentials of the Subject when initiating a security context.
    However I cannot use storekey=true in combination with the above configuration, as the excerpt from the Krb5LoginModule states:
    storeKey=true useTicketCache = true doNotPrompt=true;;
    This is an illegal combination since storeKey is set to true but the key can not be obtained either by prompting the user or from the keytab.A configuratin error will occur.
    I note that when I step through the code, the session key does indeed seem to be available on the gssCredential object as a property:
    gssCredential->tempCred->sessionKey->keyBytes[16]
    which seems to be the expected session key size 16 * 8 = 128 (Basic128)
    However I cannot find any GSS API method that can obtain this key! I note another reference from the Oracle API:
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e10678/oracle/security/xmlsec/wss/kerberos/package-summary.html
    In particular this handy method:
    <ul><li>Sign/Encrypt using the kerberos session key
         There is no public API to get the session key, so we have provided a utility method.
         SecretKey sessionKey = KerberosUtils.getSessionKey(gssContext);
         WSSEncryptionParams eParams = new WSSEncryptionParams(XMLURI.alg_tripleDES_CBC, sessionKey, null, null, str);
         WSSecurity.encryptNoEncKey(...)
    </li>
    </ul>
    This looks like exactly what I'm after however this API seems related to Oracle 11g so I'm not sure if it is:
    - open source
    - if this is the intended usage by the GSS API developers?
    Any help on this point would be very greatly appreciated!
    Edited by: jas71 on Aug 4, 2010 8:49 AM

    Validation of the signature on the .NET server is failing with the following error:
    *The key size requirements for the 'Basic128' algorithm suite are not met by the
    'System.IdentityModel.Tokens.KerberosReceiverSecurityToken' token which has key
    size of '64'*
    I'm using the session key to create the signature value as follows:
    private static String generateSignatureValue(byte[] sessionKey, String cipherText) {
    final String mode = "HmacSHA1";
    final SecretKey key = new SecretKeySpec(sessionKey, mode);
    Mac mac;
    try {
    mac = Mac.getInstance(mode);
    mac.init(key);
    byte[] signatureValueBytes = mac.doFinal(cipherText.getBytes());
    return new String(Base64.encodeBase64(signatureValueBytes));
    The error is surprising given that the session key used in this method is actually 16 bytes long and would appear to meet the key size requirements (16 * 8 = 128 bit)?
    This appears to be the last piece in the puzzle, signing the Kerberos Token Profile SOAP request.

  • PWS CPTRAPProvider::Initialize SOAP error

    I have created a java PWS(with SCI page editor for the profile source) that reads a user info property from a sqlserver table. I have cerated the appropriate objects, i.e. remote server, PWS, a remote source. I get the folowing when running the job:
    8/2/04 16:51:55- *** Job Operation #1 of 1: Profile source (for importing information about users) 'Staples PS Profile Source' [Run as owner 'Administrator']8/2/04 16:51:56- The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed.8/2/04 16:51:56- *** Job Operation #1 failed: The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed. (0x4)8/2/04 16:51:56- Done with job operations.8/2/04 16:51:56- The Profile Source encountered an error (0x80004005): CPTRAPProvider::Initialize, PWS SOAP call failed.
    Any help in troubleshooting would be greatly appreciated. Do I need to install service station and try to debug this? This on my desktop with the Portal and the EDK Tomcat instances on the same machine. I didn't encounter any errors while deploying the PWS and SCI page.
    Thanks.
    Vanita
    Staples

    Vanita,
    Ralated question: are you using Plumtree Service Station to help develop/debug/test your custom PWS? If not, I can send you download instructions.
    Kind Regards,
    Lars Van Dam ([email protected])
    ------- Vanita Chawla wrote on 8/5/04 7:51 AM -------Thanks Akash.
    I am developing in Java. I found out what the problem was. There was an issue with the url in the web service. Now I have the job finally succeeding but it is not pulling in any properties. Here is the output of the job log and my PWS code. Additionally, I think I need to use the Portal user id in the sql statement. However the remedy code is using the UniqueName. What is UniqueName and how si it different from the User Name? Thanks for your help.
    8/5/04 10:40:15- Starting to run operations (1 total) for job 'Staples PS PWS Job'. Will stop on errors. (PID=4328)8/5/04 10:40:15- *** Job Operation #1 of 1: Profile source (for importing information about users) 'Staples PS Profile Source' [Run as owner 'Administrator']8/5/04 10:40:15- The Profile Source is processing the members of group id -1.8/5/04 10:40:15- Profile Source is skipping user 'Administrator' because the Profile Source Provider returned no valid attributes.8/5/04 10:40:15- The Profile Source is processing the members of group id -200.8/5/04 10:40:15- Profile Source is skipping user 'gm01' because the Profile Source Provider returned no valid attributes.8/5/04 10:40:15- The Profile Source is processing the members of group id -201.8/5/04 10:40:15- Profile Source is skipping user 'joe12' because the Profile Source Provider returned no valid attributes.8/5/04 10:40:15- The Profile Source is processing the members of group id -203.8/5/04 10:40:15- Profile Source is skipping user 'test1' because the Profile Source Provider returned no valid attributes.8/5/04 10:40:15- The Profile Source is processing the members of group id -204.8/5/04 10:40:15- Profile Source is skipping user 'test2' because the Profile Source Provider returned no valid attributes.8/5/04 10:40:15- *** Job Operation #1 completed: The Profile Source processed 0 groups and 5 individual users, 5 unique users in all. The profiles of 0 users were updated. 0 users were skipped because their profiles were unchanged, and 5 users were skipped because no valid attributes were found. (0x3)8/5/04 10:40:15- Done with job operations.PWS Code:
    packagecom.staples.pws;
    importcom.plumtree.remote.ServiceException;
    importcom.plumtree.remote.profile.*;
    importcom.plumtree.remote.util.*;
    importcom.staples.sql.*;
    importjava.sql.*;
    publicclassStaplesPSPWS implementsIProfileProvider, IUser
    privateString[] m_colPropertyList;
    privateintm_iUserID;
    privateString m_sUserName;
    privateString m_sUniqueName;
    privateConnection m_Conn;
    privateNamedValueMap m_valueMap;
    publicvoidinitialize(String[] PropertyList, ProfileInfo ProfileSourceInfo) throwscom.plumtree.remote.ServiceException
    m_colPropertyList = PropertyList;
    m_valueMap = (NamedValueMap) ProfileSourceInfo;
    publicString getGlobalSignature() throwscom.plumtree.remote.ServiceException
    returnnewjava.util.Date().toString();
    publicIUser attachToUser(intUserID, String LoginName, String UniqueName, String LastSignature) throwscom.plumtree.remote.ServiceException
    m_iUserID = UserID;
    m_sUserName = LoginName;
    m_sUniqueName = UniqueName;
    returnthis;
    publicvoidshutdown() throwscom.plumtree.remote.ServiceException
    m_colPropertyList = null;
    publicString getUserSignature() throwscom.plumtree.remote.ServiceException
    returnnewjava.util.Date().toString();
    publicUserPropertyInfo getUserProperties() throwscom.plumtree.remote.ServiceException
    NamedValue[] props = newNamedValue[m_colPropertyList.length];
    try
    // get the SQL COnnection
    m_Conn = DatabaseHelper.getConnection(m_valueMap);
    Statement stmt = m_Conn.createStatement();
    ResultSet results = stmt.executeQuery( "select EmployeeID from PS_PB_Lookup_Test WHERE NTID=" + m_sUniqueName) ;
    if(results.next())
    for(intiCounter=0; iCounter < m_colPropertyList.length; iCounter++)
    if(m_colPropertyList[iCounter].toUpperCase().equals("EmployeeID") )
    props[iCounter] = newNamedValue(m_colPropertyList[iCounter], CheckForSQLNull(results.getString("EmployeeID")));
    else
    props = newNamedValue[0];
    stmt.close();
    m_Conn.close();
    catch(SQLException se)
    thrownewServiceException("There was an error with the SQL process when trying to obtain the profile information: "+ se.getMessage());
    catch(Exception e)
    thrownewServiceException("There was an error setting the profile properties into the NamedValue object: "+ e.getMessage());
    returnnewUserPropertyInfo(props);
    *Methodcheckstoseeifavalueisnull,ifitisthenitreturnsablankstring
    *otherwisethePWSwillfailonthereturn.
    *@paramsValue
    *@return
    privateString CheckForSQLNull(String sValue)
    if(null== sValue)
    return"";
    else
    returnsValue;

  • SOAP error!! while activating or running an existing Adobe form

    Hi,
    I am working on Adobe forms in ECC6.0 server.
    I am getting a SOAP error while I run existing forms or trying activating a Z* form.
    <i>Error: ADS: SOAP Runtime Exception: CSoapExceptionTransport :(100101)</i>
    I am trying to run an existing form in 800 client. It is running fine in 001 client.
    ADS installed on 001 client but basis team is not able install it on 800 client.
    How to install ADS on 800 client also. Is it a problem with ADS installation??
    Thanks in advance.
    Thanks,
    Sreekanth Gollamudi

    Pradeep,
    You are right. This time I could bind the context from my interface (even though it was ABAP based).
    I have one quick one for you - you mentioned earlier that when we embed an existing form into Web. View, we cannot have an Interactive form even when we check the 'enabled' property. Can you throw more light onto this pls?
    The runtime error that i am encountering now says :
    Adobe Processing Exception: PDF is not interactive. Data can be only imported into Interactive forms.
    the source text of error is:
    get result
    m_pdf_object->get_document ( importing pdfdata = pdf ).
    catch cx_fp_exception into lr_fpexc.
    raise exception type cx_wd_general
    exporting
    previous = lr_fpexc
    and this exception is not caught ! I am still lost
    thanks again for your help!
    Liz

  • SOAP  - XI - SOAP Error

    Hi,
    I am working on a scenario where a SOAP Client ( XMLSPY) sends a request to XI and XI forwards it to a web service and returns the result back to Soap Client. I am using SOAP Adapter at outbound and inbound. 
    I have done the following steps:
    1. imported the WSDL for the web service.
    2. created MI based on the WSDL.
    3. Configured the agreements and determinations.
    4. Generated WSDL based on the configuration objects in ID.
    5. Called my WSDL in XMLSPY client.
    6. I am asked to login to the XI system.
    7. I get an error message back in XMLSPY:
    <?xml version="1.0"?>
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Body>
              <SOAP:Fault>
                   <faultcode>SOAP:Server</faultcode>
                   <faultstring>Server Error</faultstring>
                   <detail>
                        <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                             <context>XIAdapter</context>
                             <code>DeliveryException</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: QName is 'xmlns', but URI is not 'http://www.w3.org/2000/xmlns/' in the qualified name, 'xmlns'
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onTransmit(XIEventHandler.java:457)
         at com.sap.aii.af.ra.ms.impl.core.queue.CallConsumer.onMessage(CallConsumer.java:125)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:512)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:74)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:141)
              ]]></text>
                        </s:SystemError>
                   </detail>
              </SOAP:Fault>
         </SOAP:Body>
    </SOAP:Envelope>
    The message monitoring shows:
    2006-04-03 11:37:37 Success SOAP: request message entering the adapter
    2006-04-03 11:37:40 Success The message was successfully received by the messaging system. Profile: XI URL: http://diamond:50500/MessagingSystem/receive/AFW/XI
    2006-04-03 11:37:40 Success Using connection AFW. Trying to put the message into the request queue.
    2006-04-03 11:37:40 Success Message successfully put into the queue.
    2006-04-03 11:37:40 Success The message was successfully retrieved from the request queue.
    2006-04-03 11:37:40 Success The message status set to DLNG.
    2006-04-03 11:37:40 Success Delivering to channel: SOAP_RECEIVER_ADAPTER
    2006-04-03 11:37:40 Success SOAP: request message entering the adapter
    2006-04-03 11:37:42 Error SOAP: error occured: org.w3c.dom.DOMException: QName is 'xmlns', but URI is not 'http://www.w3.org/2000/xmlns/' in the qualified name, 'xmlns'
    2006-04-03 11:37:42 Error Exception caught by adapter framework: QName is 'xmlns', but URI is not 'http://www.w3.org/2000/xmlns/' in the qualified name, 'xmlns'
    and it also shows:
    Time Stamp Status Description
    2006-04-03 11:37:37 Success SOAP: request message entering the adapter
    2006-04-03 11:37:40 Success The message was successfully received by the messaging system. Profile: XI URL: http://diamond:50500/MessagingSystem/receive/AFW/XI
    2006-04-03 11:37:40 Success Using connection AFW. Trying to put the message into the request queue.
    2006-04-03 11:37:40 Success Message successfully put into the queue.
    2006-04-03 11:37:40 Success The message was successfully retrieved from the request queue.
    2006-04-03 11:37:40 Success The message status set to DLNG.
    2006-04-03 11:37:40 Success Delivering to channel: SOAP_RECEIVER_ADAPTER
    2006-04-03 11:37:40 Success SOAP: request message entering the adapter
    2006-04-03 11:37:42 Error SOAP: error occured: org.w3c.dom.DOMException: QName is 'xmlns', but URI is not 'http://www.w3.org/2000/xmlns/' in the qualified name, 'xmlns'
    2006-04-03 11:37:42 Error Exception caught by adapter framework: QName is 'xmlns', but URI is not 'http://www.w3.org/2000/xmlns/' in the qualified name, 'xmlns'
    The message I am sending to the XI is :
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <SOAP-ENV:Body>
              <m:VerifyAddress xmlns:m="http://www.webservicex.net">
                   <m:City>Plano</m:City>
                   <m:State>TX</m:State>
                   <m:Zip>75024</m:Zip>
              </m:VerifyAddress>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    There is some URI conflict in both the adapters. They expect some URI format which it is not getting. I dont understand where the problem is.
    Can anyone help?
    Thanks,
    Shubha.

    Hi,
    I think namespace in the URL is conflicting somewhere.
    Just check with this blog-
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    /people/sap.user72/blog/2006/01/16/xi-propagation-of-meaningful-error-information-to-soap-client
    Hope this helps,
    Regards,
    Moorthy

  • How to view body of SOAP error (in Java)

    I'm trying to track down the source of a "Server" error I keep getting back when trying to invoke Web Services from Java code. I can't figure out how to view my SOAP response to get the details of the error message. So all I have to work with now is "javax.xml.rpc.soap.SOAPFaultException: Server". I created the Web Service endpoint in JDeveloper by loading the .wsdl file and selecting "Generate Web Service Proxy" - So I can't view my SOAP message/response - I just call the 'accountInsertOrUpdate' method.
    Should I expect the SOAP body to have a more detailed error as to what is causing the 'Server' error?
    Does anybody know of a method where I can view the SOAP body being sent out and received?
    I consistently get this Server error when trying to call any Oracle CRM On Demand method (about 2-3 times in a row) and then the method call works fine - no changes on my side (it is just in a loop to retry if a Server error is encountered). (If I view the Web Service Utilization in CRM On Demand - it doesn't show any of the 'Server' errors - only the successful login, method call, and logout.
    Any ideas would be greatly appreciated - Thanks!
    Brian

    I just figured out how to view the body of the SOAP error. (I just needed to cast the Exception as a SOAPFaultException to view the details).
    This is the error I consistently get: Internal Error: Session is not available. Aborting. (SBL-ODU-01006)
    So now my question - has anybody else run into this?
    I log in - get my session id. Try to call a method and get (2 or 3 times in a row) this 'Session not available' error and then it works. I try and make another method call and get 2 or 3 more 'Session not available' errors.
    I thought it might be a timing issue (where I am making too many requests/second) so I added a little 'sleep' time between method calls with no difference in response.
    Ideas?

  • Broker Error : type="subscribe" source="statement" info="invalid"

    i ran these on the database
    use DB
    GRANT CREATE PROCEDURE TO USER
    GRANT CREATE QUEUE TO USER
    GRANT CREATE SERVICE TO USER
    Use DB
    GRANT SUBSCRIBE QUERY NOTIFICATIONS TO USER
    Use DB
    GRANT RECEIVE ON QueryNotificationErrorsQueue TO USER
    ALSO ENABLE_BROKER
    this is the query
    select column(char(12) FROM   dbo.table
    running a profile i get this error
    type="subscribe" source="statement" info="invalid"
    I've looked here
    http://msdn.microsoft.com/en-us/library/ms189308.aspx
    and here
    http://msdn.microsoft.com/en-us/library/aewzkxxh(VS.80).aspx
    can't figure this out....drive'n me crazy
    it's just on this database...i can get it to work on other databases

    this is the query
    select column(char(12) FROM   dbo.table
    running a profile i get this error
    type="subscribe" source="statement" info="invalid"
    It seems that the syntax of SELECT statement is incorrect, which should be like "SELECT column_name [,column_name2] FROM dbo.table". Please let me know if I am missing something here.Best Regards
    Alex Feng | Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • I am trying to install livecycle trial version, but i get Error 13:11 Source file not found

    Why do they even offer a free trial version of livecycle es4,  when its obviously not free??????
    i have tried from two different computers, windows 7 and windows 8, and before it can finish installing,
    a messsage pops up saying Error 13:11 Source file not found verify file exsist.  what does that even mean?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I am trying to install adobe livecycle designer es4 trial version on my computer and i keep getting the message Error 13.11 Source file not found: c:\  verify that the file exist. I have tried to install on both windows 7 and windows 8 and i still get the

    error 13.11 Source file not found verify that the file exsist

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Report Generation Toolkit (Word) : How to use correctly bookmark and cross-reference without "Error! Reference source not found"

    Hi,
    I try to generate a report using a template. In my template I use some cross-reference to refer to one bookmark. For exemple in the first page I created a bookmark for my name and in the header I created a cross-reference refer to my name. The problems is when I run my VI the bookmark actualise perfectly but the cross-reference refer to the bookmark can't actualise with the same value and generates an error : "Error! Reference source not found".
    Can somebody help me please!
    Nki
    Solved!
    Go to Solution.
    Attachments:
    01.jpg ‏72 KB

    Hi,
    When i create the word template, the bookmaks and the cross-reference referred to the bookmark update correctely. The problem is when I try to change the bookmark using "report generation from template vi" the bookmark change but not the cross-reference and the error generated is "Error! Reference source not found". 
    I make coople reasherch and i think they have no solution for this because : "if the text in a heading referred to in a cross-reference is revised, the cross-reference to the heading may no longer work" (http://office.microsoft.com/en-us/word-help/troubleshoot-cross-references-HP005189368.aspx).
    To "resolved" this problem I create an other bookmark in the template who have the same value white the principle bookmark.   
    I use Labview 2011 and Micosoft office 2010.

  • Costing Run Error: No Valid Source of Supply

    Hi Experts,
       I am new to Costing,
        While executing Costing Run for a matrial ABC in plant XXX with a Costing Run 111, I get an error No valid source of supply could be found
    but when I run the Costing Run for Same material for sam plant with different Costing Run It gets executed properly.
    I have read the thread related to it where it is giving reference to note 713111, 499699 and 422926 but there is no check for Source List in Material master.
    Regards,
    Rajdeep Rane.
    Edited by: Rajdeep Rane on Jul 24, 2008 1:30 PM

    Rajdeep
    Use OKKN as Jigar says.  
    Select the costing variant that you are using and then click on "valuation variant"
    Look at the tab for subcontract - this will show what the costing variant is useing to creat cost estimates with.
    Your options for subcontracting are:
    2  Effective Price from Quotation Without Fixed Costs
    3  Net Quotation Price
    4  Gross Quotation Price
    5  Effective Price from Quotation
    6  Effective Price from Purchase Order Without Fixed Costs
    7  Net Purchase Order Price
    8  Gross Purchase Order Price
    9  Effective Price from Purchase Order
    If your material has a Special Procuremnet key 30 - then one of these strategies has to be used.

  • Lync 2013: PowerPoint or whiteboard sharing not working (Error ID 3110 (source ID 243). )

    Hi
    When i try to share PowerPoint or whiteboard i am getting an error "An error occurred while presenting. when contacting your support team, reference error ID 3110 (source ID 243).  Office Web Apps (WAC) is installed.
    Desktop sharing and Application sharing is working.
    Please help me to resolve this issue.

    Desktop sharing and Application sharing is working properly.
    But When i try to share PowerPoint or whiteboard i am getting an error "An error occurred while presenting. when contacting your support team, reference error ID 3110 (source ID 243)."
    I am also getting following events:
    A Create Conference request sent to an Mcu was rejected. It will be retried but if this error continues to occur conferencing functionality will be affected.
    Mcu: https://h-lr-fe01.hec.local:444/liveserver/datamcu/ Conference: sip:[email protected];gruu;opaque=app:conf:focus:id:4FQLSKMH Error: otherFailure
    Cause: Overloaded or incorrectly functioning MCU.
    Resolution:
    Ensure that the Mcu is functioning correctly.
    Microsoft Lync Server 2013, Master Replicator Agent service encountered an error while accessing a file share and will continuously attempt to access this file share until this issue is resolved. While this condition persists, replication to replica machines
    might not occur.
    IO failure occurred for Path=\\hc.local\LyncFileStore\1-CentralMgmt-1\CMSFileStore\xds-master\working\replication\tmp. Exception=Access to the path '\\hc.local\LyncFileStore\1-CentralMgmt-1\CMSFileStore\xds-master\working\replication\tmp\9a934ea7-8eac-4cdf-af09-c019bacf78b0'
    is denied..
    Cause: Possible issues with file share permissions. This can occur if the computer hosting the file share has outdated cached credentials for the computer that is trying to access the file share.

  • How can I get a SOAP Error message in ABAP ?

    Dear all.
    I'm trying to get SOAP Error message during XI Interface.
    I've got an Error ( T-code : sxi_monitor ) and I need to get the Error message and write to screen.
    I used
    CATCH CX_AI_APPLICATION_FAULT.
    CATCH CX_AI_SYSTEM_FAULT.
    but couldn't get the error message.
    The Error occured as below.
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'ZTSD0030' (structure 'stmt1'): java.sql.SQLException: FATAL ERROR: Column 'ORDER' does not exist in table 'ZTSD0030'</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    I exactly need 'BOLD' style message.
    Any help is appreciated.
    Thanks!

    Hi,
      This is an application fault,
      error log clearly saying that''ORDER' does not exist in table 'ZTSD0030'.
      these are specific to interfaces, in order to handle those
    u need to configure apllication log at 'SLG1' t.code.
    i mean, u have to use following function moules to handle application log in ABAP Proxy .
    i.e
    APPL_LOG_WRITE_HEADER
    APPL_LOG_WRITE_MESSAGES
    APPL_LOG_WRITE_DB.
    warm regards
    mahesh.

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype

    Hi,
    i have created web service link which deals with calling a Pl/sql procedure with the help of DBAdapter in jdev 10.1.3.4 .here i am trying to insert a row in tables.my webservice is working fine from BPEL console
    my collegue who is working on PHP is trying to access the the wsdl link with the help of Appcelator and php
    code for php
    <?php
    //include("general.php");
    $wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/CreateRepairOrder/1.0/CreateRepairOrder?wsdl';
    //$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl';
    $client = new SoapClient($wsdl_url,array('trace' => 1,'exceptions' => 0));
    print_r($client);
    exit;
    class CreateOrderNd
    var $PARTY_ID="";
    var $CUST_ACCOUNT_ID="";
    var $INVENTORY_ITEM_ID="";
    var $SERIAL_NUMBER="";
    var $UNIT_OF_MEASURE="";
    var $QUANTITY="";
    var $ITEM_CROSS_REFERENCE="";
    var $PROBLEM_DESCRIPTION="";
    function CreateOrderNd($PartyNam,$AccountId,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
    $quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata)
    $this->PARTY_ID=$PartyName;
    $this->CUST_ACCOUNT_ID=$AccountId;
    $this->INVENTORY_ITEM_ID=$ItemId_requestdata;
    $this->SERIAL_NUMBER=$SerialNumber_requestdata;
    $this->UNIT_OF_MEASURE=$uom_requestdata;
    $this->QUANTITY=$quantity_requestdata;
    $this->ITEM_CROSS_REFERENCE=$ItemCrossReference_requestdata;
    $this->PROBLEM_DESCRIPTION=$ProblemDescription_requestdata;
    $parm = new CustomerNd($PartyName_requestdata,$AccountId_requestdata,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
    $quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata);
    $parm = new CustomerNd('Bus%','');
    $parm = new CreateOrderNd(4429,1608,6761,'0722AB05','Ea',1,'abc123','Network error');
    $ret=$client->process($parm);
    print_r($ret);
    ?>
    when she/he access it they are facing a error
    SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype
    and some times it will give
    Warning: SoapClient::SoapClient(http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl) http://function.SoapClient-SoapClient: failed to open stream: HTTP request failed! in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
    Warning: SoapClient::SoapClient() http://function.SoapClient-SoapClient: I/O warning : failed to load external entity "http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl" in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
    Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl' in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6

    Hi,
    i have created web service link which deals with calling a Pl/sql procedure with the help of DBAdapter in jdev 10.1.3.4 .here i am trying to insert a row in tables.my webservice is working fine from BPEL console
    my collegue who is working on PHP is trying to access the the wsdl link with the help of Appcelator and php
    code for php
    <?php
    //include("general.php");
    $wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/CreateRepairOrder/1.0/CreateRepairOrder?wsdl';
    //$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl';
    $client = new SoapClient($wsdl_url,array('trace' => 1,'exceptions' => 0));
    print_r($client);
    exit;
    class CreateOrderNd
    var $PARTY_ID="";
    var $CUST_ACCOUNT_ID="";
    var $INVENTORY_ITEM_ID="";
    var $SERIAL_NUMBER="";
    var $UNIT_OF_MEASURE="";
    var $QUANTITY="";
    var $ITEM_CROSS_REFERENCE="";
    var $PROBLEM_DESCRIPTION="";
    function CreateOrderNd($PartyNam,$AccountId,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
    $quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata)
    $this->PARTY_ID=$PartyName;
    $this->CUST_ACCOUNT_ID=$AccountId;
    $this->INVENTORY_ITEM_ID=$ItemId_requestdata;
    $this->SERIAL_NUMBER=$SerialNumber_requestdata;
    $this->UNIT_OF_MEASURE=$uom_requestdata;
    $this->QUANTITY=$quantity_requestdata;
    $this->ITEM_CROSS_REFERENCE=$ItemCrossReference_requestdata;
    $this->PROBLEM_DESCRIPTION=$ProblemDescription_requestdata;
    $parm = new CustomerNd($PartyName_requestdata,$AccountId_requestdata,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
    $quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata);
    $parm = new CustomerNd('Bus%','');
    $parm = new CreateOrderNd(4429,1608,6761,'0722AB05','Ea',1,'abc123','Network error');
    $ret=$client->process($parm);
    print_r($ret);
    ?>
    when she/he access it they are facing a error
    SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype
    and some times it will give
    Warning: SoapClient::SoapClient(http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl) http://function.SoapClient-SoapClient: failed to open stream: HTTP request failed! in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
    Warning: SoapClient::SoapClient() http://function.SoapClient-SoapClient: I/O warning : failed to load external entity "http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl" in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
    Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl' in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6

Maybe you are looking for

  • SB Audigy Series Support Pack 3.1 (OUTDATED)

    <p align="center">[color="#ff0000"]This software/driver pack is unofficial, not supported by Creative Labs. <p align="center">[color="#ff0000"]Use it at your own risk. Supports any model of the following?Sound Blaster cards (based on Emu0kx DSP): - A

  • ITunes won't open in Windows 8.

    I'm using a Dell XPXS, about 3 months old.    Itunes worked fine up until yesterday.  Then it would not open, in either common or administrative modes. I tried uninstalling per advice elsewhere on this site (iTunes, QuickTime, etc., in order) and rei

  • How to check wheather a workflow is assigned to a transcation in CRM

    Hi I want to find out wheather a workflow is assiged to a transcation type. Please let me know all the possiabilites to check. Note: Iam aware of action profile. Incase workflow is not assigned to a action profile what are the other ways to find. Rig

  • Why is my installation stalling at 25-30%?

    The full detail of this includes the fact I did a clean install on my Mac OSX (Which is Yosemite I might add right now). Why is the installation stalling at around 25-30%? Can someone please help me? I followed all the guidelines. Its the latest vers

  • Reporting data with quotes around each column, separating with ,

    I want to report data with quotes (") around the data and make is CSV. I use colsep , to allow the comma separator, but how can I get " around each column? I do not know the column I am dealing with, since it's over several tables from a dynamic scri