"Application authentication required. Incorrect method call." on server start with Queues

Hi people!
I am using a message-driven EJB listening on a queue.
Everytime a start the server, the server deploys the enterprise
application with the MDB and the queue, and then gives this error
message:
"Application authentication required. Incorrect method call."
What am I missing?
Here are more details: The server is in fact CFMX6.1 in
standalone installation and I am using the hidden JRun inside it.
Here is an extract of ejb-jar.xml:
<message-driven>
<ejb-name>ij.portal.EventExecutor</ejb-name>
<ejb-class>ij.portal.EventExecutor</ejb-class>
<transaction-type>Container</transaction-type>
<acknowledge-mode>Auto-acknowledge</acknowledge-mode>
<message-driven-destination>
<!--javax.jms.Queue or javax.jms.Topic-->
<destination-type>javax.jms.Queue</destination-type>
<!--Durable or NonDurable-->
<subscription-durability>Durable</subscription-durability>
</message-driven-destination>
<!--
The queue that this MDB listens to. The name must be mapped
to
a real JNDI name in jrun-ejb-jar.xml.
-->
<resource-env-ref>
<resource-env-ref-name>EventQueue</resource-env-ref-name>
<resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
</resource-env-ref>
</message-driven>
A part of the jrun-ejb-jar.xml is:
<message-driven>
<ejb-name>ij.portal.EventExecutor</ejb-name>
<jndi-name>ij.portal.EventExecutor</jndi-name>
<resource-env-ref>
<resource-env-ref-name>EventQueue</resource-env-ref-name>
<jndi-name>jms/queue/EventQueue</jndi-name>
<mdb-destination>jms/queue/EventQueue</mdb-destination>
</resource-env-ref>
<message-driven-subscription>
<client-id>MDBSubscriber</client-id>
</message-driven-subscription>
</message-driven>
Finally, here is the jrun-resources.xml that defines the
queue:
<?xml version="1.0" encoding="UTF-8"?>
<!--
<!DOCTYPE jrun-resources PUBLIC "-//Macromedia Inc.//DTD
jrun-resources 4.0//EN"
http://jrun.macromedia.com/dtds/jrun-resources.dtd">
-->
<jrun-resources>
<jms-destination>
<jndi-name>jms/queue/EventQueue</jndi-name>
<destination-name>EventQueue</destination-name>
<destination-type>javax.jms.Queue</destination-type>
</jms-destination>
<jms-connection-factory>
<!-- jms provider factory name. Optional-->
<factory-name>QueueConnectionFactory</factory-name>
<!-- jndi name - name under wich this connection factory
will be available -->
<!-- to client in jndi. Required. -->
<jndi-name>jms/jndi-QueueConnectionFactory</jndi-name>
<!-- connection factory type (required ifno -->
<!-- can be one of the -->
<!-- following: -->
<!-- javax.jms.QueueConnectionFactory, -->
<!-- javax.jms.XAQueueConnectionFactory, -->
<!-- javax.jms.TopicConnectionFactory -->
<!-- javax.jms.XATopicConnectionFactory -->
<type>javax.jms.QueueConnectionFactory</type>
<!-- jms transport (rmi, tcpip, rmiiiopi, intravm).
-->
<!-- Required if no factory name was specified. -->
<transport>RMI</transport>
<!-- userName and password required if seamless
authorization will be used -->
<!-- (can be specified and updated, upon application
deployment via resorce-ref) -->
<username>guest</username>
<password>guest</password>
</jms-connection-factory>
<!-- MDB specifc connection factory - utilizes intra vm
connection, cannot be used by remote client -->
<jms-connection-factory>
<!-- jms provider factory name. Optional-->
<factory-name>MDBQueueConnectionFactory</factory-name>
<!-- jndi name - name under wich this connection factory
will be available -->
<!-- to client in jndi. Required. -->
<jndi-name>jms/jndi-MDBQueueConnectionFactory</jndi-name>
<!-- connection factory type (required ifno -->
<!-- can be one of the -->
<!-- following: -->
<!-- javax.jms.QueueConnectionFactory, -->
<!-- javax.jms.XAQueueConnectionFactory, -->
<!-- javax.jms.TopicConnectionFactory -->
<!-- javax.jms.XATopicConnectionFactory -->
<type>javax.jms.QueueConnectionFactory</type>
<!-- jms transport (rmi, tcpip, rmiiiopi, intravm).
-->
<!-- Required if no factory name was specified. -->
<transport>INTRAVM</transport>
<!-- username and password required if seamless
authorization will be used -->
<!-- (can be specified and updated, upon application
deployment via resorce-ref) -->
<username>guest</username>
<password>guest</password>
</jms-connection-factory>
</jrun-resources>
What am I doing wrong? I should add that the queue and the
MDB actually work. I just want to get rid of the error message.
I have found out that the error message comes from the class
jrun.jms.wrapper.enterprise.JRunConnectionFactoryWrapper, method
createQueueConnection, when instance variable m_useContainerAuth is
false.

I dont think you should it on server-side - you can do it in client side logic. Start playing live stream - if no data is coming - i think you can use ns.time for checking this - then switch to recorded file play.

Similar Messages

  • MDB/JRun: "Application authentication required. Incorrect method call."

    Hi people!
    I am using a message-driven EJB listening on a queue.
    Everytime a start the server, the server deploys the enterprise
    application with the MDB and the queue, and then gives this error
    message:
    "Application authentication required. Incorrect method call."
    What am I missing?
    Here are more details: The server is in fact CFMX6.1 in
    standalone installation and I am using the hidden JRun inside it.
    Here is an extract of ejb-jar.xml:
    <message-driven>
    <ejb-name>ij.portal.EventExecutor</ejb-name>
    <ejb-class>ij.portal.EventExecutor</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
    <message-driven-destination>
    <!--javax.jms.Queue or javax.jms.Topic-->
    <destination-type>javax.jms.Queue</destination-type>
    <!--Durable or NonDurable-->
    <subscription-durability>Durable</subscription-durability>
    </message-driven-destination>
    <!--
    The queue that this MDB listens to. The name must be mapped
    to
    a real JNDI name in jrun-ejb-jar.xml.
    -->
    <resource-env-ref>
    <resource-env-ref-name>EventQueue</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
    </resource-env-ref>
    </message-driven>
    A part of the jrun-ejb-jar.xml is:
    <message-driven>
    <ejb-name>ij.portal.EventExecutor</ejb-name>
    <jndi-name>ij.portal.EventExecutor</jndi-name>
    <resource-env-ref>
    <resource-env-ref-name>EventQueue</resource-env-ref-name>
    <jndi-name>jms/queue/EventQueue</jndi-name>
    <mdb-destination>jms/queue/EventQueue</mdb-destination>
    </resource-env-ref>
    <message-driven-subscription>
    <client-id>MDBSubscriber</client-id>
    </message-driven-subscription>
    </message-driven>
    Finally, here is the jrun-resources.xml that defines the
    queue:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    <!DOCTYPE jrun-resources PUBLIC "-//Macromedia Inc.//DTD
    jrun-resources 4.0//EN"
    http://jrun.macromedia.com/dtds/jrun-resources.dtd">
    -->
    <jrun-resources>
    <jms-destination>
    <jndi-name>jms/queue/EventQueue</jndi-name>
    <destination-name>EventQueue</destination-name>
    <destination-type>javax.jms.Queue</destination-type>
    </jms-destination>
    <jms-connection-factory>
    <!-- jms provider factory name. Optional-->
    <factory-name>QueueConnectionFactory</factory-name>
    <!-- jndi name - name under wich this connection factory
    will be available -->
    <!-- to client in jndi. Required. -->
    <jndi-name>jms/jndi-QueueConnectionFactory</jndi-name>
    <!-- connection factory type (required ifno -->
    <!-- can be one of the -->
    <!-- following: -->
    <!-- javax.jms.QueueConnectionFactory, -->
    <!-- javax.jms.XAQueueConnectionFactory, -->
    <!-- javax.jms.TopicConnectionFactory -->
    <!-- javax.jms.XATopicConnectionFactory -->
    <type>javax.jms.QueueConnectionFactory</type>
    <!-- jms transport (rmi, tcpip, rmiiiopi, intravm). -->
    <!-- Required if no factory name was specified. -->
    <transport>RMI</transport>
    <!-- userName and password required if seamless
    authorization will be used -->
    <!-- (can be specified and updated, upon application
    deployment via resorce-ref) -->
    <username>guest</username>
    <password>guest</password>
    </jms-connection-factory>
    <!-- MDB specifc connection factory - utilizes intra vm
    connection, cannot be used by remote client -->
    <jms-connection-factory>
    <!-- jms provider factory name. Optional-->
    <factory-name>MDBQueueConnectionFactory</factory-name>
    <!-- jndi name - name under wich this connection factory
    will be available -->
    <!-- to client in jndi. Required. -->
    <jndi-name>jms/jndi-MDBQueueConnectionFactory</jndi-name>
    <!-- connection factory type (required ifno -->
    <!-- can be one of the -->
    <!-- following: -->
    <!-- javax.jms.QueueConnectionFactory, -->
    <!-- javax.jms.XAQueueConnectionFactory, -->
    <!-- javax.jms.TopicConnectionFactory -->
    <!-- javax.jms.XATopicConnectionFactory -->
    <type>javax.jms.QueueConnectionFactory</type>
    <!-- jms transport (rmi, tcpip, rmiiiopi, intravm). -->
    <!-- Required if no factory name was specified. -->
    <transport>INTRAVM</transport>
    <!-- username and password required if seamless
    authorization will be used -->
    <!-- (can be specified and updated, upon application
    deployment via resorce-ref) -->
    <username>guest</username>
    <password>guest</password>
    </jms-connection-factory>
    </jrun-resources>
    What am I doing wrong? I should add that the queue and the
    MDB actually work. I just want to get rid of the error message.
    I have found out that the error message comes from the class
    jrun.jms.wrapper.enterprise.JRunConnectionFactoryWrapper, method
    createQueueConnection, when instance variable m_useContainerAuth is
    false.

    When i login with the password and username from my custom authentication provider, my login module check ok, but logon form still there.

  • Which settings are required to consume calls for stock transfers with planned independent requirements

    Dear SAP PP
         With strategy 10, which settings are required to consume calls for stock transfers with planned independent requirements?
    Regards

    Hi all,
    IF other configuration is require ?  How to implement this requirement?Also please explain in detail.  thanks

  • Hi i am having problems with a crackling speaker on calls. Its started with every once a hour or so, to now being every call. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update

    Hi i am having problems with a crackling speaker on calls. Its started with every once a hour or so, to now being every call. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update to ios 5... What should i do. I have now resulted in using another phone as i cannot operate like this...

    Hi i am also having problems with a crackling speaker on calls every few calls. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update to ios 5... I will watch to see what advice you get.

  • EJB call across server instance with multiple Datasource

    Hi,
              I posted in the EJB group and was told people here will be able to help.
              I'm currently facing a serious integration problem. The problem occurs when an EJB in my application (my instance) tries to call another EJB in a separate application (in another instance). Hope someone can help me to overcome this.
              My setup is WLS 8.1 SP2 (1 domain, 2 instances) with Oracle 9i.
              The scenario is as follows:
              EJB A (tx required) in instance A calls EJB B (tx required) in instance B.
              EJB A uses datasource A in instance A to update database A and EJB B uses datasource B in instance B to update database B.
              When I tried with both datasources using non-XA driver and both using XA driver the result is the same, EJB A executes fine and can successfully invoke the method on EJB B. But when EJB B tries to lookup the datasource B, it goes to instance A to do that and of course fails to find it.
              It only works when I create and deploy datasource B (XA) to instance A as well, meaning I now have datasources A and B in instance A.
              It all works well when I use a servlet(e.g.) in instance A to call EJB B. Leading me to suspect that the error could be due to some problems or behaviour which I may have missed out during the propagation of the transaction or the EJB context.
              This behaviour seems very illogical, can someone please enlighten me. Any help will be very much appreciated.
              Thanks,
              Kelvin

    You might try asking this over in the transaction group:
    http://forums.bea.com/bea/forum.jspa?forumID=2052
    -thorick

  • Server hangs with queue based printing

    We have a Netware 6.5 SP1 server used for queue based printing with HP
    Print Servers.However very often queues do not respond and we re-start the
    server so that queues will be operational.
    Will service pack 2 will sove this problem? Is there any issues for
    deployment of SP2

    > ,
    > > We have a Netware 6.5 SP1 server used for queue based printing with HP
    > > Print Servers.However very often queues do not respond and we re-start
    the
    > > server so that queues will be operational.
    > > Will service pack 2 will sove this problem? Is there any issues for
    > > deployment of SP2
    > >
    > Are these printers configured as queue servers or remote printers?
    These are queue servers with HP Jet direct cards
    >
    > - Anders Gustafsson, Engineer, CNE5, ASE
    > NSC Volunteer Sysop (http://support-forums.novell.com)
    > Pedago, The Aaland Islands (N60 E20)
    > Using VA 5.51 build 315 on Windows 2000 build 2195
    >

  • Error using a method call in the starting conditions of a Workflow

    Hi,
    In SRM 4, I have a doubt about a start condition with WFWS14000109 I need to trigger the WF depending on organizational unit of the requester (not purchase group or purchase organization).
    I have seen in the editor, in SWB_COND in the part of requisitionerUser the Method ReadOrgUnit.
    I change to traditional mode of the editor and when I select the method I get in Express1. field
    &_EVT_OBJECT.REQUISITIONERUSER.READORGUNIT(_RESULT='OBEG';ACTORGUNIT= )&
    If I use = and the organizational unit in express2 field I get error
    Partial expression expected (expression '&_EVT_OBJECT_REQUISITIONERUSER.READORGUNIT(_RESULT',position       76)
    Can anybody say me where is the error? how I should express the condition.
    Thanks
    Best Regards

    I don't think you can use a BOR method in a condition. At least not as far as I know. I think it would be better to create a virtual attribute in your delegated subtype of BUS2121 and use that in the condition.
    Regards,
    Martin

  • Weblogic Administration Server start with WLST

    Hi Team,
    I am looking for some WLST script to start the WLS Admin server and then check the status of the Adminserver as well.
    When i tried thee command startServer( Adminserver, myserver, domainname, Domaindir )
    its not working the way i want it to.....So if you tell me some way to check if its not running and start it with WLST...
    I can do the same thing using Shell scripting but not WLST..
    Also is there any way in jython language to execute the script from a file.
    i use exec startmyfile.sh but it does not recognize it.
    help appreciated!!

    You can see an overview presentation of WLST here:
    http://www.slideshare.net/jambay/weblogic-server-weblogic-scripting-tool-overview-presentation/
    There is an Oracle By Example (OBE) tutorial for WLST here:
    http://www.oracle.com/technology/obe/fusion_middleware/wls103/SystemMgmt/Command_Line/Command_Line.html
    I think both of these resources would be valuable for you.

  • Required query perfomance tuning which has START WITH CONNECT BY PRIOR

    Hi,
    I have below small query and the CDDS table with 40+ million records.
    SELECT -LEVEL, COMPONENT_ID, COMPONENT_TYPE, COMPONENT_STATUS,
    PARENT_COMPONENT_ID, PARENT_COMPONENT_TYPE, other_info
    BULK COLLECT INTO ltbl_cdds_rec
    FROM CDDS
    START WITH
    PARENT_COMPONENT_ID IN
    ( SELECT dns_name
    FROM RAS_CARD
    WHERE ras_name = <<INPUT_PARAMATER>>
    AND parent_component_type = 'CT_NRP')
    CONNECT BY PARENT_COMPONENT_ID = PRIOR COMPONENT_ID;
    To process this query, its taking 3 hours.
    Please suggest the way forward to tune the query for better performance.

    Create statement for CDDS:
    CREATE TABLE CDDS
    COMPONENT_TYPE VARCHAR2(30 BYTE),
    COMPONENT_ID VARCHAR2(255 BYTE),
    PARENT_COMPONENT_TYPE VARCHAR2(30 BYTE),
    PARENT_COMPONENT_ID VARCHAR2(255 BYTE),
    COMPONENT_VERSION_NO VARCHAR2(30 BYTE),
    COMPONENT_STATUS VARCHAR2(30 BYTE),
    ODS_CREATE_DATE DATE,
    ODS_LAST_UPDATE_DATE DATE,
    OTHER_INFO VARCHAR2(255 BYTE)
    TABLESPACE APPL_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    NOMONITORING
    ENABLE ROW MOVEMENT;
    Create statement for RAS_CARD:
    CREATE TABLE RAS_CARD
    RAS_NAME VARCHAR2(20 BYTE),
    SLOT VARCHAR2(2 BYTE),
    RAS_CARD_ID VARCHAR2(30 BYTE),
    CARD_TYPE VARCHAR2(5 BYTE),
    IP_ADDRESS VARCHAR2(15 BYTE),
    DNS_NAME VARCHAR2(255 BYTE),
    STATUS VARCHAR2(15 BYTE),
    NRP_NO CHAR(2 BYTE),
    NRP_TOTAL_ALLOC_CAPACITY NUMBER(10),
    CREATED_BY VARCHAR2(10 BYTE),
    NRP_ALLOCATED_CAPACITY NUMBER(10),
    NIDB_DRA2_KEY VARCHAR2(15 BYTE),
    NIDB_DRN1_KEY CHAR(6 BYTE),
    ODS_CREATE_DATE DATE,
    LAST_UPDATED_BY VARCHAR2(10 BYTE),
    ODS_LAST_UPDATE_DATE DATE,
    WATERMARK NUMBER(38)
    TABLESPACE APPL_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOLOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    NOMONITORING;
    Explain Plan for the below query:
    select * from CDDS
    where PARENT_COMPONENT_ID IN
    ( SELECT dns_name
    FROM RAS_CARD
    WHERE ras_name = <<INPUT_PARAMATER>>
    | Id | Operation | Name | Rows | Bytes | Cost | Pstart| Pstop |
    | 0 | SELECT STATEMENT | | 1 | 107 | 12 | | |
    | 1 | TABLE ACCESS BY INDEX ROWID| CDDS | 1 | 62 | 1 | | |
    | 2 | NESTED LOOPS | | 1 | 107 | 12 | | |
    | 3 | SORT UNIQUE | | | | | | |
    |* 4 | TABLE ACCESS FULL | RAS_CARD | 4 | 180 | 6 | | |
    | 5 | PARTITION RANGE ITERATOR | | | | | KEY | KEY |
    |* 6 | INDEX RANGE SCAN | CDDS_I02 | 10 | | 1 | KEY | KEY |
    ---------------------------------------------------------------------------------------------

  • Email server starts with error message

    Hi,
    We need help - high urgend. On Start of job smtp_in and smtp_out we receive the following error message:
    ((time 10/10/2002 20:58:33.269 CEST)(compclass oracle.mail.system.oesadmin)(compinst 0)(component admin)(module AQHandler)(priority
    error 6)(execid 127.0.0.1:1034276299.main:1034276299-4)(msgid aq_dequeue_exception)(mtext AQ dequeue exception contacting list_10341
    5697483660124 Doracle.AQ.AQOracleSQLException: ORA-25228: timeout or end-of-fetch during message dequeue from ES_MAIL.ES_EMAILRESPON
    SEQ\))
    It would be great if anybody could help us. Thanks

    Hi,
    Can you login to Mail database with SQL*Plus?
    check the midtier host
    ./oesctl show targetrs
    Check listener_es is running.
    Regards,

  • Exchange Management Console couldn't start with Kerberos authentication failed

    When I was making changes to Client Access\owa settings, chaning from Basic authentication to Form authentication (upn name) then changed to Basic again. It was ok after changing to Form authentication but moment after changing back to Basic, I couldn't
    no longer access owa (blank page when one vertical line) and in Exchange Management Console, I got "Initialization failed" - The following error occured while attempting to connect to the specified Exchange server 'sgp-ex1.mydomain.com':
    The attempt to connect to http://sgp-ex1.mydomain.com/powershell using "Kerberos" authentication failed: Connecting to the remote server failed with the following error message: The WinRM client cannto process
    the request. It cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalid. For more information, see the about_Remote_Troubleshooting Help topic.
    I tried the troubleshooting tool from Exchange team blog:
    http://blogs.technet.com/b/exchange/archive/2010/12/07/3411644.aspx. It give 3 possible causes for this error: 1. WSMan module entry is missing from global module section of c:\Windows\System32\InetSrv\Config\ApplicationHost.config; 2. Kerbauth module shows
    up as Managed module or has been loaded in the Default Web Site Level; 3. The Path of the Powershell virtual directory has been modified.
    I checked carefully, all the 3 causes do not apply to my situation as WSman entry is in order, the Kerbauth is native and local and the path of Powershell virtual directory is correct.
    I find that in Application log, there are Event 2297 and 2307 dumped at the time of failure:
    The worker process for application pool 'MSExchangeSyncAppPool' encountered an error 'Confiugration file in not well-formed XML' trying to read configuration data from file '\\?\C:\inetpubl\temp\apppools\MSExchangeSyncAppPool\MSExchangeSyncAppPool.config',
    line number '2'. The data field contains the error code.
    Help is very much appreciated.
    Valuable skills are not learned, learned skills aren't valuable.

    Unfortunately, all the links you provided didn't help.
    The first link contains 3 methods:1 Removing WinRM feature and reinstalling. 2 Rename the web.config file in location C:\inetpub\wwwroot 3 Have you installed Microsoft Dynamics CRM 4. I?
    As my server is Windows 2008 R2, the first method does not apply. I couldn't find any web.config in c:\Inetpub\wwwroot. The web.config however is found in many times in .netframework and winsxs directories. The 3rd method doesn't apply as I don't have CRM.
    The 2nd link contains 3 possible causes. The first 2 are the same as the ones I mentioned in my initial post. I couldn't verify the last cause because when open Exchange Management Shell, I got this error: [sgp.ex1.mydomain.com] connecting to remote server
    failed with the following server failed with the following error message: The WinRM client cannot process the request, it cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalide. For more
    information, see the about_Remote_Troubleshooting Help topic.
    I do not think the user is not remote powershell enabled because the problem happened suddenly, while I was making changes to Authentication settings of OWA(default) in Client Access in Exchange Management Console. If the user account is not remote powershell
    enabled, then I couldn't event connect to EMC in the first place.
    The last link didn't help because I could open up modules under PowerShell virtual directory in IIS.
    I think since the event log is saying MSExchangeSyncAppPool.config and DefaultAppPool.config not well-formed XML, that might be a clue.
    In the event id 2307 this is the message:
    The worker process for application pool 'DefaultAppPool' encountered an error 'Configuration file is not well-formed XML
    ' trying to read configuration data from file '\\?\C:\inetpub\temp\apppools\DefaultAppPool\DefaultAppPool.config', line number '2'.  The data field contains the error code.
    Valuable skills are not learned, learned skills aren't valuable.

  • After 4.3.3 update, with International assist enable, all US calls start with 001  area code   number.  If disabled, works as before upgrade.  New feature ? working as new design?

    I upgrade my 3GS yesterday to version 4.3.3 without changing any settings.  Now all incomming US calls are displayed starting with 001 + AC + Number.  Incomming calls do not match entrys in contacts list.  Calling number cannot be dialed back with the way the number presented e.g. 001 +. 
    International assist is enabled under settings.  When International Assist is disable, works as it has for the past year + (the way it should)
    Is this a new feature with version 4.3.3?
    Or working as new design feature?

    Gweeper64 wrote:
    I'm sorry you've had a bad experience, but the page does say:
    Limited time offer! Only available by calling:
    CALL 877.873.3278
    Could that be any clearer?
    Seems pretty clear to me. Even though they do not give an expiration date, it is certainly implied that it will expire at some point. If they give you the deal, then great. If they don't give you the deal, though, it seems that you are just crying for something that you don't deserve and that Verizon has no obligation to provide for you.

  • Powershell Error for SharePoint Online -"The remote server returned an error: (407) Proxy Authentication Required."

    I am trying to call sharepoint online from powershell. Below is the code. I get 
    Exception calling "ExecuteQuery" with "0" argument(s): "The remote server returned an error: (407) Proxy Authentication Required."
    $loadInfo1 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client")
    $loadInfo2 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime")
    $webUrl = "ZZZZ"
    $username = "XXX"
    $password = "YYYY"
    $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($webUrl) 
    $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
    $web = $ctx.Web
    $lists = $web.Lists 
    $ctx.Load($lists)
    $ctx.ExecuteQuery()
    $lists| select -Property Title
    Raj-Shpt

    Hi,
    About how to access SharePoint online site using PowerShell, the blog below would be helpful:
    http://social.technet.microsoft.com/wiki/contents/articles/29518.csom-sharepoint-powershell-reference-and-example-codes.aspx
    Another two demos for your reference:
    http://www.hartsteve.com/2013/06/sharepoint-online-powershell/
    http://www.sharepointnutsandbolts.com/2013/12/Using-CSOM-in-PowerShell-scripts-with-Office365.html
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to call webservice server application in jsp

    Hi Friends
    I followed this link http://www.eclipse.org/webtools/community/tutorials/BottomUpAxis2WebService/bu_tutorial.html and run the server and client web service application successfully. How to call the Webservice server application in JSP instead of using client (java main method) java appliaction. Is there any tutorial or code for accessing the webservice server application in jsp.
    Thanks and Regards
    Sherin Pooja

    797526 wrote:
    Hi
    I feel that JSP is just a view page.Not a feeling, it actually is :)
    So it is not good practise to write the scriplet code in JSP page. Absolutely right.
    Is there any other way to call the webservice server application in my client(JSP) page?
    What is it that you want to do? If despite all you have said, you still wish to call the webservice from a jsp, read my response above.
    You would do well to rephrase your question if there's something else that you are asking.
    ram.
    Edited by: ramp on Dec 27, 2010 12:35 PM

  • Where this method calls com.evermind.server.rmi.RMIContext.unbindAll

    My application is in Java Swings , EJB, Oracle 9iAs.
    Intitally application is working fine but after some time we are facing the application sever hangup problem.
    for e.g. when client application is trying to lookup for the remote object, the application server is not responding anything.
    In addition to this, I would like to know that when the method com.evermind.server.rmi.RMIContext.unbindAll() is called?
    The information related to deadlock is as under:
    FOUND A JAVA LEVEL DEADLOCK:
    "RMIConnectionThread":
    waiting to lock monitor 0x1aeb80 (object 0x46bca9b8, a java.util.HashMap),
    which is locked by "RMICallHandler-5"
    "RMICallHandler-5":
    waiting to lock monitor 0x1aeb00 (object 0x46066708, a com.evermind.server.rmi.RMIServer),
    which is locked by "RMIConnectionThread"
    Vipul

    Russel ,
    Have you started remote OC4J Server? Also can you able to browse
    JNDI tree of Remote OC4J Server from JDeveloper?
    Also provide following information in order to understand your problem fully
    1. Which OC4J version you are using?
    2. Platform in which you are testing your application?
    3. Provide full stack trace of error that you are getting
    Cheers
    --Venky                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Setup Time Capsule or Mac first?

    I'm getting a new Mac and a new Time Capsule. I currently do not have a wireless network or computer. In which order do I want to setup each of these? I don't want to miss anything during the initial setup process of either.

  • MaxL Error Codes

    Hi, We have many MaxL scripts to load, calculate, export databases etc.... The client wants more precise error messages in the emails the scripts send out to help them decipher what the problem may be in case of a WARNING or ERROR. Is there a list of

  • Installing CE with SQL Server

    Hi, I have SQL server Developer edition (version 8.00) , OS : Vista I am trying to install CE  and I am getting the follwoing error during the installation wizard ERROR      2009-12-19 13:08:59.602 [sixxcstepexecute.cpp:984] FCO-00011  The step dAskF

  • Connect a Digital Camera to Adobe flex and take a picture?

    Hello, I'm trying to connect my digital camera to adobe flex builder and take a picture. Do you know if that is possible and if it is how? Thanks!

  • Multiple Session Workflow in DAC

    Hi Is it possible to run a workflow which has two sessions arranged parallely in DAC? I was told that DAC can run workflows with only one session.