Federated search - specifying the service configuration page

I've built an interface (web service) to the Portal federated search specification so users can search libraries in our company's document management system (Panagon).
I want to specify an administration page, where an administrator can set a property which is the name of the library to be searched by an instance of the federated search web service. To do this, I've set a valid URL for the Service Configuration URL parameter when I configure the web service.
However, when I try to administer the Federated Search object corresponding to the web service, then I get the following message, even if the admin page has been built to just print a "Hello World" message:
<i>The Server Configuration Interface for this Outgoing Federated Search is unavailable. Check the URL configuration in the Web Service associated with this object.</i>
If I use the Administration Configuration URL, then I'm creating a rod for my own back, as we have 20 + libraries which we want to incorporate into the federated search interface. Each one of these would then have it's own entry in the "Select Utility" drop down box.
Has anyone successfully used the service configuration page option?
Thanks for any advice you can offer,
Charles

I've used SCI elsewhere, but never in Federated Search. The best way to test SCI is to download the Service Station from http://portal.plumtree.com. That can show you the entire SOAP trace so you can see exactly what's going on.
HTH,
Chris Bucchere | bdg | [email protected] | http://www.bdg-online.com

Similar Messages

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Oracle9iAS v2 Discoverer Services Configuration Page

    Hi, i am trying to change communication protocol in discoverer plus since i could not connect to it outside of firewall(inside firewall it works fine). In the documentation it says that i need to go to em site's Oracle9iAS Discoverer Services Configuration Page and change the default communication protocol.
    But when i go that page i do not see the link to Discover plus. I could only see(General Discover,Discoverer Viewer, and discoverer portlet provider links.
    How can i have a discoverer portlet link appear on the configuration page? Any help is appreciated.
    Below is a log file(i changed a url for security purpose):
    Oracle JInitiator: Version 1.3.1.8
    Using JRE version 1.3.1.8 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\TairProxy Configuration: no proxyJAR cache enabled
    Location: C:\Documents and Settings\Tair\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    Downloading http://ga.adv.com:7779/discoverer/plus_files/disco5i.jar to JAR cachejava.util.zip.ZipException: ZIP file must have at least one entry     at java.util.zip.ZipOutputStream.finish(Unknown Source)     at java.util.zip.ZipOutputStream.close(Unknown Source)     at oracle[i]Long postings are being truncated to ~1 kB at this time.

    Hi
    Looks like you have two threads on this subject. Please see my reply on this thread: Oracle discoverer ver 9.0.2.39.02
    Michael

  • How to reprint the Device Configuration page?

    Im installing my new printer for first time and was parially thru the wireless connection option set up and it printed off the Device Configuration Page but the page was partially blank and now I need the  printer IP address to complete the install and set up. how do I find that? where? 

    Please read this post then provide some details.  What printer model? 
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Canon pixma mg5420 "printer not responding". I printed the "network configuration page" . 70% strng

    I printed the "network configuration page". strength at 70%. how can I fix this? 
    thanks,

    Hi Heltonc,
    So that the Community can help you better, we will need to know what Computer Operating System you're using. (Windows XP/Vista/7/8 or Mac 10.x) 
    Any other details you'd like to give will only help the Community better understand your issue!
    If this is an urgent support need, please CLICK HERE to reach our friendly Technical Support Team by phone or email.
    Thanks and have a great day!

  • Federated Searches from the Basic Search Box

    Is there a way to have the portal's basic search facility perform a federated search without having to visit the federated search page? We would like our users to be able to search any location from the simple search box.

    Is there a way to have the portal's basic search facility perform a federated search without having to visit the federated search page? We would like our users to be able to search any location from the simple search box.

  • What's the difference b/w Google searching from the Mozilla Start Page and the search bar?

    It's not a high-priority question, I just want a general answer.
    I read that Google renews the license of Google search bar on the Mozilla Firefox Start Page, and that's from where Mozilla makes 90% of its money, because it's a not-for-profit organisation.
    I want to know whether I am giving Google a signal of making use of that license renewal when I search from the Start Page and not from the search bar I have.

    hi Abhimanyu, it won't make a difference if you search from the homepage or the search bar - both use the same default search provider.
    in addition, mozilla is no longer partnering with google. for details you might want to see https://blog.mozilla.org/blog/2014/11/19/promoting-choice-and-innovation-on-the-web/

  • When I enter a search in the Mozilla Start Page and press enter the browser does nothing. It doesn't bring in any search results. I use Windows Vista pack2

    I just upgraded Firefox for windows to version 21.0
    After upgrading, when I enter a subject to search in the search box (in the middle of the page) of the Mozilla Start page and press enter nothing happens. It doesn't bring in any search results.
    The only way to navigate using the browser is to enter the website name in the address box at the top of the page and press enter. I'm running the browser for Windows Vista - 32 bits.
    I tried re-installing firefox and I got the same result. I also tried re-booting after installation and it still behaves the same way.
    Please help,
    Thank you,
    Hektor

    he man check here
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Cannot write my search on the US Yellow pages website

    In trying to access the US Yellow Pages, I can only open the website, but cannot write anything to locate address I am looking for. The rest of the website works fine, but the find and in bars cannot be written upon.

    That's a European Model so you have to look in the European Support Site to find it (it isn't sold here in the USA).
    Your drivers are here.
    Model information can be found here.
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • How can I reset the default search on the Firefox home page back to Google?

    I recently had to uninstall the Yahoo toolbar forced on me without warning by an application, but this vestige seems to have crept back in

    hello, you can try to use the [https://addons.mozilla.org/firefox/addon/searchreset/ search reset addon].

  • Accessing the online web-configuration page

    I own a Linksys-G WRV200 wireless router, and I have tried to access the online configuration page and a page comes up that says
    401 Bad Request
    cannot use wireless interface to access web.
    Now, I do not have the disk that came with the router but I do have the software for my router, downloaded from this website. I have done the process where you go into command prompt and type "ipconfig /release" then "ipconfig /renew", and it did not work, unless I have to restart my PC again after I did this process, which i have not.
    Are there any other ways to open this web-configuration? The only reason I want to do this is so I can edit my NAT settings and Port Forward, is there any other way to do this without the online web-page? 
    Thanks in advance

    To view the router's web pages:
    You do not need an Internet connection.  The router's "web pages" are built into the router.
    Use Internet Explorer, it usually works.
    JavaScript must be enabled.
    Use a computer that is wired to the router (often, an attempt to connect wirelessly will fail).
    In the non-working computer, temporarily turn off your software firewall.
    If you are using Zone Alarm, right click on the ZA icon in the system tray (lower right corner of screen) and then click "Shutdown ZoneAlarm", and see if this fixes your problem. If this does not work, try the following with Zone Alarm: Open the ZAISS control center, go to Privacy, then temporarily turn off Ad Blocking and Cookie Control, and see if that fixes your problem.
    If you are using Noton Internet Security with the Add-on Pack, be sure to turn off the Pop-up Blocker, and the Ad blocker. Some users have reported that they needed to uninstall the entire Norton Add-on Pack.
    If you cannot get anything at 192.168.1.1 then perhaps this is not your router's address. Go to "Start" > All Programs > Accessories > Command Prompt.
    A black DOS box will appear. Type in "ipconfig" (with no quotes), then hit the Enter key. Look at the "Default Gateway". Is it 192.168.1.1 ? Point your browser to the "Default Gateway", then login to your router.
    If the above fails, disconnect your modem from the router, and try again. If this corrects your problem, then most likely you have a "modem-router" rather than an ordinary modem.  Report back with this problem, and also state the make and exact model number of your modem (not the Linksys router).
    If all of the above fails, power down your entire system, unplug it from the wall, wait one minute, then power up and try again.
    If all of the above tips fail, then reset the router to factory defaults: Power down the router and disconnect all wires from it. Wait one minute. Power up the router, allow it to fully boot (1-2 minutes), then press and hold the reset button for 30 seconds, then release the button and allow the router to reset and reboot ( 2-3 minutes). Power down router. Wait one minute. Connect one computer, by wire, to a LAN port on the router. Boot up system. It should work.
    If the reset does not fix your system, then you need to download and install (or re-install) the latest firmware for your router. After the firmware upgrade, you must reset the router to factory defaults, then setup the router again from scratch. If you saved a router configuration file, DO NOT use it.

  • E-Rec - Candidate Location search in the search criteria configuration

    Hello experts,
    My requirement is to add a search criteria on candidates geographical location in the TRM Search in the recruiter start page.
    I have performed the following steps in SPRO but still the location search is not bringing the required output;
    1. Defined a search template for candidates location -
    {Type - General; Search profile type - INT_CAND} - I have used the standard search profile type INT_CAND
    2. Defined a search template element
    {Element type - LIBO list Box; Info category - CANDIDATE_ADDRESS_DATA; Field Type - E; Data collection class - CL_HRRCF_T005_COUNTRY}
    3. Attached the search template element to the search template
    4. Attached the search template in the sequence to the Search template group "Search in Talent warehouse'
    Note --> TREX is working fine and iam able to see the job search working fine in the system.
    Can some one please provide some inputs on what iam missing.
    Thanks for your help
    G Raj

    If you are sure this problem will not occur again in the future, then you can run the standard webdynpro application DELETE_EXTERNAL_CANDIDATE in e-Recruiting system to get rid of the duplicate candidates....
    This application will delete the candidate completely from the system, including all the CP and BP objects and relations.
    I hope this will help...

  • Error 1297 A privilege that the service requires to function properly does not exist in the service account configuration

    When I try to start Windows installer in Services.msc, it gives me this error Error 1297 A privilege that the service requires to function properly does not exist in the service account configuration. How do I fix this? I am running Windows 7 ultimate.

    Hi,
    Based on the error code, we can use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view
    the service configuration and the account configuration for Windows Installer service.
    Besides, the following two threads focus on the similar issue and can be referred to as reference.
    Error 1297: "ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE 1297” FTP service in Windows 7 computer
    http://social.technet.microsoft.com/Forums/windows/en-US/52329b48-1ba9-4cab-a6b2-efd8db173625/error-1297-errorincompatibleserviceprivilege-1297-ftp-service-in-windows-7-computer?forum=w7itpronetworking
    Service fails to start, error 1297 and 7000
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/419ba006-4413-4036-8c49-252b08593131/service-fails-to-start-error-1297-and-7000?forum=winserverDS
    Hope it helps.
    Best regards,
    Frank Shen

  • Federated Search Error - Hello World Sample

    Hello,
    I am trying to setup a Federated Search using the example HelloWorldSearch.war (java version). I am relatively new to the Portal Technology, but have extensive experience in web app development.
    I am getting an error when I try to run my Federated Search. "Error - Error executing search on Test Federated Search : Federated search of federated portal object 200 could not be executed. The federated portal may be configured incorrectly." Any Ideas?
    I have created 3 Portal Objects:
    1) Remote Server - this points to my Tomcat instance - http://msc_tesposito1:8080/
    2) Search Web Service - which points to app/service. I have specified "HelloWorldSearch/services/SearchProviderSoapBinding" and linked it to my Remote Server Instance.
    3) Federated Search - linked this to my Search Web Service.
    I then took the HelloWorldSearch-Java.war file from the samples provided, renamed it to HelloWorldSearch.war and dropped it in my Tomcat webapps directory. I can hit the web service just fine by executing "http://msc_tesposito1:8080/HelloWorldSearch/services/SearchProviderSoapBinding".
    Does anyone have any ideas as to what I might be able to do to get this working?
    Tom Esposito
    Manheim, Inc.
    www.manheim.com

    It works fine on my local tomcat. All this search returns is - "Place holder" string, it's harcoded there.
    It seems you have registered exemple by manual. Try use migration tool - ...\plumtree\ptportal\5.0\bin\native\ptmigration.bat
    As soon as migration(import) is done all you need to do is change url to your actual remote server

  • Error on External Serrvice Configuration Page NW 20047s SP10

    Hi All,
    I am working on CAF developement. I was trying to develop an CAF application using External Service. I used SAP ECC 5.0 server to import a RFC functional module. It was successfully imported in NWDS. Also it got successfully deployed on the Server NW2004s SP10. But when i opened external service configuration page -> service registery it gave me a null pointer exception.
    To solve the problem, i removed the RFC functional module from NWDS and
    re-deployed the same application, but the error is still there.
    One solution i got is to undeploy the application from the server. After doing this I was able to get the External service configuration page -> service registery without any error. BUT WHEN I DEPLOY THE SAME APPLICATION REMOVING THE RFC THE ERROR IS COMMING AGAIN.
    I think there must be some entry on the server which stores the External services imported on the NW 2004s server.
    Please Help. ITS VERY URGENT
    thanks in advance,
    Regards,
    Sheetal

    I am not using date in my program. Follwing is my error.
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at com.sap.caf.mp.mmr.adapter.ServiceDefinitionTypeConverter.convertExternalInterface(ServiceDefinitionTypeConverter.java:507)
        at com.sap.caf.mp.mmr.adapter.MMServiceRetrievalAdapter.getExternalInterfaces(MMServiceRetrievalAdapter.java:547)
        at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerBean.getExternalInterfaces(MMServiceRetrievalAdapterCallerBean.java:158)
        at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.getExternalInterfaces(MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.java:477)
        at com.sap.caf.mp.core.data.service.DataServiceBridge.getExternalServices(DataServiceBridge.java:201)
        ... 47 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
    Version null
    DOM version null
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0010.20061016112122.0000 (release=645_VAL_REL, buildtime=2006-10-21:16:12:34[UTC], changelist=421181, host=pwdfm101), build date: Thu Dec 28 17:06:00 GMT+05:30 2006
    J2EE Engine 7.00 patchlevel
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_12-b03, vendor: Sun Microsystems Inc.
    Operating system Windows 2003, version: 5.2, architecture: x86
    Session & Other
    Session Locale en_US
    Time of Failure Fri Jan 12 09:47:51 GMT+05:30 2007 (Java Time: 1168575471082)
    Web Dynpro Code Generation Infos
    sap.com/cafUIconfiguration
    SapDictionaryGenerationCore 7.0010.20061002105236.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:52:59[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0010.20061002105236.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:53:17[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0010.20060719095755.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:40:44[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0010.20061002110128.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:58:51[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0010.20061002105432.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:41:39[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0010.20061002105432.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:41:32[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0010.20060719095619.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:50:36[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0010.20061002110156.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:55:32[UTC], changelist=419397, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0010.20061016112122.0000 (release=645_VAL_REL, buildtime=2006-10-21:16:19:13[UTC], changelist=421181, host=pwdfm101)
    SapWebDynproGenerationCore 7.0010.20061002110128.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:59:00[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0010.20061016112122.0000 (release=645_VAL_REL, buildtime=2006-10-21:16:19:13[UTC], changelist=421181, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    java.lang.RuntimeException: com.sap.caf.rt.exception.CAFBaseRuntimeException: Exception in method getExternalInterfaces.
         at com.sap.caf.wd.services.registry.VwOverview.loadServices(VwOverview.java:661)
         at com.sap.caf.wd.services.registry.VwOverview.wdDoInit(VwOverview.java:133)
         at com.sap.caf.wd.services.registry.wdp.InternalVwOverview.wdDoInit(InternalVwOverview.java:275)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:445)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:724)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.makeVisible(ViewManager.java:789)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.performNavigation(ViewManager.java:296)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:767)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.navigate(ClientComponent.java:873)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doNavigation(WindowPhaseModel.java:498)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:144)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:752)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:705)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.caf.rt.exception.CAFBaseRuntimeException: Exception in method getExternalInterfaces.
         at com.sap.caf.mp.core.data.service.DataServiceBridge.getExternalServices(DataServiceBridge.java:208)
         at com.sap.caf.wd.services.registry.VwOverview.loadServices(VwOverview.java:657)
         ... 46 more
    Caused by: com.sap.engine.services.ejb.exceptions.BaseEJBException: Exception in method getExternalInterfaces.
         at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.getExternalInterfaces(MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.java:493)
         at com.sap.caf.mp.core.data.service.DataServiceBridge.getExternalServices(DataServiceBridge.java:201)
         ... 47 more
    Caused by: java.lang.NullPointerException
         at com.sap.caf.mp.mmr.adapter.ServiceDefinitionTypeConverter.convertExternalInterface(ServiceDefinitionTypeConverter.java:507)
         at com.sap.caf.mp.mmr.adapter.MMServiceRetrievalAdapter.getExternalInterfaces(MMServiceRetrievalAdapter.java:547)
         at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerBean.getExternalInterfaces(MMServiceRetrievalAdapterCallerBean.java:158)
         at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.getExternalInterfaces(MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.java:477)
         ... 48 more
    Thanks and regards,
    sheetal

Maybe you are looking for

  • How can i print a PDF to fit to page ?

    Maybe this is due to some setting i am overlooking.. I have some PDF pages which i want to print on A4 sheets. However, the pages which come out are zoomed in copies , displaying about 60% of the page and cutting out the rest. I want to fit the page

  • Maximum line size for OO ALV

    Hi, 1) What is the maximum line size for OO ALV? Or in the other way round, how is the maximum column size for OO ALV when i using the method below:   DATA: r_grid TYPE REF TO cl_salv_form_layout_grid.   CREATE OBJECT r_grid.   r_grid->create_text(  

  • Print Button window Crashed in IE8 browser using SAP EP7.0

    Hi, I have to logon to CRM B2b application in SAP EP7.0 , in B2B application in any print Button click on Print button window is displaying in another window,  after few seconds  the IE8 browser is closed Error Message "Internet Explorer has closed t

  • Two movement type in sales order

    Hi my client requires a stock to transfer to plant (301 mvt type) to happen at the same time while creating the sales order. for this i added one more movement type in schedule lines (mvt type 1 step) in img. but i am not getting the two schedule in

  • Tab spaces in SAPScript RDI output

    Hi, Is there a way to test the spacing while using TABs in SAPScripts which has an RDI output? I've been trying to display some text on my output and I've tried different spacing/tabs. Nothing seems to work. We produce a PDF at the end and since my d