RSS implementation: error  MM_XSLTransform error.

I'm new to this forum so please forgive in advance any dumb questions.  I am using CS3 trying to post RSS feeds on my web site from an external xml source.  I have configured a testing server running Suse 11.1 / Apache/ PHP 5.2 for development purposes. I create the XSL fragment and can preview the data fine in the browser using the F12 in DW; however, when I import the XSL fragment into a (PHP) web page I get the following message:
MM_XSLTransform error.
The specified file /frag7.xsl could not be found.
I have imported the above fragment with the site root parameter selected, which obviously doesn't work.  If I select the document root then I get a plethora of really ugly errors when I preview the page using F12.   So the problem appears to be some incorrect interaction of the XSL fragment after it gets imported into the php page, aside from that it works fine.
I am at a loss how to troubleshoot this from here.

Will this help
http://pleysier.com.au/rss_example/

Similar Messages

  • MM_XSLTransform error. Error opening.

    I followed the tutorial on
    how
    to cosume an rss feed. Works fine locally. When I upload to my
    host, I get this error MM_XSLTransform error. Error opening. Host
    is running PHP 4.3.11. I am new to consuming an rss feed and do not
    know where to begin to troubleshoot. Any ideas or suggestions for
    code tweaks? Could this be a result of something lacking on my
    hosts end?

    ihsutd wrote:
    > I followed the tutorial on
    >
    http://www.adobe.com/devnet/dreamweaver/articles/dw_xsl_rss_print.html.
    Works
    > fine locally. When I upload to my host, I get this error
    MM_XSLTransform error.
    > Error opening. Host is running PHP 4.3.11. I am new to
    consuming an rss feed
    > and do not know where to begin to troubleshoot. Any
    ideas or suggestions for
    > code tweaks? Could this be a result of something lacking
    on my hosts end?
    Yes. Although the XSL Transformation server behavior is
    compatible with
    both PHP 5 and PHP 4, the functions used by the different
    versions of
    PHP are not the same. PHP 5 uses XSL functions, which are
    enabled by
    default. PHP 4 uses XSLT functions, which are not enabled by
    default.
    Unless your host has enabled the XSLT functions, the server
    behavior
    won't work on PHP 4.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • MM_XSLTransform error every time in PHP page

    When I apply an XSL Transformation to a PHP page, the page
    displays with an MM_XSLTransform error saying the XML file is not a
    valid XML document -- even though it absolutely
    is valid XML. This is totally reproducable.
    Here's a simple example:
    library.xml:
    <?xml version="1.0" encoding="iso-8859-1"?>
    <library>
    <owner>Mister Reader</owner>
    <book>
    <isbn>1-2345-6789-0</isbn>
    <title>All About XML</title>
    <author>John Doe</author>
    <language>English</language>
    <price currency="usd">24.95</price>
    </book>
    <book>
    <isbn>9-8765-4321-0</isbn>
    <title>CSS Made Simple</title>
    <author>Jane Smith</author>
    <language>English</language>
    <price currency="usd">19.95</price>
    </book>
    </library>
    library.xsl:
    <xsl:stylesheet version="1.0" xmlns:xsl="
    http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" encoding="iso-8859-1"/>
    <xsl:template match="/">
    <h1><xsl:value-of select="library/owner"/>'s
    Library</h1>
    <xsl:for-each select="library/book">
    <p><em><xsl:value-of
    select="title"/></em>
    by <xsl:value-of select="author"/>
    (ISBN <xsl:value-of select="isbn"/>)</p>
    </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>
    library.php:
    <?php
    //XMLXSL Transformation class
    require_once('includes/MM_XSLTransform/MM_XSLTransform.class.php');
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    <?php
    $mm_xsl = new MM_XSLTransform();
    $mm_xsl->setXML("library.xml");
    $mm_xsl->setXSL("library.xsl");
    echo $mm_xsl->Transform();
    ?>
    </body>
    </html>
    When viewing the file library.php, the following error is
    displayed in the browser, followed by the raw XML:
    library.xml is not a valid XML document.
    Non-static method DOMDocument::loadXML() should not be called
    statically, assuming $this from incompatible context in file
    library.xml.
    I wonder whether there is a problem with the include file
    MM_XSLTransform, version 0.6.2. Since that include file begins with
    a "TODO" note from the programmer, I wonder whether it's not quite
    release-ready.
    Anyone else having this problem?
    Environment:
    - Testing Server on localhost
    - Windows XP Pro SP2
    - Dreamweaver 8.0.2
    - PHP 5.1.4
    - MySQL 5.0.2.1
    - PHP MyAdmin 2.8.1

    Jon9999 wrote:
    > I wonder whether there is a problem with the include
    file MM_XSLTransform,
    > version 0.6.2. Since that include file begins with a
    "TODO" note from the
    > programmer, I wonder whether it's not quite
    release-ready.
    It was release-ready. It worked fine in PHP 5.0, but changes
    in PHP
    5.1.4 caused it to break. As I understand, Adobe is preparing
    a PHP
    hotfix that solves several problems caused by the 8.0.2
    updater. It also
    fixes this one.
    In the meantime, you can easily hand fix it yourself.
    Comment out line 301, which looks like this:
    $xml = DOMDocument::loadXML($content);
    Then insert the following two new lines immediately below:
    $doc = new DOMDocument();
    $err = $doc->loadXML($content);
    The rest of the script then continues with this:
    restore_error_handler();
    So, when you have finished, lines 301-304 will look like
    this:
    //$xml = DOMDocument::loadXML($content);
    $doc = new DOMDocument();
    $err = $doc->loadXML($content);
    restore_error_handler();
    Just in case you're interested in what the problem was: line
    301 uses
    loadXML() as a static method of the DOMDocument class. As of
    PHP 5.1.4,
    this isn't allowed. The substitute lines create a DOMDocument
    object,
    and then call the method on the new object.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:

    Hi,
    I am trying to fetch data from SMP 2.3 Server through SMP 2.3 SDK. i have followed all steps which have been mentioned in SYBASE INFOCENTER for Native Android Platfom. i am getting the following error
    com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:
    if anybody has dea about this error. please respond

    Hi viru,
    No, i am not connecting via relay server. i am connecting to organisation's  SMP Cloud Server. We used the same RFC for creating MBO for iOS application and it worked.
    This is my code:
    import java.util.Hashtable;
    import SampleTest.SampleTestDB;
    import android.app.Activity;
    import android.app.ProgressDialog;
    import android.content.Intent;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.Menu;
    import android.view.View;
    import android.widget.AdapterView;
    import android.widget.AdapterView.OnItemClickListener;
    import android.widget.Button;
    import android.widget.ListView;
    import android.widget.Toast;
    import com.sybase.collections.GenericList;
    import com.sybase.collections.StringList;
    import com.sybase.collections.StringProperties;
    import com.sybase.mobile.Application;
    import com.sybase.mobile.ApplicationCallback;
    import com.sybase.mobile.ConnectionProperties;
    import com.sybase.mobile.ConnectionStatus;
    import com.sybase.mobile.RegistrationStatus;
    import com.sybase.persistence.DefaultCallbackHandler;
    import com.sybase.persistence.LoginCredentials;
    import com.sybase.persistence.SynchronizationAction;
    import com.sybase.persistence.SynchronizationContext;
    import com.sybase.persistence.SynchronizationGroup;
    import com.sybase.persistence.SynchronizationStatus;
    public class ReadActivity extends Activity {
         private static final int REQUEST_DETAIL = 99;
         private static String USERNAME = "supAdmin";
         private static String PASSWORD = "pass";
         private static String HOST = "cloudsap1.ltisap.com";
         private static int PORT = 5001;
         private static int TIMEOUT = 600;
         private EmployeeAdapter adapter;
         private static volatile boolean initializationDone = false;
      ListView ltList;
      Button btnNext;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_read);
      initializeApplication();
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
            if (requestCode == REQUEST_DETAIL)
                if (resultCode == RESULT_OK)
                    ReadActivity.this.adapter.refreshUI(true);
       private void initializeApplication()
        final ProgressDialog dialog = new ProgressDialog(this);
        dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        dialog.setTitle("on boarding ...");
        dialog.setMessage("Please wait while download initial data...");
        dialog.setIndeterminate(false);
        dialog.setProgress(100);
        dialog.setCancelable(true);
        dialog.show();
        new Thread()
            @Override
            public void run()
                try
                    int count = 0;
                    while (!initializationDone)
                        dialog.setProgress(++count);
                        Thread.sleep(100);
                        if (count == 100)
                            count = 0;
                    dialog.cancel();
                catch (Exception e)
                    dialog.cancel();
        }.start();
        Application app = Application.getInstance();
        app.setApplicationIdentifier("SampleTest");//== important!!!!!!!!!!!!!!!!!
        app.setApplicationContext(getApplicationContext());
        new Thread(new Runnable()
            public void run()
                try
                    Application app = Application.getInstance();
                    ApplicationCallback appCallback = new MyApplicationCallback();
                    app.setApplicationCallback(appCallback);
                    SampleTestDB.registerCallbackHandler(new CustomerDBCallback());
                    SampleTestDB.setApplication(app);
                    SampleTestDB.getSynchronizationProfile().setServerName(HOST); // Convenience only
                    ConnectionProperties connProps = app.getConnectionProperties();
                    LoginCredentials loginCredentials = new LoginCredentials(USERNAME, PASSWORD);
                    connProps.setLoginCredentials(loginCredentials);
                    connProps.setServerName(HOST);
                    connProps.setPortNumber(PORT);
                    if (app.getRegistrationStatus() != RegistrationStatus.REGISTERED)
                     try {
                      app.registerApplication(TIMEOUT);
                     catch (Exception e)
                      Log.e("Emp101","Cannot register " + e.getMessage());
                    else
                        app.startConnection(TIMEOUT);
                    Log.i("Emp101","Application REGISTERED");
                    if (!SampleTestDB.isSynchronized("default"))//
                     Log.i("Emp101","Starting Initial Sync");
                        SampleTestDB.disableChangeLog();
                        SampleTestDB.synchronize(); // AFTER  THIS STATEMENT IT IS GIVING THAT ERROR
                        SynchronizationGroup sg = SampleTestDB.getSynchronizationGroup("default");
                        sg.setEnableSIS(true);
                        sg.save();
                      //  SampleTestDB.subscribe();
                        Log.i("Emp101","Subscribe");
                        SampleTestDB.synchronize();
                        Log.i("Emp101","Initial Sync COMPLETED");
                    SampleTestDB.enableChangeLog();
                catch (Exception e)
                    e.printStackTrace();
                finally
                    initializationDone = true;
                ReadActivity.this.runOnUiThread(new Runnable()
                    public void run()
                     btnNext = (Button) findViewById(R.id.btn_create);
                        adapter = new EmployeeAdapter(ReadActivity.this);
                      ltList = (ListView) findViewById(R.id.lvRead);
                      ltList.setAdapter(adapter);
        }).start();
       // Start of ApplicationCallback
       class MyApplicationCallback implements ApplicationCallback
          public void onApplicationSettingsChanged(StringList nameList)
            Log.i("Emp101","Application Settings Changed: "+ nameList);
          public void onConnectionStatusChanged(int connectionStatus, int errorCode, String errorMessage)
                 switch (connectionStatus)
                     case ConnectionStatus.CONNECTED:
                      System.out.println("Device is Connected");
                      Log.i("ERROR1", "Device is Connected");
                         break;
                     case ConnectionStatus.CONNECTING:
                      System.out.println("Device is Connecting");
                      Log.i("ERROR2", "Device is Connecting");
                         break;
                     case ConnectionStatus.CONNECTION_ERROR:
                      System.out.println("Connection Error: " + errorMessage);
                      Log.i("ERROR3", errorMessage);
                         break;
                     case ConnectionStatus.DISCONNECTED:
                      System.out.println("Device is Disconnected");
                      Log.i("ERROR4", "Device is Disconnected");
                         break;
                     case ConnectionStatus.DISCONNECTING:
                      System.out.println("Device is Disconnecting");
                      Log.i("ERROR5", "Device is Disconnecting");
                         break;
          public void onRegistrationStatusChanged(int registrationStatus, int errorCode, String errorMessage)
                 switch (registrationStatus)
                     case RegistrationStatus.REGISTERED:
                      System.out.println("Device is REGISTERED");
                      Log.i("ERROR6", "Device is REGISTERED");
                         break;
                     case RegistrationStatus.REGISTERING:
                      System.out.println("Device is REGISTERING");
                      Log.i("ERROR7", "Device is REGISTERING");
                         break;
                     case RegistrationStatus.REGISTRATION_ERROR:
                      System.out.println("Registration Error: " + errorMessage);
                      Log.i("ERROR8", errorMessage);
                         break;
                     case RegistrationStatus.UNREGISTERED:
                      System.out.println("Device is UNREGISTERED");
                      Log.i("ERROR9", "Device is UNREGISTERED");
                         break;
                     case RegistrationStatus.UNREGISTERING:
                      System.out.println("Device is UNREGISTERING");
                      Log.i("ERROR10", "Device is UNREGISTERING");
                         break;
          public void onHttpCommunicationError(int errorCode, String errorMessage, StringProperties httpHeaders)
           System.out.println("ERROR - HTTP Communication Error: "+ errorMessage);
          public void onDeviceConditionChanged(int condition)
           System.out.println("Device Condition Status: "+ condition);
       public void onCustomizationBundleDownloadComplete(String arg0,
         int arg1, String arg2) {
        // TODO Auto-generated method stub
       public int onPushNotification(Hashtable arg0) {
        // TODO Auto-generated method stub
        return 0;
       //....End of ApplicationCallback
        private class CustomerDBCallback extends DefaultCallbackHandler
             @Override
             public int onSynchronize(GenericList<SynchronizationGroup> groups, SynchronizationContext context)
                 if (context.getStatus() == SynchronizationStatus.STARTING)
                     ReadActivity.this.runOnUiThread(new Runnable()
                         public void run()
                             Toast.makeText(ReadActivity.this, "Synchronizing ... ", Toast.LENGTH_LONG).show();
                 else if (context.getStatus() == SynchronizationStatus.FINISHING || context.getStatus() == SynchronizationStatus.ASYNC_REPLAY_UPLOADED)
                  ReadActivity.this.runOnUiThread(new Runnable()
                         public void run()
                             Toast.makeText(ReadActivity.this, "Synchronize done", Toast.LENGTH_SHORT).show();
                     if (ReadActivity.this.adapter != null)
                      ReadActivity.this.adapter.refreshUI(false);
                 return SynchronizationAction.CONTINUE;
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
      // Inflate the menu; this adds items to the action bar if it is present.
      getMenuInflater().inflate(R.menu.read, menu);
      return true;

  • Getting error like "Error in portal_sso_redirect: missing application registration information" while trying to run application using Oracle SSO

    Hi All,
    I am trying to implement SSO authentication for my APEX application. I have registered the application as a SSO partner application.
    I have set the authentication scheme to Oracle Application server Single Sign On.
    When i run the application i am getting the below error.
    Error in portal_sso_redirect: missing application registration information: p_partner_app_name:g_listener_token:HTML_DB:ofss220104.in.oracle.com:5050Please register this application as described in the installation guide.
    Please help me to resolve this.
    Thanks and Regards,
    Suhas

    Suhas,
    After you registered your application as a SSO partner application did you use the information from Oracle SSO (home URL, success URL, Logout URL, app_name etc) and loaded it into the APEX_SSO schema using the regapp.sql script from the ssosdk?
    Step 4 of http://www.oracle.com/technetwork/testcontent/sso-partner-app-100552.html#INSTALL
    Ricker

  • Sharepoint FBA web application error: Server Error in '/' Application. when login to the web application

    Hello Team,
    I have configured FBA in SharePoint 2010. After the FBA i can get the SQL users using people picker and added users as a site collection admin.
    When i tried to access the site, it shows login page and i have given user name and password then pressed signin button, it's try to redirect the another page and showing below error,
    Server Error in '/' Application.
    Runtime Error 
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed. 
    Details: To enable the details of this specific error message to be viewable on the local server machine, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application.
    This <customErrors> tag should then have its "mode" attribute set to "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
        <system.web>
            <customErrors mode="RemoteOnly"/>
        </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
        <system.web>
            <customErrors mode="On" defaultRedirect="mycustompage.htm"/>
        </system.web>
    </configuration>
    "An exception occurred when trying to issue security token: The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (application/soap+msbin1). If using a custom encoder, be sure that the IsContentTypeSupported
    method is implemented properly. The first 1024 bytes of the response were: '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <title>IIS 7.5 Detailed Error - 500.19 - Internal Server Error</title> 
    <style type="text/css"> 
    <!-- 
    body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;background:#CBE1EF;} 
    code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} 
    .config_source code{font-size:.8em;color:#000000;} 
    pre{margin:0;font-size:1.4em;word-wrap:break-word;} 
    ul,ol{margin:10px 0 10px 40px;} 
    ul.first,ol.first{margin-top:5px;} 
    fieldset{padding:0 15px 10px 15px;} 
    .summary-container fieldset{padding-bottom:5px;margin-top:4px;} 
    legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} 
    legend{color:#333333;padding:4px 15px 4px 10px;margin:4px 0 8px -12px;_margin-top:0px; 
     border-top:1px solid #EDEDED;border-left:1px solid #EDEDED;border-right:1px solid #969696; 
     border-bottom:1px solid #969696;background:#E7ECF0;font-weight:bold;'..
    I checked sharepoint logs and didn't see any log. but i can see below error logged in  Event viewer application logs,
    I tried changing all customErrors mode and still same error.
    Kindly help me on this, how to resolve the issue.
    Thanks in advance.
    JP

    Hi,
    According to your description, my understanding is that the error occurred when you accessed SharePoint site through form based authentication.
    How did you configure the form based authentication?
    Here is a link about the steps required to configure FBA in SharePoint 2010 for your reference, and check the steps to see if there anything wrong in your configuration:
    http://www.codeproject.com/Articles/352841/How-to-Configure-Form-Based-Authentication-FBA-in
    Through the common error message, we cannot find what exactly caused the error.
    Here is a similar thread for you to take a look:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/120ab535-63d2-4205-a51f-1987e9c0cf79/sharepoint-fba-the-content-type-texthtml-charsetutf8-of-the-response-message-does-not-match-the?forum=sharepointgeneralprevious
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Java.rmi.ServerException: Internal Server Error (serialization error....)

    Hi to all.
    I have two classes.
    The first is:
    public class FatherBean implements Serializable {
    public String name;
    public int id;
    /** Creates a new instance of ChildBean */
    public FatherBean() {
    this.name= null;
    this.id = 0;
    public String getName() {
    return name;
    public void setName(String name) {
    this.name = name;
    public int getId() {
    return id;
    public void setId(int id) {
    this.id = id;
    The second is :
    public class ChildBean extends FatherBean implements Serializable {
    public double number;
    /** Creates a new instance of ChildBean */
    public ChildBean() {
    super();
    this.number = 0.0;
    public double getNumber() {
    return number;
    public void setNumber(double number) {
    this.number = number;
    A test client class implements the following method that is exposed as web service:
    public java.util.Collection getBeans() {
    java.util.Collection beans = new ArrayList();
    ChildBean childBean1 = new ChildBean();
    ChildBean childBean2 = new ChildBean();
    childBean1.setId(100);
    childBean1.setName("pippo");
    childBean1.setNumber(3.9);
    childBean2.setId(100000);
    childBean2.setName("pluto");
    childBean2.setNumber(4.7);
    beans.add(childBean1);
    beans.add(childBean2);
    return beans;
    When I invoke the web service to url:
    http://localhost:8080/Prova
    and invoke the correspondent method on jsp client, throws exception:
    java.rmi.ServerException: Internal Server Error (serialization error: no serializer is registered for (class test.ChildBean, null))
         at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:357)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:228)
         at ws.ProvaClientGenClient.ProvaRPC_Stub.getBeans(ProvaRPC_Stub.java:59)
         at ws.ProvaClientGenClient.getBeans_handler.doAfterBody(getBeans_handler.java:64)
         at jasper.getBeans_TAGLIB_jsp._jspService(_getBeans_TAGLIB_jsp.java:121)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:552)
         at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
         at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:720)
         at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperValve.java:118)
         at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.java:278)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:203)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:157)
         at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)
    Where is the problem? Will be ChildBean that extends FatherBean? Wich settings on Sun Java Studio Enterprise 6 2004Q1?
    Thank you.

    Hi,
    This forum is for Sun Java Studio Creator related questions. Could you pls post your message in the appropriate forum.
    Thank you
    Cheers :-)

  • " SYSTEM ERROR" with ERROR CATEGORY: Message and ERROR ID : GENERAL

    HI all
    I m doing JDBC -> XI -> SOAP -> XI -> FILE ( XML) scenario .I have implemented it using  BPM .
    But ,In MONI , i am getting a "SYSTEM ERROR " with "ERROR CATEGORY : MESSAGE" and "ERROR ID : GENERAL" .and 
    One thing more is there my all adapters are active (JDBC,FILE) in runtime workbench but SOAP adapters i am not able to see it there as its services are not defined in there .Is this problem is because SOAP adapters are not defined in runtime workbench ?

    Hi Colin
    I are using SP 3.0
    I have checked the Communication channel monitoring and Adapter monitering also but in mine case when i want to see the SOAP adapter in adapter monitoring , the SOAP ICON is disabled there ,so i am not able to see whats the status of my SOAP adapter i have used in my scenario
    Thanks and Regards
    Abhishek

  • Smartview Error: Unknown error in HFMProviderData at the root level is invalid. Line1,postion1.

    Hi Everyone,
    Please provide me a solution for this.
    One of the users is encountering the above issue when he connects the Smartview templates, we have implemented the steps in which specified as per "Hyperion Financial Management for SmartView Error "Unknown Error in HFMProviderData at the root level is invalid. Line 1, position 1" (Doc ID 1361427.1)"
    but unfortunately still the same user facing with same error when he tries to connect HFM app over template and after implemeted the steps as per above Oracle Doc ID, there is no "UserMbrSel" USERPARAMS existing on checks at HFM schema level.
    Quick response much appriciated and Many thanks in advance.
    Regards
    KK

    Hi KK,
    You may want to review below archived discussions regarding the same issue:
    https://community.oracle.com/message/10287197
    https://community.oracle.com/message/9701674
    ~ KK

  • Error: 544 Error in File UNKNOWN.RPT

    I have an application that is still running Crystal 8.5 Reports.
    I periodically get the following error:
    Error: 544 error in file unknown.rpt.
    Access to report file denied. Another program may be using it.
    Open print job <PEOpenPrintJob>.
    There does not seem to be any consistency to when it happens.
    The reports reside on a server and the runtime application uses a.rpt on a shared directory.
    I can identify the last user to successfully print the report, have them logout of the application and the error goes away for a while. Different users can continue to print using the same .rpt. Then the problem comes back a little while later.
    It only appears to happen to one of the reports
    If I reboot the server the problem goes away for a couple of days. Then it comes back again.
    I have verified and reverified the report and all seems to be OK.
    Any suggestions are appreciated.
    Thanks,
    Leonard

    Thanks Don,
    I'm sure that is the problem.
    I am using Delphi 7 and creating the Crpe Object  during runtime by using the procedure to follow.
    Can you tell me how I would set the AsTempCopy option during runtime?
    Also, my entire application is using crpe32.dll to run reports. Are you saying I can no longer do this?
    We have purchased and tested crystal XI with my application I have just put off implementation in favor of other priority projects. Are there many enhancements to Crystal 2008 or can I save on the upgrade right now and implement XI?
    procedure TfrmPOPrint.btnPrintClick(Sender: TObject);
    var x: integer;
        cr: TCrpe;
    begin
      inherited;
      cr := TCrpe.Create(nil);
      cr.WindowButtonBar.PrintSetupBtn := True;
      cr.OnWindowClose := crWindowClose;
      if (Sender as TButton).Tag = 0 then
          cr.Output := toPrinter
      else
          cr.Output := toWindow;
      try
        cr.ReportName := '';
        cr.ReportName := fcrReportPath + fcrReportName;
        x:=0;
        while x < cr.ParamFields.Count do
        begin
          if (UpperCase((cr.ParamFields[x].Name)) = 'USERNAME')then
              cr.ParamFields[x].CurrentValue := Username;
          inc(x);
        end;
        cr.execute;
      finally
        cr.Free
      end;
    end;

  • Error positng Invoice using MIRO  - Internal Error  read error SMBEW, Key =

    Hello Friends ,
    User is facing a strange issue while posting a Invoice using MIRO .
    The error says " Internal Error ( Read Error SMBEW, Key = 000000000001011376120000000000 )
    Message no . M8782
    Procedure
    Contact your system administrator
    please provide your valuable inputs .
    thanks,
    Raghu V

    Its a programme error...you have to check & implement SAP note 326826...otherwise contact SAP directly
    Regards,
    Indranil

  • Error:-"Internal error when converting a recurrence documentu201D

    Hello ISU Experts,
    For customer I am trying to create a new BBP with transaction EA61. This is done without any errors until I try to save the new BBP. Then I receive the following error:
    u201CInternal error when converting a recurrence documentu201D
    Kindly help me in resolving this issue so that customer can receive their BBP.
    Thanks in advance
    Shabnum

    Hello,
    Have you tried to do a note search for error >4011 "Internal error in converting a repetition document"
    Here are some I found......please see which is relevant for your system and implement them...
    367152
    131335
    410434
    571098
    561664
    569037
    566972
    402934
    565100
    155572
    153495
    553711
    203706
    183259
    170406
    182403
    619942
    700304
    855780
    214947
    I hope this helps...
    Regards
    Olivia

  • Error: RmiModeler error: java.lang.ClassNotFoundException: x$y$z$ClassName

    Hi Can anyone explain why I'm getting the following error when I run the wsdeploytool?
    error: RmiModeler error: java.lang.ClassNotFoundException: com$triple$dqcp$ws$DqcWebServicesInterface
    Please note that I have the following end point definition in my jaxrpc-ri.xml file.
    interface="com.triple.dqcp.ws.DqcWebServicesInterface"
    implementation="com.triple.dqcp.ws.DqcWebServicesImpl"/>
    Thanks, Saycat

    We have modified the hello example to include a class that is not in the default directory/package but is in a seperate jarfile.
    On running, the wsdeploy complains that it cannot find the class in the jar file. So to remedy this we added the "-classpath" option above, but this caused an error:
    process-war:
    [echo] Running wsdeploy....
    [exec] info: created temporary directory: C:\jwsdp-1_0_01\docs\tutorial\exa
    mples\jaxrpc\hello\build\wsdeploy-generated\jaxrpc-deploy-af2f55
    [exec] info: processing endpoint: MyHello
    [exec] error: generator error: generator error: can't create directory: C:\
    jwsdp-1_0_01\docs\tutorial\examples\jaxrpc\hello\build\wsdeploy-generated\jaxrpc
    -deploy-af2f55\WEB-INF\classes;c:\dev\common\lib\util\ecetutil.jar\hello
    [exec] info: created output war file: C:\jwsdp-1_0_01\docs\tutorial\example
    s\jaxrpc\hello\dist\hello-jaxrpc.war
    [exec] info: removed temporary directory: C:\jwsdp-1_0_01\docs\tutorial\exa
    mples\jaxrpc\hello\build\wsdeploy-generated\jaxrpc-deploy-af2f55
    Not quite sure what it is trying to do here, but to me this "-classpath" option does not work.
    One workaround is to copy the jar into the common\lib directory in the web services pack, but this is fairly extreme!
    Surely there is a more practical solution?
    T.

  • Received an error "Unhandled error; n/a in GRC ERM 53 GRCPINW and GRCPIERP

    I had an issue in GRC ERM 5.3.  I could search for a transaction but if I tried to add it, the transaction screen was empty, although we did receive an error "Unhandled error; n/a" which was displayed at the top of the screen.
    I got reply from Basis team saying like
    Case Solution :
    notes can not be implemented:
    1441463 - already implemented (SP05)
    1514051 - can not be implemented (only for VIRRE / not available in YRS)
    1443612 - already implemented (SP12)
    1452772 - already implemented (SP12)
    no action done
    And Basis team installed GRCPINW and GRCPIERP SP6 components in My backend system last two months back.
    Can you please suggest me , Is still Require VIRSAHR and VIRSANH componets for use GRC ERM5.3  if still having GRCPINW adn GRCPIERP SP6 components
    And one more thing is Can i ask to basis team to implement 1514051 note into backend system.?
    Thanks and Regards,
    S. Nagaraju,
    09741517935

    Hello,
    Maybe I'm not getting your point, but you said you installed GRCPINW and GRCPIERP. Are you using GRC10 ???
    Are you planing to upgrade to GRC10? in this case, you might want to check here Note 1590030 - GRC10 Plug-in & 5.3 VIRSA Plug-in (RTA) Co-Existence.
    And... what's your SAP_BASIS release and SP?
    Cheers,
    Diego.

  • Error: Automation Error while creating a new app

    Hello Experts,
    Have installed FDM on one of our servers and trying to create a new application.
    Getting the following Error:
    Error: Automation Error. The System cannot find the file specified.
    We are using Oracle OLE DB Provider.
    Kindly Advise.
    Edited by: user7313376 on Apr 16, 2009 12:23 PM

    Check the path of the application and if its installed on server,pl check whether you have access to that path.
    If not get full access.

Maybe you are looking for