Method not found error when creating COM object

i am trying to initiate a COM object with CF and Imagemagick
on windows 2003. when i initiate the object i get the error "The
selected method convert was not found." if i do a dump of the
method in the COM object but i cant call it. what am i missing?
the code i am using is attached.
the VBscipt sample that comes with imagemagick works fine,
its just that CF cant all it. any ideas?
thanks
NF

Hi,
Have you had a reponse or find the solution?
I have a similar problem, no error message but that kill the
session.
Thanks
Didier

Similar Messages

  • Namespace not found error when creating data server for xml with namespace

    Hi
    I tried creating XML data server in ODI with namespace in xml file. I followed the below steps but could not success in creating the dataserver. however when I remove the namespace in xml file I am able to reverse engineer the xml file.
    1) Create xml data server
    2) select xml driver - com.sunopsis.jdbc.driver.xml.SnpsXmlDriver
    3) Provide the jdbc url - jdbc:snps:xml?f=D:/xmlnew/sample_namespace.xml&s=xmlns&d=D:/xmlnew/sample_namespace.dtd
    xml content
    <f:root xmlns:f="http://www.w3.org/TR/html4/">
    <table>
    <name>African Coffee Table</name>
    <width>80</width>
    <length>120</length>
    </table>
    </f:root>
    DTD content
    <!ELEMENT f:root ( table ) >
    <!ELEMENT length ( #PCDATA ) >
    <!ELEMENT name ( #PCDATA ) >
    <!ELEMENT table ( name, width, length ) >
    <!ELEMENT width ( #PCDATA ) >
    when I test connection it shows the following error.
    java.sql.SQLException: The model generated by the model mapper was not accepted by a validator: Model not accepted: Namespace not found:
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:133)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:62)
         at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java:1100)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.getLocalConnect(SnpsDialogTestConnet.java:371)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.localConnect(SnpsDialogTestConnet.java:794)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.jButtonTest_ActionPerformed(SnpsDialogTestConnet.java:754)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.connEtoC1(SnpsDialogTestConnet.java:137)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.access$1(SnpsDialogTestConnet.java:133)
         at com.sunopsis.graphical.dialog.SnpsDialogTestConnet$IvjEventHandler.actionPerformed(SnpsDialogTestConnet.java:87)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: The model generated by the model mapper was not accepted by a validator: Model not accepted: Namespace not found:
         at com.sunopsis.jdbc.driver.xml.SnpsXmlDTD.initialize(SnpsXmlDTD.java:389)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlDTD.initialize(SnpsXmlDTD.java:421)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlDTD.<init>(SnpsXmlDTD.java:150)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlSchema.<init>(SnpsXmlSchema.java:478)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlSchemaManager.createNewSchema(SnpsXmlSchemaManager.java:292)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlSchemaManager.getSchemaFromProperties(SnpsXmlSchemaManager.java:270)
         at com.sunopsis.jdbc.driver.xml.SnpsXmlDriver.connect(SnpsXmlDriver.java:114)
         at oracle.odi.jdbc.datasource.DriverManagerUtils$DriverProxy.connect(DriverManagerUtils.java:23)
         at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriverManager(DriverManagerDataSource.java:368)
         at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriverManager(DriverManagerDataSource.java:352)
         at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriverManager(DriverManagerDataSource.java:316)
         at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:275)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:99)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:62)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter$ConnectionProcessor.run(LoginTimeoutDatasourceAdapter.java:217)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)

    Hi,
    Thans for your reply.
    This is the DTD for my xmldoc.
    <!ELEMENT Data (Department+)>
    <!ELEMENT EmployeeID (#PCDATA)>
    <!ATTLIST EmployeeID col (EMPID) #IMPLIED>
    <!ELEMENT Education (EmployeeID, Sequence, Dgree)>
    <!ATTLIST Education table NMTOKEN #IMPLIED>
    <!ELEMENT Employee (EmployeeName, EmployeeID, DepartmentID, Education*)>
    <!ATTLIST Employee table NMTOKEN #IMPLIED>
    <!ELEMENT EmployeeName (#PCDATA)>
    <!ATTLIST EmployeeName col NMTOKEN #IMPLIED>
    <!ELEMENT DepartName (#PCDATA)>
    <!ATTLIST DepartName col NMTOKEN #IMPLIED>
    <!ELEMENT Table (Column+)>
    <!ATTLIST Table importType NMTOKEN #IMPLIED>
    <!ATTLIST Table parentTable NMTOKEN #IMPLIED>
    <!ATTLIST Table tag NMTOKEN #IMPLIED>
    <!ATTLIST Table columns NMTOKEN #IMPLIED>
    <!ATTLIST Table name NMTOKEN #IMPLIED>
    <!ELEMENT DepartID (#PCDATA)>
    <!ATTLIST DepartID col NMTOKEN #IMPLIED>
    <!ELEMENT MetaData (Table+)>
    <!ELEMENT Sequence (#PCDATA)>
    <!ATTLIST Sequence col NMTOKEN #IMPLIED>
    <!ELEMENT Dgree (#PCDATA)>
    <!ATTLIST Dgree col NMTOKEN #IMPLIED>
    <!ELEMENT Export (MetaData, Data)>
    <!ELEMENT DepartmentID (#PCDATA)>
    <!ATTLIST DepartmentID col NMTOKEN #IMPLIED>
    <!ELEMENT Column (#PCDATA)>
    <!ATTLIST Column deleteKey NMTOKEN #IMPLIED>
    <!ATTLIST Column isKey NMTOKEN #IMPLIED>
    <!ELEMENT Department (DepartName, DepartID, Employee+)>
    <!ATTLIST Department table NMTOKEN #IMPLIED>
    Thanks again!
    Yan

  • Action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can

    action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can I do? Thanks

    Hi, Please try to download the installer from the links provided in the following page: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    Thanks,
    Sunil

  • Get file not found error when I try to sync

    I get file not found error when I try to sync Iphone.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Out of curiosity, some here have recommended renaming an EXE file behind the scenes to eliminate that firewall message when starting up. Are you one of those folks that tried this? My thought is that if so, perhaps this is a result?
    Cheers... Rick

  • ICompanyService.GetGeneralService(System.String) Method Not found error

    Hi,
    When I am running my code in SAP 2007, I am getting following on calling of UDO.
    Method not found: 'SAPbobsCOM.GeneralService SAPbobsCOM.ICompanyService.GetGeneralService(System.String)'
    I could not understand why this error is occuring, although same code in running very well in SAP 8.8 and 8.81.
    Please suggest me a solutions.

    Hi
    sorry it is mistake from me. Check this SAP note regarding GeneralService it is available from SAP Business One 2007 A SP00 PL46 onwards . Please check you PL version
    How to use the GeneralService functionality to access UDOs via DI API.
    Solution
    The GeneralService allows access to User-Defined Objects (UDOs) via the DI API. Using the GeneralService, you can add, update and delete UDOs. This feature was added in SAP Business One 2007 A SP00 PL46.
    The following is an example of how to add data to a UDO. This example relates to a UDO with the following properties:
    Type = Document
    Unique ID = "Ex_1"
    Name = "EX_DOC"
    User-Defined Field = "Field1"
    Child Object Name = "EX_DOC_LINE"
    User-Defined Field (Child Object) = "Property1"
    Use this (VB.NET) code to add data to the UDO:
               Dim oGeneralService As SAPbobsCOM.GeneralService
               Dim oGeneralData As SAPbobsCOM.GeneralData
               Dim oGeneralDataChild As SAPbobsCOM.GeneralData
                 'Get the UDO by referencing the Unique ID (using the CompanyService Object)
               oGeneralService = oCompanyService. GetGeneralService("EX_1")
                         'Create data for new row in UDO - (Document Table)
               oGeneralData = oGeneralService.GetDataInterface(SAPbobsCOM. GeneralServiceDataInterfaces.gsGeneralData)
               oGeneralData.SetProperty("U_Field1", "A")
               'Create data for new row in the UDO Child - (Document Row Table)
          oGeneralDataChild = oGeneralData.Child("EX_DOC_LINE"). Add()
               oGeneralDataChild.SetProperty("U_Property1", "B")
               oGeneralService.Add(oGeneralData)
    See the following Blog for more information and another example:
               "UDO Access via DI API (in PL46)"
               http://www.sdn.sap. com/irj/scn/weblogs?blog=/pub/wlg/13008
    Regards
    Arun

  • MBean not found error while creating Resource Adapter

    Hi,
    During the post installation configuration of Oracle Identity Manager, I had to create Resource Adapter as mentioned in the steps below. In the final step, when I click OK, I’m getting an error message “An error has occurred. MBean not found” (I had created a new oc4j container called oc4j_oim under which this is being done). Complete error message displayed is pasted at the end fyi. Kindly suggest a workaround for this issue.
    Steps followed:
    Create the required Resource Adapter in Oracle Application Server as follows:
    a) Log on to the Application Server Control.
    b) From the View By list, select Application Servers.
    c) Click the server instance.
    d) On the page that is displayed, click Administration.
    e) Click Enterprise Messaging, and then click Database Persistence. The JMS connectors for
    the Oracle Application Server instance that are currently configured for use with database
    persistence JMS providers are listed.
    f) Click Deploy.
    g) In the Resource Adapter Module Name field, enter oimOJMSRA
    h) Select Add a new resource provider to be used by this connector.
    i) In the Resource Provider Name field, enter oimOJMSRP
    j) From the Datasource JNDI Location list, select jdbc/xlXADS.
    k) Click OK.
    Detailed Error Message:
    oracle.sysman.ias.studio.sdk.IASRuntimeException: MBean not found at oracle.sysman.ias.studio.sdk.SDKJMXUtil.queryName(SDKJMXUtil.java:141) at oracle.sysman.ias.studio.oc4j.jms.JMXDeployDbProviderAdminBean.deployDBProviderAndConfigure(JMXDeployDbProviderAdminBean.java:173) at oracle.sysman.ias.studio.oc4j.jms.DeployDbProviderHelper.deployDBProvider(DeployDbProviderHelper.java:242) at oracle.sysman.ias.studio.oc4j.jms.DeployDbProviderHelper.handleEvent(DeployDbProviderHelper.java:127) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)
    S/W Details:
    Application Server 10.1.3.3.0
    Identity Manager 9.1.0.1
    Regards,
    CC

    Hi Srinivas,
    Please check ULS log for more useful information when this error occurs.
    Please also check if this issue could be reprodued in other libraries, if not, you can use the new library instead.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Codec Not Found error when trying to render/export layered sequence

    I have a sequence that I never had problems with in the past but as of yesterday when I open the project and try to render or export. I get the infamous dialogue box saying, "Codec not found. You may be using a compression type without the corresponding hardware card."
    I've narrowed it down to only being a problem wherever I have two particular types of media clips layered one on top of the other. In this case it is occurring wherever I have an Apple ProRes 422 (HQ) clip layered with an Animation codec clip containing a graphical bug that was created in After Effects and exported as a Quicktime Movie with RGB+Alpha. Because of the Alpha channel in the bug clip, it is automatically given the Animation codec upon export from After Effects to retain and preserve the transparency needed. I've also narrowed it down to only occurring when all this is combined on a sequence with its compressor set to standard ProRes 422 or ProRes HQ. If I set it to any other codec, such as any DV/DVC Pro or MPEG IMX codec then I can render and export again.
    Also interesting is that I can nest the sequence into another sequence and render and export just fine as well, even with it set to either ProRes codec (which will probably prove to be a suitable workaround for the time being), however, any additional insight into this issue that anyone can provide, pertaining to what may have changed or caused my original sequence to suddenly not want to render anymore would be greatly appreciated.
    And if anyone else reading this comes across this this same type of problem themselves, then I suggest what I just got to work: Duplicate your sequence, then delete the clips from the new sequence and nest the original sequence into it.
    Here is some additional background info if desired:
    I'm using FCP 6.0.6. The sequence I have going here is set to Apple ProRes 422 and consists entirely of Quicktime Movie files. Video Track 1 has the main video clips using the ProRes HQ codec (Again, even with the sequence set to ProRes HQ, it doesn't make any difference here). Track 2 has a graphic bug that was created in After Effects and layered over the Track 1 clips at various places. I was able to work with these clips and render as well as export the sequence with no problems last week. However, I was requested to revise the bug in After Effects, and then replace the old bug with new bug and export the sequence again. So yesterday, I simply opened up the After Effects project file for the bug, made the revisions and exported it with a new name using the same settings as the previous bug. The render problem I'm now facing surfaced right when I opened the FCP project file yesterday, before even importing and replacing the old bug with the new bug. I went ahead and imported the new bug and placed it in place of where the old bug occurred. But the render and problem remained. On this particular problem sequence, I can render the new bug if I actually disable or remove the ProRes clip beneath it, but I cannot in turn render the ProRes clip after disabling/removing the Animation clip above it.
    Now, I can copy either type of clip into their own sequence allowing the clips' respective native settings (ProRes HQ & Animation) to take effect and then they will playback and export just fine. I can even copy the bug clip (Animation codec) and paste it into the other clip's ProRes HQ sequence and it will render and export just fine from there as long as it is placed next to the other clip and not layered over it. On these newer sequences, it is only when the bug (Animation) clip is layered over the ProRes HQ clip with the sequence set to ProRes or ProRes HQ do I tend to still get the "Codec not found" error.
    I've also tried the following steps to try and troubleshoot to no avail:
    1. Copied entire sequence into a new sequence. Problem still occurs.
    2. Closed FCP, trashed preferences, and restarted FCP. Problem still not resolved.
    3. Opened project on another computer, had same problem.

    Thanks for sharing these ideas about dealing with this error message.
    For what it's worth, I finally managed to solve a similar issue by going into sequence settings, choosing the Video Processing tab, and changing Render 10-bit YUV to Render 8-bit YUV.
    Maybe this helps someone?

  • File Not Found error when submitting PDF

    I've created a fillable PDF and set it to send completed submissions to http://www.domain.com/forms/ but I get this error message (even when I changed the folder permissions to 0777 from 0755 for a few seconds):
    Not Found
    The requested URL /forms/ was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache Server at www.domain.com Port 80
    Do I need to make the destination a document (e.g., ending in .html if sending data in HTML format)? What if I'm sending PDFs? I read on Adobe's site:
    If the data returns in FDF or XFDF format, the server URL must end with the #FDF suffix—for example, http://myserver/cgi-bin/myscript#FDF.
    This suggests perhaps that I need to be in cgi-bin and need some kind of script, even though other destination examples end in a slash. Anything you know about this would be appreciated, including permissions.
    Also, I might want the final destination to be on a domain whose site is hosted by WordPress. I don't think that should be an issue, but feel free to share any experience you've had with that.
    The form can be seen at http://profleet.com/FormerEmployeeAuthorizationElectronicMT.pdf if anyone is curious about it. Thank you.

    That makes sense; I just find it counterintuitive that such a big software program wouldn't better spell out what's needed. I'm not the most expert webmaster, but I'm sure Acrobat's audience includes far more casual users.
    I can write HTML and upload pages, but I don't see how that translates to what I need to do in this case. I even tried creating a blank .html page and having Submit send to IT; I have a feeling sending to the folder containing it wouldn't work any better and that I need a script--but despite some experience with scripts, since I'm not privy to Adobe's code, I don't see how I'm supposed to be able to figure out on my own what it is I'm supposed to do and why Adobe doesn't provide some examples. I'll try a search and hope I come up with the right terms.
    Again, I appreciate your input and that of others on this forum--but I mut be missing something when it comes to understanding Adobe and PDFs because I don't normally have to struggle at every turn like this when it comes to other aspects of webmastery.

  • Page Not Found Error when clicking on Crystal Report Viewer print icon

    Hi,
        I am working with ASP.NET 2.0 and crystla reportXI release2.
        I am getting "Page Can not be Found " error when clicking on Crystal Report Viewer print icon.
        Could you please tell me how to get rid of this error?
    Regards,
    Smitha

    This sounds like a postback issue. Does your application handle postback by putting the report in session?
    There is a [sample|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_samples_aspx/data/crsdk_net_tutorials_115_en.zip] to look at on our website. It was created with Crystal Reports XI R2 and Visual Studio .NET but the code will be the same.
    A short pseudocode would be something like this:
    Dim rptDocument As ReportDocument
    If Not Me.IsPostBack or Session("Report") = Nothing Then
    rptDocument = New ReportDocument
    rptDocument.Load(sGlobalPath & "\myreport.rpt";)
    Ludek

  • Getting 104 resource not found error, when deploying my first servlet

    Hi,
    I am new to servlets, and after doing little home work i have created a small servlet but i am i getting http 104 resource not found error.
    steps i followed:
    1) installed pre-configured version of tomcat from http://www.coreservlets.com/Apache-Tomcat-Tutorial/.
    2)created new directory called ch1 under webapps, created WEB-INF under ch1
    3)included web.xml, classes in WEB-INF directly
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
    version="2.5">
    <servlet>
    <servlet-name>Ch1servlet</servlet-name>
    <servlet-class>Ch1servlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Ch1servlet</servlet-name>
    <url-pattern>/servlet</url-pattern>
    </servlet-mapping>
    </web-app>
    4) included .class file under classes folder from following Ch1servlet.java file, I have set class path to point to servlet-api.jar file and jsp-api.jar and compliled following java file to get .class file which is included in classes folder
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Ch1servlet extends HttpServlet
    public void doGet(HttpServletRequest request,HttpServletResponse response)throws IOException
    response.setContentType("text/html");
    PrintWriter out=response.getWriter();
    java.util.Date today=new java.util.Date();
    out.println("<html>"+
    "<body>"+
    "<h1 align=center>HF\'s Chapter1 Servlet</h1>"
    +"<br>" + today + "</body>" + "</html>");
    5) I am started tomcat server and when typed http://localhost( changed port from 8080 to 80), its giving tomcat page and not showing any error
    6) When i typed http://localhost/ch1/servlet/Ch1servlet, its giving http 404 error
    type Status report
    message: /servlet/Ch1servlet
    description: The requested resource (/servlet/Ch1servlet) is not available.
    7) i have uncommented(it comes preconfigured) the invoker part in web.xml.
    I have tried including servlet in an package and without package
    I am not sure if its problem with server configuration orelse problem with my file placing.
    Please let me know if you have any idea what went wrong.

    I found this, unable to copy it, so i am typing it:
    Feb11,2008 11:55:57 AM org.apache.catalina.core.AprLifecycleLIstener init
    INFO: The Apache Tomcat Native Library which allows optimal performance in production environemnt was not found on the java.library.path:c:\program Files\Java\jdk1.6.0\bin;....
    last line says
    org.apache.cataline.startup.catalina start
    INfo: Server startup in 657ms

  • File not found error when opening securedoc.html

    We are having a sudden issue where recipients of our secure envelope emails will open a message from us with attachments and they will get a "File Not Found" error message.
    We are still using a Post X appliance, but no config changes were made whatsoever and this started happening since last weekend. (Oct. 9-11)
    I did reboot the Post X box and thought the problem was fixed w/ the reboot. I sent a secure message to myself and then opened it along with the attachment and all was good. I sent the second test and the problem was back; "File not found".
    I have noticed that when I get file not found the address bar in my browser is pointing to: https://res.cisco.com/websafe/eo/error?error=notfound
    The time after rebooting when it did work it pointed to file on my local computer hard drive:
    file:///C:/Documents%20and%20Settings/mymachine/Local%20Settings/Temporary%20Internet%20Files/PXTemp/-6pAQ4_Y5hJEmKdQhtG8lhNx0zo!/PX_L_1255377132267.html
    Any ideas what could have caused this sudden issue? How do we resolve? I have a call into support, but they have been researching it all day and our secure mail is down!

    used bridge, didn't work.
    tried right-click, double click..open in program.
    same error.
    files work in other adobe products.....
    only way to get a jpg in there is to "paste" it in.

  • HP Device Not Found Error when trying to print or scan wireless- HP Officejet Pro L7590

    Have had HP Officejet Pro L7590 All-In-One Printer for years.  Always worked fine and I had no issues printing via wireless connection.  Several months ago..  Possibly after a Windows 8 update.  From Windows 8 to Windows 8.1 I have not been able to use the printers wireless feature.  When I try to print or scan it shows the printer as offline.  Also get an error message that tells me "HP Imaging device is not found".  I can still print when connected to USB.  Cannot scan or use features of the HP software suite.  I have tried several times to correct.  Reloading the software and drivers several times, but no success.  I just tried again and was able to print the test page wireless, so got all excited and thought I fixed it.  Then tried to print something and got the same error message I have seen in the past.  I have talked to certain supports saying that it may be a firewall setting within Windows.  Any other suggestions?  Thanks

    Hi @rfjones002,
    Welcome to the HP Support Forums! I see you are not able to print or scan wirelessly to your HP Officejet L7590 and your computer running the Windows 8.1 Operating system. You get a 'Printer offline' or 'HP Imaging device not found' errors.
    I would like you to start with the steps listed below:
    Hold down the Windows Logo key () on the keyboard and the 'R' to open the run box, type %temp%
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted
    Uninstall the software again - Uninstall the Printer Software Instructions
    When the uninstall has completed restart the computer
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type
    msiexec /unregister
    and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type
    msiexec /regserver
    and then click OK
    *Note: there is a space between the c and the /
    If you have any difficulty with this step, please use this link to perform it another way. Restarting Windows Installer
    Run Disk cleanup from Accessories\ System Tool < How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayerflashplaye​r/downloads.html
    Perform a clean boot > How to perform a clean boot in Windows
    Download the following SP40669 File Download - if this does not download and or install please proceed to the next step.
    Turn off the Real-Time Scanning and Firewalls; The image below is a McAfee example, if you have a different antivirus program and need help disabling Real-Time Scanning and Firewalls let me know.
    - Image source
    Now you can go ahead and download and install the software here >
    HP Officejet Pro Full Feature Software and Driver
    If you are unable to print a test page, please run the HP Print and Scan Doctor- It was designed by HP to provide users with the troubleshooting and problem solving features needed to resolve many common problems experienced with HP print and scan products connected to Windows-based computers.
    Please let me know if this was successful! I will watch for your reply.
    Thank you,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Page not found error when  navigating in Iview  application

    Hi,
    I have developed an application,and I am able to view a sucessfull preview of the Page as well.There are htmlb links on the page.When clicked,they navigate to the next jsp page.This iview was assigned to a user,and the portal was logged in though a local ip address.The application works fine.
    In trying to access the portal though an external Url,the initial page comes up perfectly fine.However the next page,does not come up,when a link on the first page is clicked.I get initially a popup with the message:
    "This page contains both Secure and Non secure Items
    .Do you want to display the non secure Items."
    The options on the Popup were yes,no,More Info.
    When I clicked yes then I get the display page not found error.The error is:
    " <b>The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</b> "
    The Information I get when I click on More Info is-
    <b>Downloading non-secure content from a secure Web site
    The Web site you are viewing is a secure site. It uses a security protocol such as SSL (Secure Sockets Layer) or PCT (Private Communications Technology) to secure the information you send and receive.
    When sites use a security protocol, information that you provide, such as your name or credit-card number, is encrypted so that other people can’t read it. However, this Web page also contains items that do not use this secure protocol.
    Given what you know about this Web site and your computer, you must decide whether to continue working with this site.
    If you do not feel confident about working with this site, click No.</b> "
    This problem occurs only to a particular user.If I add the role to another user,and view the iview I am able to navigate without problem(there is no popup as well).Even for this User,it is happening only when,I access through extrenal url,not when I access the portal through the local IP Address.
    Regards,
    Harish

    Hi,
    This is a further Update.The problem described above has  something to do with the roles.When some roles(cusom) are assigned the navigation occurs.Can you please let me know if there is any role related configuration with SSL.
    Regards,
    Harish

  • Method not found error even though method exists....

    hello
    i m a newbee to sun and oracle technologies
    these days i m doing teh SRDemo tutorial with JDeveloper (ADF)
    I m having a problem and cannot figure out its solution so far
    problem is i have a utility funtion defined in a AFDUTIL javaclass,
    when i call this function in any class ,
    and one of its method
    compiler gives me error method not found
    even though i select the method from the list, plus when from cotenxt menu it can go to method as welll
    please help me to solve this issue
    regards

    well the code behind for the button is as follows
    public String cancelButton_action() {
    This action is actually reused from two pages, so we just need to ensure that we
    use the correct binding container reference.
    DCBindingContainer dcBindings =
    (DCBindingContainer)ADFUtils.findBindingContainer(getBindings(),
    "app_SRCreatePageDef");
    Reset the product list to the first item:
    DCIteratorBinding productsIter =
    dcBindings.findIteratorBinding("findAllProductsIter");
    productsIter.setCurrentRowIndexInRange(0);
    Clean out the description field:
    AttributeBinding problem =
    (AttributeBinding)dcBindings.getControlBinding("problemDescription");
    problem.setInputValue(null);
    Navigate back to the list page
    return "GlobalHome";
    and in ADF UTILS the method findBindingContainer is defined as
    public static BindingContainer findBindingContainer(BindingContainer bindings, String pageDefName){
    BindingContext bctx = ((DCBindingContainer)bindings).getBindingContext();
    BindingContainer foundContainer = bctx.findBindingContainer(pageDefName);
    return foundContainer;
    plus in source code of cancelbutton window message gives error BindingContainer findBindingContainer(BindingContainer bindings, String pageDefName) cannot invoke BindingContainer findBindingContainer(BindingContainer bindings, String pageDefName)(ADFUTILS)
    Message was edited by:
    user518797

Maybe you are looking for

  • I need help getting my purchased music back please

    I'm pretty sure i have somehow deleted a lot of music from my itunes and computer accidentally. I am only bothered about getting my purchased music back, most of which now has a grey exclamation mark next to it and says it cannot be located. I have t

  • XML to URL Encoded (XSLT?)

    I have some data in a Document object and need to convert it to URL encoded format so, for example this: <share> <code>GSK</code> <price>13.34</price> </share> becomes something like... &code=GSK&price=13.34& ... I've been looking into doing this wit

  • I can't see the button and text item, After compile...

    I bring a form source at the another ERP application. and compile it at the our ERP application. There is no problem at compiling file... comfile succesfully complete... but There is no text item and button when i execute program... What is the probl

  • GPU Acceleration not working

    Hi, I have the mercury Playback Engine CPU Acceleration activated in Premiere Pro CC 2014 but I'm still getting the red render line on my timeline. This has only started happening recently, possibly after installing an update, I'm not sure. Can anybo

  • Why won't DVD Player work with Mountain Lion?

    I just tried to play a DVD on my Macbook Pro that worked just fine before I updated to Mountain Lion. Each time I try to play it, I get an error telling my that DVD Player has "unexpectedly quit." I've tried shutting down and restarting with no luck.