Re: EJB Control not working with methods that contain arguments

John,
I'm not qualified to answer your EJB control question, but before you
become too disillusioned with page flows I'd like to mention that the
request scoped data form and and the return-to="page" issues you
mentioned have been addressed for the next service pack. We've
introduced the ability to specify a page flow scoped form bean which
lives for the life of the page flow, and we've clarified the return-to
values to include both "currentPage" and "previousPage" which should
clarify the expected behavior.
I hope you give it a try.
Thomas
John Hundley wrote:
Oh well guess you guys gave up on this one. Thats ok, I have utilized a workaround
that forgoes your non working controls just like I have workarounds for your dataforms
that do not maintain their data between pages, your retrun to page that does not
work etc.... At this rate I should have just used struts and JBoss.
"John Hundley" <[email protected]> wrote:
oop's attached the wrong one here is the right one.
"John Hundley" <[email protected]> wrote:
Ok I have attached one of my beans.
"Anurag" <[email protected]> wrote:
John,
For a stateless session bean, the ejbCreate() method is called for
every
individual method call. This is because the bean instance is returned
to the
pool after every method call, it does not hold any state.
I am still surprised about the behaviour you are seeing.
Can you just attach your stateless session bean. You need not sendthe
dependent files, since we only want to sniff the call made to the stateless
EJB method, and are not concerned with the implementation.
Regards,
Anurag
"John Hundley" <[email protected]> wrote in message
news:[email protected]...
Anurag,
I am using the GA release. My control looks identicle toTraderEJBControl.jcx
except of course it is extending a different home and bean interface.The
bean
itself does not exacly match the traderbean but it does look very
similar
to MusicBean.java
in the tutorialsApp. One thing that has me a bit confused is the
fact
the
create()
method is being called every time I make a method call on the control.Shouldn't
the bean only be created once at the first method call and persistfor the
life
of the session?
John
"Anurag" <[email protected]> wrote:
John,
Have you tried running the ejbControl/TraderEJBClient.jws in SamplesApp.
It
does involve calling methods on the stateless EJB TraderEJB through
an
EJB
control, which accept parameters and run fine.
Could you also confirm that you are using the 8.1 GA release, andnot
the
beta.
Regards,
Anurag
"John Hundley" <[email protected]> wrote in message
news:[email protected]...
Raj,
I cannot attach them here. I am not sure how you would test them
anyway
as I
would have to send you my Oracle schema and you would have to
set
up
a
database
instance. There is no way I can do that. If you could please
send
me an
e-mail
I can attach the relevant files in reply and you could take a
look
at them
and
see if you see any obvious problems.
Thanks,
John
"Raj Alagumalai" <[email protected]> wrote:
John,
Can you attach the ejb jar, the jcx and the jws files that you
have
created.
I will test and get back to you.
Thanks
Raj Alagumalai
WebLogic Workshop Support
"John Hundley" <[email protected]> wrote in message
news:[email protected]...
Hi,
I have created an EJB control on a stateless session bean.
For
some
reason when
I attempt to call a method on my control that takes any number
of
arguments I
get a java.lang.IllegalArgumentException yet if I call a method
that
takes
no
arguments everything works fine. I used the debugger to walk
through
the
code
and have discovered that every time I call any method on the
control
the
create()
method gets called, this is exactly where the error is occurring.It is
almost
like the control is trying to pass my method args to the create()
method
instead
of the method I am calling. I have tested all of the methods
in
the
ejb
by manually
coding everything (getInitialContext ejb.create etc) in a .jsp
and
calling
all
of the methods within that .jsp. There they all work fine
so
I
am
pretty
sure
the control is doing something funky. Any ideas as to what
is
going
on
and how
I can fix it?
Thanks,
John

Was this issue ever resolved ? We are running into the same problem.
The last response is "I'm not qualified to answer your EJB control question."
Can this be escalated to someone who can please ?
Regards
Shahriar

Similar Messages

  • EJB Control not working with methods that contain arguments

    Hi,
    I have created an EJB control on a stateless session bean. For some reason when
    I attempt to call a method on my control that takes any number of arguments I
    get a java.lang.IllegalArgumentException yet if I call a method that takes no
    arguments everything works fine. I used the debugger to walk through the code
    and have discovered that every time I call any method on the control the create()
    method gets called, this is exactly where the error is occurring. It is almost
    like the control is trying to pass my method args to the create() method instead
    of the method I am calling. I have tested all of the methods in the ejb by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp and calling all
    of the methods within that .jsp. There they all work fine so I am pretty sure
    the control is doing something funky. Any ideas as to what is going on and how
    I can fix it?
    Thanks,
    John

    Oh well guess you guys gave up on this one. Thats ok, I have utilized a workaround
    that forgoes your non working controls just like I have workarounds for your dataforms
    that do not maintain their data between pages, your retrun to page that does not
    work etc.... At this rate I should have just used struts and JBoss.
    "John Hundley" <[email protected]> wrote:
    >
    >
    >
    oop's attached the wrong one here is the right one.
    "John Hundley" <[email protected]> wrote:
    Ok I have attached one of my beans.
    "Anurag" <[email protected]> wrote:
    John,
    For a stateless session bean, the ejbCreate() method is called for
    every
    individual method call. This is because the bean instance is returned
    to the
    pool after every method call, it does not hold any state.
    I am still surprised about the behaviour you are seeing.
    Can you just attach your stateless session bean. You need not sendthe
    dependent files, since we only want to sniff the call made to the stateless
    EJB method, and are not concerned with the implementation.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Anurag,
    I am using the GA release. My control looks identicle toTraderEJBControl.jcx
    except of course it is extending a different home and bean interface.The
    bean
    itself does not exacly match the traderbean but it does look very
    similar
    to MusicBean.java
    in the tutorialsApp. One thing that has me a bit confused is the
    fact
    the
    create()
    method is being called every time I make a method call on the control.Shouldn't
    the bean only be created once at the first method call and persistfor the
    life
    of the session?
    John
    "Anurag" <[email protected]> wrote:
    John,
    Have you tried running the ejbControl/TraderEJBClient.jws in SamplesApp.
    It
    does involve calling methods on the stateless EJB TraderEJB through
    an
    EJB
    control, which accept parameters and run fine.
    Could you also confirm that you are using the 8.1 GA release, andnot
    the
    beta.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    I cannot attach them here. I am not sure how you would test them
    anyway
    as I
    would have to send you my Oracle schema and you would have to
    set
    up
    a
    database
    instance. There is no way I can do that. If you could please
    send
    me an
    e-mail
    I can attach the relevant files in reply and you could take a
    look
    at them
    and
    see if you see any obvious problems.
    Thanks,
    John
    "Raj Alagumalai" <[email protected]> wrote:
    John,
    Can you attach the ejb jar, the jcx and the jws files that you
    have
    created.
    I will test and get back to you.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I have created an EJB control on a stateless session bean.
    For
    some
    reason when
    I attempt to call a method on my control that takes any number
    of
    arguments I
    get a java.lang.IllegalArgumentException yet if I call a method
    that
    takes
    no
    arguments everything works fine. I used the debugger to walk
    through
    the
    code
    and have discovered that every time I call any method on the
    control
    the
    create()
    method gets called, this is exactly where the error is occurring.It is
    almost
    like the control is trying to pass my method args to the create()
    method
    instead
    of the method I am calling. I have tested all of the methods
    in
    the
    ejb
    by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp
    and
    calling
    all
    of the methods within that .jsp. There they all work fine
    so
    I
    am
    pretty
    sure
    the control is doing something funky. Any ideas as to what
    is
    going
    on
    and how
    I can fix it?
    Thanks,
    John

  • Group messaging not working with groups that contain non iphone users

    I have an Iphone 5 and for some reason I can't send/receive group messages with groups that contain non Iphone users.  Basically I recieve single text messages/imessage from each person who responds to the group message.  This is incredibly annoying.

    Hello, megbu36. 
    Thank you for visiting Apple Support Communities.
    Check to make sure that group messaging is enabled.  Go to Settings > Messages and turn on Group messaging.
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Cheers,
    Jason H.

  • Cfdirectory action=list not working with directories that contain an ampersand

    Our IT group just upgraded one of the our file share servers from Windows Server 2008 R2 to Windows Server 2012 R2.  We quickly noticed a problem with CFDIRECTORY listing the contents of directories that contain an ampersand (e.g. //192.168.1.10/Simon & Garfunkel/).  We are using ColdFusion 10 Update11 on Windows Sever 2012 R2 and everything worked fine prior to this upgrade.  In addition, we created the same directory locally and tried running CFDIRECTORY and the same problem occurred.  The cfm page doesn't crash or report an exception in the log, it just doesn't return any results.  Thanks in advance for help on this issue.

    Thanks Adam, I just found the problem. I think it was a
    problem in the database, though I'm not sure why it works on the
    development and not on the production. The field that I pull the
    "thename" value from is a type varchar(10) and when cfoutputted
    like this [#thename#] it would result in [O MAN], however I tried
    outputting it into a textbox field and it showed [O MAN ] (<---
    actually "O MAN" followed by 5 spaces). The value was padded to ten
    characters. I'm baffled. Varchar is supposed to be variable width
    only using the number of actual characters without padding, right?
    Of my own folly I was trimming the results of the #thename#
    #codeno# pair and not thename itself. Once I set thename to
    trim(thename) it worked, of course. I'm still very confused why
    this works in the development environment and not in production,
    and to why the padding to begin with. But, I will not borrow any
    more trouble and just be happy it is resolved!
    Thanks for all your help!

  • Car Bluetooth Steering Controls Not Working with iOS7

    Hi - I have 2013 RAV4. The a steering controls stopped working after updating to iOS 7.
    I can't switch to next song or previous song which i was able to do with iOS6.  Any suggestions how to fix this?

    There are some other discussions on loss of lock screen and control center music controls.
    https://discussions.apple.com/message/23063432#23063432
    https://discussions.apple.com/message/23042786#23042786
    https://discussions.apple.com/message/23071045#23071045
    I believe it is the same issue, which would indicate that it is an issue with the phone, nothing to do with the car/stereo/speakers/etc.
    When I lose Bluetooth control I also lose lock screen (and control center) controls.  Other controls work, but no play, pause, skip forward/back, and of course no song resume on reconnection.  A hard phone reset or power cycle fixes it every time, I never have to mess with the car.  However, the issue re-occurs about every 2-4 days and I have to reset the phone again to get control back.  Does everyone else lose lock screen control at the same time as BT?
    It may be a hardware issue.  I have a 4S.  What phone models are exibiting the BT issue?

  • T61 Sound Controls Not working with vista x64

    I recently upgraded from vista ultimate to vista 64 bit, and since the install, the sound controls do not work.  now, I know i need a special driver to make them work, but can anyone point me to the correct one?  Thanks
    T61 15.4" T9300 (2.5GHz 6MB L2) Windows 7 Professional x64 4GB Memory, NVidia Quadro NVS 140M
    Solved!
    Go to Solution.

    You need to install the HotKey driver.
    As a thought, you may like to add this site to your favourites.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Scenebuilder not working with FXML that works fine otherwise

    Hi ~
    I'm using the Mac version of Scenebuilder (1.0), integrated with NetBeans, and although it works fine for simple (sample) apps, for my application it does not.
    IOW, I can run my application fine, looks great, but Scenebuilder gives the following error when I attempt to open the FXML file with Scenebuilder (rather than edit it with NetBeans):
    "Error loading file"
    "Cause is File is not a valid FXML file"
    How do I troubleshoot this? (Also, is there a thread or link that shows how to download and install over my current version with the latest 'trunk' version of Scenebuilder for Mac OS X -- Lion in my case -- to try out later builds?)
    Thanks
    ~ Brad
    PS UPDATE: What I'm running (w/JavaFX 2.2):
    Product Version: NetBeans IDE 7.2 (Build 201207171143)
    Java: 1.7.0_06; Java HotSpot(TM) 64-Bit Server VM 23.2-b09
    System: Mac OS X version 10.7.4 running on x86_64; US-ASCII; en_US (nb)
    Edited by: 960618 on Sep 21, 2012 10:32 AM

    I edited your sample fxml and made some changes (replaced the commented out lines other lines) which allowed the fxml to at least load in SceneBuilder.
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.image.*?>
    <?import javafx.scene.text.*?>
    <?import javafx.scene.paint.*?>
    <AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="1000.0" xmlns:fx="http://javafx.com/fxml">
      <ImageView fitHeight="58.5" fitWidth="152.0" layoutX="15.0" layoutY="15.0" pickOnBounds="true" preserveRatio="true">
      <image>
        <Image url="@mygraphic.jpg" preserveRatio="false" smooth="false" />
      </image>
      </ImageView>
    <!--  <Label fx:id="label1" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="15.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="304.0" text="my title text" textFill="#004166">-->
      <Label id="label1" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="15.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="304.0" text="my title text" textFill="#004166">
        <font>
          <Font name="Optima Bold" size="28.0"/>
        </font>
      </Label>
      <Label id="label2" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="48.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="302.0" text="my subtitle">
        <font>
          <Font name="Optima Bold Italic" size="22.0"/>
        </font>
        <textFill>
    <!--      <Color blue="0.400" green="0.255" red="0.000" fx:id="x1" />-->
          <Color blue="0.400" green="0.255" red="0.000" />
        </textFill>
      </Label>
      <VBox id="VBox" alignment="CENTER" layoutX="0.0" layoutY="104.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="217.0" spacing="4.0">
        <children>
    <!--      <Label id="myLabel"   alignment="CENTER_RIGHT" contentDisplay="CENTER" font="$x2" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="185.0" text="label text:" textFill="$x1" VBox.vgrow="SOMETIMES" />-->
          <Label id="myLabel"   alignment="CENTER_RIGHT" contentDisplay="CENTER" font="$x2" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="185.0" text="label text:" VBox.vgrow="SOMETIMES" />
        </children>
      </VBox>
      <VBox id="VBox" alignment="CENTER" layoutX="202.0" layoutY="104.0" prefHeight="235.0" spacing="4.0">
        <children>
          <ChoiceBox id="myChoiceBox" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="240.0" />
          <TextField id="myTextField" minHeight="-Infinity" minWidth="-Infinity" prefHeight="28.0" prefWidth="240.0" promptText="myPromptText" />
    <!--      <ChoiceBox fx:id="myChoiceBox" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="240.0" />
          <TextField fx:id="myTextField" minHeight="-Infinity" minWidth="-Infinity" prefHeight="28.0" prefWidth="240.0" promptText="myPromptText" />-->
        </children>
      </VBox>
    <!--    <Button layoutX="40" layoutY="505" text="Detect" onAction="#handleDetect" fx:id="buttonDetect" />
        <TextArea layoutX="465" layoutY="104" minHeight="390" minWidth="450" fx:id="textAreaLog" />
        <TextArea layoutX="465" layoutY="503" minHeight="55" minWidth="450" prefHeight="56" prefWidth="450" fx:id="textAreaMessage" promptText="Notifications" />-->
        <Button layoutX="40" layoutY="505" text="Detect" onAction="#handleDetect" id="buttonDetect" />
        <TextArea layoutX="465" layoutY="104" minHeight="390" minWidth="450" id="textAreaLog" />
        <TextArea layoutX="465" layoutY="503" minHeight="55" minWidth="450" prefHeight="56" prefWidth="450" id="textAreaMessage" promptText="Notifications" />
    </AnchorPane>While I was doing it SceneBuilder kept up popping up a number of error messages when it couldn't load it. Useful error messages were the ones which told you that you were missing an import (an autofix feature on the missing import might be a nice to have thing - I seem to recall NetBeans saying they might add extra editing features for fxml which included that). Another useful error message was when the line number of the error was reported, then at least the error could be localized. When the column number was reported with the line number it was usually the last column in the line and not the column index of the specific attribute in error, so that was less useful. Some of the error messages which were generated included fxml attribute info and that wasn't all that clear. Only one error message at a time was reported, rather than all errors in the file leading to a few fix edit and reload cycles. The automatic reloading in SceneBuilder of the file edited in NetBeans made these reload cycles pretty instantaneous which was nice.
    The most useless error spat out by SceneBuilder was the following:
    Error loading file 'C:\dev\javafx\JavaFXSamples\src\SceneTest_1.fxml'.
    C:\dev\javafx\JavaFXSamples\src\SceneTest_1.fxml:0: error:
         java.lang.ArrayIndexOutOfBoundsException: -1The above was reported because i placed an xml comment at the end of an otherwise perfectly good fxml file . . . who would have thought . . .

  • Win2k8 Remote Control Not Working With SRSS 4.2 + SRWC 2.2

    Hi there.
    I have an install of Windows Server 2008 (32bit) with SRSS 4.2 & SRWC 2.2 setup. I was previously on SRSS 4.1 & SRWC 2.1 and having the same issue I am having now, which to me tells me this problem is unresolved or i'm being a total muppet. (hopefully not the last one)
    Windows Terminal Server environments has this awesome remote control feature where you can login to an RDP session which is already active and take control of the session while the end user is still logged in.With Server 2003 this works perfectly fine- it's brilliant. WIth 2008 it is a nightmare. It works for a split second and then closes off. The end users session also gets locked out (not logged out) and they have to put their windows credentials in to carry on working again.
    Now... I can remote control users who are logging in via Remote Desktop on Windows XP/Vista etc.. but I can't with the Sun Ray Sessions. Does the SRWC 2.2 fully compatible with RDP 6.1 or is there any information anyone can give me to point me in the right direction of resolving this issue, like I said.. Win 2k3- Works like a dream....
    Any help would be greatly appreciated.
    Regards
    - Joe.

    I just realised I hadn't posted the logs from SRSS Server with the issues. I have just tried on another WIN2K8 Server which wasn't configured by myself or my company and the same symptoms occurred. See logs below:
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kiosk:uttsc[4095]: [ID 702911 user.notice] /opt/SUNWuttsc/bin/uttsc[104]: 4116 Abort
    Oct 1 10:58:06 ESL-SOLARIS-SPARE Sun Ray Connector proxy:[4117]: [ID 855542 user.error] Child closed socket prematurely, session shutdown
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kiosk:uttsc[4123]: [ID 702911 user.error] /opt/SUNWuttsc/bin/uttsc exited with error code 134 - exiting
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kioskcrit: [ID 702911 user.notice] Info: critical application uttsc (pid=3902) exited with non zero status: 134
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kioskcritd[3752]: [ID 422571 user.info] Info: a critical application has exited.
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kioskcritd[3752]: [ID 126805 user.info] Terminating Kiosk Primary Session ( pid=3902 )
    Oct 1 10:58:06 ESL-SOLARIS-SPARE kioskcritd[3752]: [ID 308018 user.info] kioskcritd stopped
    Oct 1 10:58:07 ESL-SOLARIS-SPARE utauthd: [ID 794400 user.info] SessionManager0 NOTICE: EMPTY: ACTIVE session
    Oct 1 10:58:15 ESL-SOLARIS-SPARE kiosk:utkioskconfig:refresh[4381]: [ID 702911 user.info] Enabled Kiosk Mode for display ':2'
    Oct 1 10:58:15 ESL-SOLARIS-SPARE dtlogin[4274]: [ID 118685 user.info] pam_sunray_amgh::[DPY=2] AMGH_SUMMARY: token=pseudo.00144fb78760, username=, AMGH_Done?=NO(Local Session), Details=AMGH is not configured., AMGH_Target=*NONE*
    Oct 1 10:58:15 ESL-SOLARIS-SPARE dtlogin[4274]: [ID 976841 user.info] pam_kiosk: pam_sm_authenticate: Initiating Kiosk session with user utku2
    Oct 1 10:58:15 ESL-SOLARIS-SPARE kioskcritd[4420]: [ID 190395 user.info] kioskcritd started
    Oct 1 10:58:57 ESL-SOLARIS-SPARE Sun Ray Connector proxy:[4612]: [ID 855542 user.error] Child closed socket prematurely, session shutdown
    Anyone able to help me out?

  • Sales doc copy control not working with price condition

    Here's the situation.
    For OR sales document I have  Procedure ZSALES and price conditions Z001
    For a QT Sales document I have Procedure ZQUOTE which does not have a Z001 condition in that procedure.
    If I create an OR (with the proper customer / matieral) the Z001 populates, based on it's defined record.
    If I then create another OR with reference to the original OR, the Z001 populates with no problem.
    Up to now everything's fine, now here's the probem......
    If I create an OR with reference to a QT, the Z001 does not populate in the OR order.I know there is no Z001 in the QT for it to copy from, but if I do [New Pricing] in the order it still does not come in.(I've tried [new Pricing] with Pricing type A..G)
    I have found OSS Note 413066, but this is in reference to 46c systems. we are on ECC 6.0
    any ideas ?

    Hi Bill,
    If PP assigned for both are different it's not going to populate field even if you are redertermining price, since it would be following the PP of Quotation (ZQUOTE), not Sales Order (ZSALES) because it's gonna copy the elements of that PP in order. Are your PP assigned are same or different?
    Hope this will answer your query
    Regards
    SD

  • Selection color not working with table that has DefaultTableModel

    hi folks,
    I noticed if a table has a AbstractTableModel, when you select a row, by default the highlight color is light blue. However, if a table has a DefaultTableModel, even if you invoke table.setSelectionBackgroun(color) and table.setSelectionForefround(color), the highlight color stays invisible. is this a bug? what's the cause of this problem?
    thanks!!

    Read this section from the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#renderer]Using Table Renderers. Here is a simple example to get you started
        class SimpleRenderer extends DefaultTableCellRenderer
            public Component getTableCellRendererComponent(
                JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
                super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                if (hasFocus)
                    setBackground( Color.cyan );
                else if (isSelected)
                    setBackground( table.getSelectionBackground() );
                else
                    setBackground( table.getBackground() );
                return this;
        }

  • Sound control not working on my blue tooth keyboard

    sound control not working with my bluetooth keyboard

        UAVPilot,
    Thank you for the information. I do show that the device and car are capable of this function. I do not show any reason you should not be hearing the notifications. One thing you will want to check is that the sound for both your notifications and media are turned up. Also you can look into going into Settings>Apps>S voice Drive Mode> Clear Cache. This should clear any possible bugs in the application. Please keep us updated on this and we can check on other options.
    Thank you,
    TonyG_VZW
    Follow us on Twitter @VZWSupport

  • Microsof VX 3000 or 6000 Webcam does not work with Lync 2013 under Windows 8.1

    Hi,
    The problem is that i cannot use the Microsoft VX-3000 or VX-6000 with Lync 2013 under Windows 8.1.
    If i go in settings under Video i can see the preview from the webcam just fine, so it works there no problem.
    Wenn i try to enable my camera in a conference it does not work, i get an error: Your video cannot be started.
    Now, there are no Windows 8.1 drivers for the Webcam so i installed the latest Windows 7 drivers. Because of that this webcam does not work with apps, that is fine i understand the driver problem and the way the new apps work.
    But this Webcam works with skype under Windows 8.1 and it works with Lync 2010 client.
    The same Webcam works just fine with Lync 2013 under Windows 7.
    Is there anything i could do so that i get this Webcam to work with Lync 2013 desktop client under Windows 8.1?
    Thanks

    Hi,
    According to your description, it may be caused by driver.
    You can try to install the latest version of Display Driver to fix the display issue.
    Since there is no driver for Windows 8.1, I suggest you wait for updating.
    You can also post a case on Windows 8 forum, thank you for your understanding:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=W8ITProPreRel%2Cw81previtpro&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Since Reader X previous view tool not working with linked documents

    We have many linked pdf documents. After upgrading to Acrobt Reader X we can´t go back to the parent document by using the "previous view" command. In older versions we can use this function to navigate back. Is there an option in the preferences to reactivate this possibility?  

    I have been told by Adobe support that this is not a bug, but a security feature.
       Our company has, over many years, developed for our most important software application a PDF help system with hundreds of books and thousands of pages. There are myriad links between and within the books. In order to make navigation through this morass easier, we have provided our users a starting "Main Menu" with links to the books. We also set it up so that only one PDF is open at any given time ("open in same window" option), otherwise a user could end up with hundreds of open PDF documents on their taskbar or desktop. We also have our users take advantage of the "Previous View" mechanism to make it easier to navigate while keeping only one window open at a time.  (The browser "Back" button trick will not work with PDFs that have been closed).
      However, Since version X of the Reader, the Previous View mechanism will not work with PDFs that have been closed. That is, you can only get back to a previous view in another PDF if it is still open. As mentioned above, this could leave our users with hundreds of open PDFs, and thus it is not an option for us. But Adobe has ignored our pleas.
      You must vote with your feet; that is all Adobe understands. Adobe does not care about our needs and we have given up on them. We are currently telling our users:
      "If you use a non-Adobe PDF reader, you will be able to install it on a system alongside any version of Adobe Reader, including version 10. We have found that Tracker Software makes an excellent free product called PDF-XChange Viewer, which may be downloaded HERE. PDF-XChange has a smaller footprint, is faster, and has more features than Adobe Reader, including a 64-bit version for Windows XP/Vista/7.
      To set up this program to optimally use our help system, go to Preferences, and under "General," specify that the Documents Layout be Single rather than Multiple. Then you will be able to use the Alt keys with the arrows, or the Previous/Next View buttons on the toolbar, with closed PDFs."

  • Dear sir I bought my iPhone 4 from Apple store in Charlotte N/C about 2years ago without contract. Now I tried to upgrade it to iOS 7.0.4.but after that my phone not work with last sim card. And invalid sim appeared.so I bought it without contract but it

    Dear sir
    I bought my iPhone 4 from Apple store in Charlotte N/C about 2years ago without contract.
    Now I tried to upgrade it to iOS 7.0.4.but after that my phone not work with last sim card.
    And invalid sim appeared.so I bought it without contract but it seems to be lock in my country
    Please tell me whats the matter?
    My phone serial no  86034HTCA4T
    Modem firmware  04.12.09
    Thanks

    Without contract is not the same as unlocked. The update to iOS 7 relocked
    the iPhone to the wireless carrier to which it was originally locked. You must
    contact that wireless carrier to see if they offer unlocking and if you qualify.
    If you used jailbreak or other hack to unlock the iPhone initially, the method
    used may prevent a legitimate unlock from succeeding and may render your
    iPhone unuseable.

  • CISCO Box not working with Infrared Remove Control Repeater

    There was an Infrared Remote Control Repeater set-up in my newly purchased house.  It works for my LG DVD player, but does not work with my CISCO CHS435HDB box.  Are there any work around for this?  Should I change to a different box?

    If you are using a repeater, make sure the piece that is relaying the IR signal is pointing directly the font of the Cisco box and nothing is plugged into the IR input port in the back of the box.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

Maybe you are looking for

  • Help!  Images in Aperture are dark and oversaturated...

    I just got a new MacBook Pro, so I decided to download the Aperture demo to give it a try. I have been working with Lightroom and wanted to compare the two. So I imported my first folder of images from some conference events I shot. My first impressi

  • Bulk update of inventory for last evaluated price

    In SAP, there are about 10,000 items . Last evaluated price is not assigned for many items. So it is very tedious task of assigning the price. For each item Inventory Audit Report is executed. Is there any way of assigning the last evaluated price in

  • Linking two remote Macs

    I have a basic question about linking two remote Macs over the internet. Here's the situation... I live in Maryland and my brother in South Carolina. We would like to be able to exchange large files easily. I've managed to do this using sftp from the

  • I can'nt open netweaver with other user at winxp

    hi!, I cannot open the Netweaver Developer Studio! when i open windows session with other user... It appears a screen that it says : "Problems during startup. Check the ".log" file in the ".metadata" directory of your workspace". I open this log file

  • Xgenconfig basic explanation - JVM 1.2.2

    Hello ! I need to tune GC in Solaris 1.2 JVM, and cannot find the answer for the one basic question: Where is explicitely Xgenconfig option described in Sun'docs ?I can find some tuning tips on iPlanet or WebLogic sites but where is some basic source