GetMethods from AuthoringScope is never called

There are two threads on the theme:
"I'm working on MPF package containing the language service. I need to implement MethodTips feature.
I've created the class inherited from the AuthoringScope class from MPF and override following methods:
GetDataTipText, GetDeclarations, GetMethods, Goto.
All of these except GetMethods are called ok but GetMethods is never called. "
I did as described in these threads (call the 4 methods StartName, ...) but it did not work until...
ProvideLanguageService(typeof(PRLangServ),
"PR Language",
                             106,            
// resource ID of localized language name
                             CodeSense =
true,            
// Supports IntelliSense
                             RequestStockColors =
true,  
// Supplies custom colors
                             EnableCommenting =
true,     
// Supports commenting out code
                             EnableAsyncCompletion =
false, 
// Supports background parsing
                             AutoOutlining=
true
If I put EnableAsyncCompletion to true, GetMethods will never be called, if I put it as false, then it will be called.
Why ??? Can it be considered like a bug?

Hi philoroussel2,
I'm not sure how this method works, I'm going to involve someone else into your case. At the same time, you can submit a feedback here for the VS product team, they might give you a good explanation about this problem.
https://connect.microsoft.com/VisualStudio
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • ServletException from init() but destroy() never called

    Hello,
    During init() an essential resource was unavailable so a ServletException was thrown:
    StandardWrapperValve[myservlet]: Allocate exception for servlet myservlet
    javax.servlet.ServletException: MyServlet: Connection refused to host
    However before this, connections to other resources (database) were established.
    My destroy() method would clean up all these connections to resources but this was never called.
    On subsequent requests to this servlet, the container kept trying to initialise the servlet, each time creating more database connections which were never released.
    Is this correct behaviour? Should destroy() be treated like finally() i.e. never rely on it being called? Or, should it have been called by the container when init() threw an exception?
    The servlet engine was Tomcat 4.1.24.
    Thanks.

    Nevermind, I had a look at the Tomcat source and have seen what is needed. To stop the servlets init() being called again I should have marked it as unavailable by throwing an UnavailableException (which extends ServletException) and it looks as though I should also have cleaned up the resources first too.

  • PL/SQL Call Back function is never called

    Hi, I have a AQ set to run a PL/SQL Call Back procedure, but the procedure is never called.
    Oracle version is 11.2.0.2 Standard Edition
    When I query aq$<queue>, the MSG_STATE column is always "ready".
    This is the queue creation script
    begin
      DBMS_AQADM.CREATE_QUEUE_TABLE ( queue_table => 'POLERMESSAGE',
                                      queue_payload_type => 'POLER_MESSAGE',
                                      multiple_consumers => TRUE );
      DBMS_AQADM.CREATE_QUEUE( queue_name => 'POLER_QUEUE',
                               queue_table => 'POLERMESSAGE');
      dbms_aqadm.add_subscriber( queue_name => 'POLER_QUEUE',
                                 subscriber => sys.aq$_agent( 'POLER_RECIPIENT', null, null ) );    
      dbms_aq.register ( sys.aq$_reg_info_list( sys.aq$_reg_info('POLER_QUEUE:POLER_RECIPIENT',
                                                                 dbms_aq.namespace_aq,
                                                                 'plsql://tr',
                                                                 HEXTORAW('FF')) ) ,
                           1 );    
      DBMS_AQADM.START_QUEUE(queue_name => 'POLER_QUEUE');    
    end;
    /This is the content of "tr" procedure
    create or replace
    procedure tr ( context raw,
                           reginfo sys.aq$_reg_info,
                           descr sys.aq$_descriptor,
                           payload raw,
                           payloadl number)
    as
      dequeue_options dbms_aq.dequeue_options_t;
      message_properties dbms_aq.message_properties_t;
      message_handle RAW(16);
      message poler_message;
    BEGIN
      dequeue_options.msgid := descr.msg_id;
      dequeue_options.consumer_name := descr.consumer_name;
      DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                      dequeue_options => dequeue_options,
                      message_properties => message_properties,
                      payload => message,
                      msgid => message_handle);
      insert into lxtr values ( Nvl( To_Char(message.PolerMsgNro ), 'ooops' ), systimestamp ) ;
      commit ;
    end tr;If I query sys.reg$, I see it registered there:
    SQL> select subscription_name, location_name, status, state from sys.reg$;
    SUBSCRIPTION_NAME
    LOCATION_NAME
       STATUS     STATE
    "SPARCS"."POLER_QUEUE":"POLER_RECIPIENT"
    plsql://tr
            0         0I was working, until I re-compiled (don't ask...) the trigger that enqueue the message
    This is the section of the trigger (post insert for each row) that do the enqueuing. It seems to be working, since it is enqueuing. The issue is the dequeue.
    DECLARE
      enqueue_options dbms_aq.enqueue_options_t;
      message_properties dbms_aq.message_properties_t;
      message_handle RAW(16);
      message poler_message;
      err varchar2(2000);
    BEGIN
        message := poler_message(PolerMsgId,  PolerMsgNro );
        dbms_aq.enqueue(queue_name => 'POLER_QUEUE',
                        enqueue_options => enqueue_options,
                        message_properties => message_properties,
                        payload => message,
                        msgid => message_handle);
    END;If I run the code below, message is cleanly dequeued
    declare
      dequeue_options      dbms_aq.dequeue_options_t;
      message_properties   dbms_aq.message_properties_t;
      message_handle       RAW(16);
      message              poler_message;
    BEGIN
      dequeue_options.consumer_name := 'POLER_RECIPIENT' ;
      dbms_aq.dequeue( queue_name => 'POLER_QUEUE',
                       dequeue_options       => dequeue_options,
                       message_properties    => message_properties,
                       payload               => message,
                       msgid                 => message_handle);
      COMMIT;
    END ;Can anyone please give me any hints on what should I do next. There is nothing on the alert log...
    Thank you in advance,
    Tiago

    1) Very few PL/SQL programmers would consider it good form to have procedures with excessive numbers of parameters. In any language, though, it's possible to write poor code.
    2) Initially, you're right-- the performance of properly defined SQL statements via JDBC is little different than the performance of PL/SQL stored procedures. Frequently, however, SQL statements in Java applications do not take advantage of bind variables, which will significantly limit their scalability. Maintaining SQL statements in client applications makes it significantly more difficult on the support side-- if you find a bug in a stored procedure, you can fix the bug in one place-- if you find a bug in embedded SQL, you have to fix the code everywhere the client is deployed. Maintaining PL/SQL stored procedures also makes optimization easier-- frequently your DBA will be able to boil down a stored procedure to a couple of SQL statements and vastly improve performance (i.e. INSERT INTO <<table name>> SELECT <<column list>> from <<other table>> rather than looping over a cursor doing single-row inserts). Finally, PL/SQL stored procedures enable reuse-- when the next application wants to access the database, it doesn't have to rewrite your SQL.
    3) If the alternative to the bind variables (?'s) is a bunch of literals, I'll spend the extra time writing the code for the tremendous increase in scalability.
    4-6) You can certainly pass classes from Java to PL/SQL and back. You can also write Java stored procedures, rather than writing PL/SQL stored procedures). Oracle has been one of the leading proponents of Java.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • NamespaceContext.getPrefix() never called

    I am a newbie in the Java XML world.
    Here is my issue and the snippet of code is used to explain the problem:
    XPathVariableResolver jxvr = new JSTLXPathVariableResolver(pageContext);
    Node contextNode = adaptParamsForXalan(n, xpathString.trim(), jxvr);
    XPath xpath = XPathFactory.newInstance().newXPath();
    xpath.setNamespaceContext(jstlXPathNamespaceContext); //jstlXPathNamespaceContext is
    // initialized somewhere else
    xpath.setXPathVariableResolver(jxvr);
    Now when the xpath is evaluated using:
    xpath.evaluate(xpathString, contextNode);
    Under the debugger I can see that this call eventually calls the getNamespaceURI() method
    of JSTLXPathNamespaceContext (class for jstlXPathNamespaceContext) and then after that
    I land up at the resolveVariable(QName qname) call of JSTLXPathVariableResolver.
    What I notice in resolveVariable() call is that qname.getPrefix() is always an empty string. However, qname.getNamespaceURI() returns the proper URI string. In addition, prior to reaching resolveVariable() in JSTLXPathVariableResolver, I do see that the getNamespaceURI() method
    is being called in JSTLXPathNamespaceContext class. However, getPrefix() method of this
    class is never called. My instinct says that if this was called before resolveVariable() method is
    reached (during the creation of QName) I would get a valid prefix instead of an empty string.
    Could someone help with this. Is there something that I am doing wrong. Where does QName
    get created in resolveVariable() and why does it not call getPrefix()
    Please let me know if I can provide more info
    Thanks in advance
    -Dhiru

    The installer extension isn't removed with the application. It still can be found in Java Cache Viewer. When you remove this extension using Java Cache Viewer the uninstall method will be called.
    Is there a way to force the extension uninstallation when the main application is being removed? Removing the very application is user-friendly, you can do it from the Control Panel in Windows. It looks like JWS is missing a very important feature.
    I'm using Java 1.6.0_03 right now.

  • How to set a cookie in the browser from an html page called via an Iview

    How to set a cookie in the browser from an html page called via an Iview
    Hello all,
    I have an issue which is causing problems. I have a snap survey (html form with submit and cookie setting) which is embedded in a url iview.
    Although the submit and the form work fine, the portal will not allow the cookie to be set it seems.
    Is there a way to allow cookies to be set from an embedded page in a url iview??
    You will make my day if you know!
    System: EP7 SP13
    Kind regards
    Alex

    Hi,
    Check this:
    http://www.oracle.com/technology/products/ias/portal/html/same_cookie_domain_with_pdkv2.html
    Cookie Basics
    Web browsers have built in rules for receiving and sending cookies. When a browser makes a request to a web server and the web server returns cookies with the response, the browser will only accept a cookie if the domain associated with the cookie matches that of the original request. Similarly, when a browser makes a subsequent request, it will only send those cookies whose domain matches that of the target web server.
    These rules are designed to ensure that information encoded in cookies is only "seen" by the web server(s) that the originator of the cookie intended. These rules also ensure that the cookie cannot be corrupted or imitated by another server. By default, the domain associated with a cookie exactly matches that of the server that created it. However, it is possible to modify the domain at the time the cookie is created. Relaxing the cookie domain increases the scope of the cookie's visibility making it available to a wider "audience" of web servers.
    For example, if a cookie is created by a.us.oracle.com, it's domain will usually be set to a.us.oracle.com. This means that the browser will only send the cookie to a.us.oracle.com. It will never send it to any other servers. However, if at the time of creation, the domain of the cookie is set to .us.oracle.com, the browser will send the cookie to any server whose domain falls within .us.oracle.com. such as portal.us.oracle.com, provider.us.oracle.com, app.us.oracle.com etc
    Regards,
    Praveen Gudapati

  • H:commandLink action never calls bean

    Hi , I having some problem with h:commandLink, its never call my bean
    below is my code.
    <h:commandLink action="#{pc_trackingSearchPageBean.doTrackingGroupSearch}">
                                            <h:outputText id="ownerID" value="#{varreceivables.ownerID}" />                                        
                                       </h:commandLink>
    any suggestions?
    Thanks
    Srikanth

    Here is my backing bean..
    The code is a mess now, as I had tried out all possible options I came across in net!!
    public class BikesBean {
         BikeVO bikeVO;
         BikesFacadeI bikesFacade;
         BikeStoreVO bikeStoreVO;// = new BikeStoreVO();
         /** List of bikes for Bikes listing. */
    private HtmlDataTable bikesModel;
    private boolean editMode = false;
    private BikeVO searchBikeVO;
              bikeVO = new BikeVO();
              searchBikeVO = new BikeVO();
         public void setBikesFacade(BikesFacadeI bikesFacade) {
              this.bikesFacade = bikesFacade;
         public BikesFacadeI getBikesFacade() {
              return bikesFacade;
         /*public BikeStoreVO getBikeStoreVO() {          
              //if(bikeStoreVO == null)
              //     bikeStoreVO = new BikeStoreVO();
              return bikesFacade.listBikes();
              //return bikeStoreVO;
         public List getMyBikes() {
              System.out.println("in BikesBean..getMyBikes.."+bikeStoreVO);
              if(bikeStoreVO == null)
                   bikeStoreVO = new BikeStoreVO();
              return bikeStoreVO.getBikes();
         public BikeVO getBikeVO() {
              return bikeVO;
         public void setBikeVO(BikeVO bikeVO) {
              this.bikeVO = bikeVO;
         public boolean isEditMode() {
              return editMode;
         public void setEditMode(boolean editMode) {
              this.editMode = editMode;
         public BikeVO getSearchBikeVO() {
              return searchBikeVO;
         public void setSearchBikeVO(BikeVO searchBikeVO) {
              this.searchBikeVO = searchBikeVO;
         public String listBikes() {          
              bikeStoreVO = bikesFacade.listBikes();
              //bikesModel.setWrappedData(bikeStoreVO.getBikes());
              clearSearch();
              return "listbikes";
         public String searchBikes() {          
              bikeStoreVO = bikesFacade.searchBikes(searchBikeVO);          
              if(bikeStoreVO.getBikes() == null || bikeStoreVO.getBikes().isEmpty()) {
                   FacesContext context = FacesContext.getCurrentInstance();
                   context.addMessage(null, MessageFactory.
                   getMessage("noMatch", new Object[] { "Model -> "+searchBikeVO.getModel() +" Manf. -> "+ searchBikeVO.getManufacturer()}));
                   return null;
              //bikesModel.setWrappedData(bikeStoreVO.getBikes());
              return "listbikes";
         public String viewAddBike() {          
              bikeVO = new BikeVO();
              this.editMode = false;
              return "viewaddbike";
         public String addBike() {          
              bikeStoreVO = bikesFacade.addBike(bikeVO);
              //bikesModel.setWrappedData(bikeStoreVO.getBikes());
              clearSearch();
              return "listbikes";
         public String viewEditBike() {          
              //this.bikeVO = (BikeVO) bikesFacade.getBikeById(((BikeVO) bikesModel.getRowData()).getBikeId());
              this.bikeVO = (BikeVO)this.getBikes().getRowData();
              //FacesContext ctx = FacesContext.getCurrentInstance();
              //ValueBinding binding = ctx.getApplication().createValueBinding("#{editContact}");
              //binding.setValue(ctx, editContact);
              this.editMode = true;
              return "viewaddbike";
         public HtmlDataTable getBikes() {
              return bikesModel;
         public void setBikes(HtmlDataTable bikesModel) {
              this.bikesModel = bikesModel;
         public String deleteBike() {
              //String attrvalue1 = (String) event.getComponent().getAttributes().get("delBikeId");          
              /*BikeVO vo = (BikeVO) bikesModel.getRowData();
              System.out.println("Bike Id.."+vo.getBikeId());
              bikeStoreVO = bikesFacade.deleteBike(vo, searchBikeVO);
              bikesModel.setWrappedData(bikeStoreVO.getBikes());*/
              return "listbikes";
         public String updateBike() {
              System.out.println("in BikesBean..updateBike..");
              bikeStoreVO = bikesFacade.updateBike(bikeVO);
              //bikesModel.setWrappedData(bikeStoreVO.getBikes());
              return "listbikes";
    anf here is my faces config..along with JSF, i am using Spring+Hibernate
    <faces-config>
    <application> <variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
    </application>
    <navigation-rule>
              <from-view-id>/welcome.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>back</from-outcome>
                   <to-view-id>/index.jsp</to-view-id>
              </navigation-case>
              <navigation-case>
              <from-outcome>listbikes</from-outcome>
              <to-view-id>/listBikes.jsp</to-view-id>
         </navigation-case>      
         <navigation-case>
              <from-outcome>viewaddbike</from-outcome>
              <to-view-id>/addBike.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
              <from-view-id>/addBike.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>listbikes</from-outcome>
                   <to-view-id>/listBikes.jsp</to-view-id>
         </navigation-case>
         <navigation-case>
                   <from-outcome>welcome</from-outcome>
                   <to-view-id>/welcome.jsp</to-view-id>
         </navigation-case>
         </navigation-rule>     
         <navigation-rule>
              <from-view-id>/listBikes.jsp</from-view-id>               
              <navigation-case>
                   <from-outcome>welcome</from-outcome>
                   <to-view-id>/welcome.jsp</to-view-id>
              </navigation-case>
              <navigation-case>
                   <from-outcome>viewaddbike</from-outcome>
                   <to-view-id>/addBike.jsp</to-view-id>
              </navigation-case>          
         </navigation-rule>
    <managed-bean>
    <managed-bean-name>bikesBean</managed-bean-name> <managed-bean-class>com.moh.jsfspring.BikesBean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
              <property-name>bikesFacade</property-name>
              <value>#{bikesFacade}</value>
         </managed-property>
    </managed-bean>
    <application>
              <message-bundle>myMessages</message-bundle>
    </application>
    </faces-config>

  • [svn] 3937: FxContainer fix to make sure partRemoved/ partAdded are never called with a null instance.

    Revision: 3937
    Author: [email protected]
    Date: 2008-10-28 17:37:25 -0700 (Tue, 28 Oct 2008)
    Log Message:
    FxContainer fix to make sure partRemoved/partAdded are never called with a null instance. In this case, in clearSkinParts(), we would call partRemoved() on all parts, whether they were there or not. This was causing a Thermo bug.
    ASDoc fixes for Group, FxContainer, and FxDataContainer. Removing content property from ASDocs...this is not the recommended way to add items/remove items to Group/FxContainer. You should use the addItem/removeItem APIs. This is consistent with Flash Player and Halo. Under the hood someone can still set the content array, but it's discouraged because you could set two Groups to the same content array, which is hard to detect. Also, made currentContentGroup in FxContainer mx_internal...this is an implementation detail for us and something we may change later on. I also added some other ASDoc cleanups and fixes.
    QE Notes: Ran checkintests and Mustella tests for gumbo/core/ and gumbo/components/FxDataContainer. Joann is updatating the one test that failed. WHen verifying SDK-17750, please also verify Thermo bug SDK-17800.
    Doc Notes: This change includes ASDoc changes
    Bugs: SDK-17750, SDK-17741, SDK-17756
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17750
    http://bugs.adobe.com/jira/browse/SDK-17800
    http://bugs.adobe.com/jira/browse/SDK-17750
    http://bugs.adobe.com/jira/browse/SDK-17741
    http://bugs.adobe.com/jira/browse/SDK-17756
    Modified Paths:
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/FxContainer.as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/FxDataContainer .as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/Group.as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/baseClasses/FxC omponent.as

    Revision: 3937
    Author: [email protected]
    Date: 2008-10-28 17:37:25 -0700 (Tue, 28 Oct 2008)
    Log Message:
    FxContainer fix to make sure partRemoved/partAdded are never called with a null instance. In this case, in clearSkinParts(), we would call partRemoved() on all parts, whether they were there or not. This was causing a Thermo bug.
    ASDoc fixes for Group, FxContainer, and FxDataContainer. Removing content property from ASDocs...this is not the recommended way to add items/remove items to Group/FxContainer. You should use the addItem/removeItem APIs. This is consistent with Flash Player and Halo. Under the hood someone can still set the content array, but it's discouraged because you could set two Groups to the same content array, which is hard to detect. Also, made currentContentGroup in FxContainer mx_internal...this is an implementation detail for us and something we may change later on. I also added some other ASDoc cleanups and fixes.
    QE Notes: Ran checkintests and Mustella tests for gumbo/core/ and gumbo/components/FxDataContainer. Joann is updatating the one test that failed. WHen verifying SDK-17750, please also verify Thermo bug SDK-17800.
    Doc Notes: This change includes ASDoc changes
    Bugs: SDK-17750, SDK-17741, SDK-17756
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17750
    http://bugs.adobe.com/jira/browse/SDK-17800
    http://bugs.adobe.com/jira/browse/SDK-17750
    http://bugs.adobe.com/jira/browse/SDK-17741
    http://bugs.adobe.com/jira/browse/SDK-17756
    Modified Paths:
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/FxContainer.as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/FxDataContainer .as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/Group.as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/baseClasses/FxC omponent.as

  • Java.sql.SQLException: execute() never called java.sql.SQLException: execut

    Hi,
    I am having problem in with depolying application developed using creator on Tomcat5.0. I am using sybase for connection
    MY JNDI settigns are correct. I have tried using
    1. Sun creator drvier class
    or
    2. JConnection6_0
    But am having no luck so far.
    Here is the stack trace
    java.sql.SQLException: execute() never called
    at com.sun.sql.rowset.CachedRowSetXImpl.checkExecuted(CachedRowSetXImpl.java:269)
    at com.sun.sql.rowset.CachedRowSetXImpl.next(CachedRowSetXImpl.java:1423)
    at webreporting.security.LoginValidator.authorizeUser(LoginValidator.java:61)
    at webreporting.Page1.button1_action(Page1.java:308)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
    at com.sun.rave.web.ui.appbase.faces.ActionListenerImpl.processAction(ActionListenerImpl.
    at javax.faces.component.UICommand.broadcast(UICommand.java:312)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChai
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:1

    java.sql.SQLException: execute() never called
    at com.sun.sql.rowset.CachedRowSetXImpl.checkExecuted(CachedRowSetXImpl.java:269)
    at com.sun.sql.rowset.CachedRowSetXImpl.next(CachedRowSetXImpl.java:1423)
    at webreporting.security.LoginValidator.authorizeUser(LoginValidator.java:61)You can't call cachedRowSet.next() until after you've executed your query. That's what the stack trace seems to say.
    cachedRowSet.execute() retrieves the rows from the database.
    next() lets you interate through the retrieved rows (aka the ResultSet).

  • API.Initialize() never called. Perpetual "Loading..."

    Using Catptivate 5, I am outputting for SCORM 2004. When I run this without an LMS, it runs fine, but when launched from the LMS, it perpetually says "Loading...".
    I did some Javascript debugging in the files that are output with the Captivate SCORM Package. I noticed that is does find the API, but it never calls API.Initialize().
    Doing some logging within the "function Captivate_DoFSCommand(command, args)" function, I notice it gets "cpSlideChanged" as the "command" parameter in an endless loop. Never anything else.
    Any ideas at all?

    Hi Bart
    Indeed Adobe folks may pop in from time to time, but largely the forums are user-to-user. And the more users that decide to cram the channel Adobe listens to about bugs (the Wish Form/Bug Reporting Form) the more likely it is to see a patch emerge or the bug fixed in a future release.
    Reporting link is in my sig line.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Supervisor has never called me back

    I have been without phone service since June 6.  Verizon keeps telling me my repair problem will be fixed the next day and it never happens.  I have been uable to speak to any supervisor about this eventhough i leave my number and they never call me back.  today when i called again, i was told i needed to schedule a repairman to come to my house eventhough last week i was told it was an area cable outage.  no one has any idea what the real issue is or what it being done to repair it.

    Hi efb,
    You currently have a support case open for this issue.  Please continue to respond in that thread, as the support agents assisting you will be looking there for any updates from you.

  • DSHandler::GetLogo never called in DocSign

    Hello everyone,
    I've noticed a small problem with the DocSign plugin sample from the 9.1 SDK: The custom signature logos (respectively the green check mark, the red X and the yellow question mark) are never shown and are instead replaced with... a yellow question mark. I first though it was the question mark from the "unknown" signature state, but after investigation, it seems that the DSHandler::GetLogo method is, in fact, never called at all.
    Since I didn't change anything to the DocSign source code, and since it worked fine with other users, i guess it should be a kind of bug from the current version of adobe acrobat.
    I build the plugin on Windows XP with VS9, and i tested it on Windows Vista with up-to-date trial versions of both Adobe Acrobat Pro and Adobe Acrobat Pro Extended.
    Does anyone knows a workaround?
    Thanks,
    M.H.

    Okay, I ran accross this document which made things a bit clearer:
    http://www.adobe.com/devnet/acrobat/pdfs/acrobat_digital_signature_appearances_v9.pdf
    I misunderstood the concept of "status logo", which is in fact only a small part of the signature appearance, builded using the signature AP dictionnary.
    What I really wanted was in fact (using the correct terminology) to add a watermark to the signature appearance. I successfuly managed to do so by injecting the given logo into the n2 layer of the signature AP dictionnary via the PSSigCreateAPNXObj procedure.
    This doesn't explain why the GetLogo method is never called (if i'm not wrong, GetLogo is supposed to set a default watermark when none are present). Maybe because GetLogo is used to inject a watermark in layers n1, n3, or n4, which are dependant of the signature status and are now deprecated for security reason...
    Anyway, thanks for the help,
    M. H.

  • DAQmxRegisterEveryNSamplesEvent is never called in MFC environment

    Hello? I'm uing DAQmx8.9 version with Visual  C++ 6. DAQmxRegisterEveryNSamplesEvent is never called in MFC environment.
    Do I have to upgrade to .Net base compiler? I have Visual Studio 2008 and will install this tomorrow to see if this may work in .Net compiler.
    I searched this forum and found I was not alone having this issue.
    Regards,
    Message Edited by anarkie on 08-05-2009 10:12 AM
    I'm converting DAQ to DAQmx..from Parkoz.com

    Anarkie,
    Thanks for posting on the NI Forums! From some of the documents that I was able to find it appears as though with DAQmx and using MFC you need to use VS 2003/2005/2008 for the best success. I am guessing that the reason you are having these problems is from using VS 6. I have attached the document I found that describes these points in more detail. Thanks!
    Programming NI-DAQ in Visual C++ .NET (MFC)
    Aaron W.
    National Instruments
    CLA, CTA and CPI

  • With prompts.tab_modal == true, WebProgressListener.OnStateChange is never called with flag WebProgressListener when window.alert is called

    For Firefox 10:
    I set prompts.tab_modal == true.
    And I register the WebProgressListener in my extension.
    When I call window.alert, nsIWebProgressListener.nsIWebProgressListener is never called with flag nsIWebProgressListener::STATE_IS_DOCUMENT.
    I need to register event handlers for all the element in the prompt dialog, how could I get notified when the tab-modal dialog popup?
    Thanks

    You are welcome. I'm glad you got it back up.
    (1) You say you did the symbolic link. I will assume this is set correctly; it's very important that it is.
    (2) I don't know what you mean by "Been feeding the [email protected] for several weeks now, 700 emails each day at least." After the initial training period, SpamAssassin doesn't learn from mail it has already processed correctly. At this point, you only need to teach SpamAssassin when it is wrong. [email protected] should only be getting spam that is being passed as clean. Likewise, [email protected] should only be getting legitimate mail that is being flagged as junk. You are redirecting mail to both [email protected] and [email protected] ... right? SpamAssassin needs both.
    (3) Next, as I said before, you need to implement those "Frontline spam defense for Mac OS X Server." Once you have that done and issue "postfix reload" you can look at your SMTP log in Server Admin and watch as Postfix blocks one piece of junk mail after another. It's kind of cool.
    (4) Add some SARE rules:
    Visit http://www.rulesemporium.com/rules.htm and download the following rules:
    70sareadult.cf
    70saregenlsubj0.cf
    70sareheader0.cf
    70sarehtml0.cf
    70sareobfu0.cf
    70sareoem.cf
    70sarespoof.cf
    70sarestocks.cf
    70sareunsub.cf
    72sare_redirectpost
    Visit http://www.rulesemporium.com/other-rules.htm and download the following rules:
    backhair.cf
    bogus-virus-warnings.cf
    chickenpox.cf
    weeds.cf
    Copy these rules to /etc/mail/spamassassin/
    Then stop and restart mail services.
    There are other things you can do, and you'll find differing opinions about such things. In general, I think implementing the "Frontline spam defense for Mac OS X Server" and adding the SARE rules will help a lot. Good luck!

  • Technician never showed up, never called & now can't come out for 3 more days???

    Yesterday afternoon I lost my TV, phone and internet service (X1 Platform). There were no outages in the area so customer service was called. After spending 45 minutes on the phone going through all the troubleshooting, the rep said a tech would have to come out. She said they could come out the next day, gave us our choice of times and we picked 8:30am-12:30pm. She said the tech would call 30 minutes before he showed up. Today the tech never calls, never shows and my husband stayed home all morning for this. He called customer service and they told him we didn't have an appointment scheduled. I called and was told the same thing and then the rep said in order to make another appointment we would have to do the troubleshooting again. I told her there was no way that was happening. She said she could see that troubleshooting had already been done, but for some reason the last rep never made an appointment for the tech to come out. I asked her if that made any sense at all, that they would just leave the issue unresolved like that. Magically, she suddenly found where the last rep had requested that a truck come out, but she still couldn't find the date and time. Then she tried to find the tech, but she couldn't - apparently he disappeared into a black hole. The rep then tells me I have to set up a new appointment (which she can now suddenly do without troubleshooting) and the earliest available is Sunday from 5-7.  Are you kidding me??? Because either customer service at Comcast or the tech screwed up, my time without service went from 1 day to 4 days??? She said she would make the appointment and then transfer me to a supervisor because only a supervisor is able to change the appointment date. At this point, I've been on the phone for 45 minutes and then I spent an additional 15 minutes waiting for a supervisor. The rep did come back every few minutes and tell me that the line was still busy and she hadn't forgotten about me...until the point where she disconnected me. I know very well that she had my phone number to call back because it's on my account.  Did she? No. So, I called back again. Explained the entire situation to a different rep. She said that a supervisor can't change the appointment time - only a dispatcher can. She took my husband's number and said that a dispatcher would call if a time becomes available for a tech to come out. If none becomes available, we're out of luck until Sunday night. I asked to talk to a supervisor. She had the nerve to ask why. She transferred me to someone who, of course, didn't answer the phone and I got to leave a voice message. That person (whoever it was) hasn't called me back. I don't think it's too much to ask that, when the mistake is Comcast's, you do whatever you can to make it right. It's not as if the tech showed up and nobody was home. My husband sat there for 4 hours waiting. We have also spent a good portion of our day on the phone trying to get someone to come out today or tomorrow at the latest. If I switched to a different company, they would be able to come out before Sunday to install new service, but you can't be bothered to make things right for an existing customer when you screw up.

    Fun update (no, not really). Called back numerous times since my last post with no luck. I'm pretty sure I've talked to every department conceivable at least once to try to get someone at Comcast to live up to the term "customer service" and get someone out to my house ASAP since they were a no-show today. One of the more entertaining conversations was with a supposed supervisor who informed me that she looked at my account and could see where I talked to a rep yesterday about my phone service being out and they had me check for a dial tone. I told her that absolutely never happened - we only tried troubleshooting the error code on the TV. This model employee proceeded to argue with me and kept repeating that we had checked for a dial tone. She refused to stop talking when I tried to correct her and proceeded to talk non-stop for a full minute before I pretty much screamed into the phone that, while we have the phone service, we don't use it, and we don't even have a phone hooked up in the house, so how in the world could we possibly have checked for a dial tone??? If someone isn't out tomorrow to fix this, I'm switching to U-verse. Nobody should be have to deal with customer service that doesn't care about the customer and can't admit to or fix their mistakes. 

  • How can I display the HTML page from servlet which is called by an applet

    How can I display the HTML page from servlet which is called by an
    applet using the doPost method. If I print the response i can able to see the html document. How I can display it in the browser.
    I am calling my struts action class from the applet. I want to show the response in the same browser.
    Code samples will be appreciated.

    hi
    I got one way for this .
    call a javascript in showDocument() to submit the form

Maybe you are looking for

  • Need help in creating Aria using Oracle APEX

    Hi, I am trying to develop an employee lookup using DBCON's PDF(http://www.dbcon.com/oracle_apex_ebook_aria.html). I downloaded the Oracle XE, version 11.0.0.28844 and used the APEX from this. But, the files provided by DBCON seem to be old. I tried

  • Reader X freezes in Windows Enterprise

    I've researched everything so far but can't fix this issue...When you load up a PDF document in Acrobat and click on comment, it freezes up...any idea why? we've loaded Symantec, Java 1.6.24, Office 2010, Multi-language pack and shockwave, all the mo

  • Hoking a PC to Fios TV

    Us there a cable box in a USB device that I can hook to my Laptop and watch fios TV and also use as a DVR?

  • The download doesn't work for me

    Neither Win nor Mac verions of the ZIP file link work. Either an empty file or it's not working...

  • Settings Issue or bug in latest Flash Plug-in release (16.0.0.305)?

    Intel Socket LGA 2011 | 32Gb Ram Windows 7 64-bit IE 11.0.9600.xxxxx Flash Player (Active X Version) 16.0.0.305 Description of Problem: Right-Clicking Flash Video, Setting Site Storage Trying to adjust site storage amount. PRIOR to setting the site t