IPASCII Response fails every other poll.

IPASCII Driver object is used to retrieve (via Ethernet) data.
Request format works good.
My Request Format (RequestFormat):
"GET /data HTTP/1.0 \r\n\r\n" as per device manufacture Txt string and
(2) carriage return/line feeds
Response String looks good Object = (.Response)
Typical Response String
F|74.0|29.3|-999.9|74.0|29.3|-999.9|-999.9|-999.9|-999.9|-999.9|-999.9
|-999.9
Data is temperature from module, -999.9 are data inputs without temperature
probes attached...
RSV1.txt = (F)
RSV2.txt = (74.0)
ETC...
RSV1-13 data look good but fails every other poll
(Socket communications error 10053: Software caused connection abort).

I have received the following response from NI engineers.
To review this issue -- the IPASCII object has a problem in that if you use the IPASCII object to query a web service that closes the
connection remotely after a request has been made Lookout will not close the local connection.  This results in a "CLOSE_WAIT"
state for the local TCP port.   Since the port is not closed, Lookout is not able to make a subsequent outgoing connection on the
same port.  Lookout does appear to close the port when after it tries to make repeated connections, but this means for every time
you want to make a query you have to alternate between successful queries and comm failures. Most likely this was not found earlier
because for many Ethernet based instruments, a TCP connection is persistent, however web servers using the HTTP/1.0 protocol
close the TCP connection after every GET request and response.  A corrective action request has been filed with our Lookout R&D
team and hopefully a fix will be available in future versions of Lookout.  Thank you for your patience with this issue.

Similar Messages

  • Network fails every other boot [SOLVED]

    I seem to have a small prob when I startup my pc the network fails every other time. I had some probs w/ dhcp starting when I used gentoo, and found a workaround, putting "dhcpcd -k" in etc/conf.d/local.stop ran the dhcpcd -k command when I shutdown my pc, apparently arch's syntax is a bit different so I doubt etc/conf.d/local.stop exists, I tried /etc/rc.local.shutdown, but that didn't seem to do it either. Could someone please tell me the arch way to enter this command every shutdown?

    Snowman wrote:
    Haiyadragon wrote:
    I'm having the same problem. My motherbord has two network devices. It seems that the designations (eth0 and eth1) switch every boot. So every other boot eth0=dhcp is the right one.
    Will "dhcpcd -k" fix it?
    Check this: http://wiki.archlinux.org/index.php/Ude … _Each_Boot
    Thanks.
    Altough I find it quite weird they switch like that.
    "Because udev loads all modules at once, devices are sometimes initialized in a different order. For example, with two network cards, you may notice they switch designations between eth0 and eth1"
    Yeah, I don't buy it. They switched every boot.
    I'm trying the udev-sanctified method. Will find out in a day or so (when I (re)boot).

  • Deploying Windows Service Fails Every Other Time

    I'm using Release Management 2013 to deploy a Windows service.  I go through the steps listed below to deploy it.  It fails on the first step (Delete Service) every other time.  When I run it again, it works.  It seems like it's saying
    it failed, but is somehow actually succeeding.  After it fails, I don't see the service in the Services list anymore.  Then when I run the deployment again, it succeeds. 
    I have found that if I manually stop the service before deploying again, it will always succeed.  There doesn't seem to be a good way of doing that in Release Management though, since the Stop Service action will error out if the service doesn't exist.
    Any help would be appreciated!
    ==============
    Delete Service
    Create Folder
    XCopy Site Deployment (deploys from drop folder)
    Copy Config Files from Drop folder (copies config files folder from drop folder)
    Delete File(s) or Folder (deletes existing config)
    Rename File or Folder (renames appropriate copied config to the name of the previously deleted config file)
    Delete File(s) or Folder (deletes other config files)
    Delete File(s) or Folder (deletes config folder)
    Create Service
    Start Service

    Hi,
    You may have solved this by now, but for the record, I had the exact same issue. The problem is in this section of ManageWindowsServices.ps1
    elseif ($Action -eq "delete")
    #If the service exists, we first stop it to avoid "Marked for deletion" problems
    $service = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
    if ($service -ne $null)
    #Stop the service
    $status = & "sc.exe" "$ServerName" stop "$ServiceName"
    "Stop status : $status"
    $status = & "sc.exe" "$ServerName" $Action "$ServiceName"
    "Delete status : $status"
    #Ensure the service was deleted successfully
    $service = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
    if ($service -ne $null)
    $(throw "The deletion of the service failed.")
    else
    $exitCode = 0
    and is due to the fact that the second Get-Service call does actually return the service, even though it's after the call to delete it. Presumably this is some kind of race condition, where the call to delete the service returns before it's finished all
    it's work.
    In any case, the solution I went for was to rewrite this section as:
    elseif ($Action -eq "delete")
    [int]$returnCode = 0
    #If the service exists, we first stop it to avoid "Marked for deletion" problems
    $service = Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'"
    if ($service -ne $null)
    #Stop the service
    $status = & "sc.exe" "$ServerName" stop "$ServiceName"
    "Stop status : $status"
    "Deleting Service..."
    $returnCode = $service.delete().ReturnValue
    "Return code was : $returnCode"
    if ($returnCode -ne 0)
    $(throw "The deletion of the service failed: Return code was $returnCode")
    #Ensure the service was deleted successfully
    $service = Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'"
    if ($service -ne $null)
    $(throw "The deletion of the service failed.")
    else
    $exitCode = 0
    The above code works in all cases that I've run it for. You can either edit the existing ManageWindowsServices script, or simply create a new one. I opted for the latter.
    Note: This is my first attempt at using Powershell, so there may well be a better way of doing the above.

  • Filter to convert HTTP request to JNLP arguments fails every other time

    I want to pass HTTP request parameters to a Java Web Start program as arguments. I have implemented a filter which adds the arguments from the request parameters using XML DOM, and I also set the Last-Modified date to the current date/time. [ I am sort of thinking I should put the date as the file date -- not sure ]
    The filter works successfully ever other time I invoke a given URL. If I switch parameters, it looks like the filter works every time.
    When the filter works, there are HTTP GET and HEAD requests. When the filter fails, there are three HEAD requests and one GET request. Using the apache soap TCP Tunnel/Monitor, it looks like the HTTP request parameters aren't being passed for the second GET.

    Varad and Sc0tt,
    Thank you both for your responses.
    Varad – Yes, I can/will reduce the amount of data so it does not cause the tabular form to go over the 2000 field limit. If that is not possible, I will at least make the users aware of this issue. Since the same data is used for the other pages in the application, the users might want to keep all the data.
    Sc0tt – thanks for providing the information for your environment and settings. To plan for the future, we will have to set the value to something high also, around 8-10K range, and adjust later if we have to.
    Thank you both, I will mark both of your answers as helpful and the question as being answered.
    DP
    (Have either of you used the jquery datepicker solution? If yes, can you please take a look at my thread: Thread: Jquery Datepicker calendar problem with page scrolling
    Jquery Datepicker calendar problem with page scrolling

  • Netctl wireless fails every other boot [SOLVED]

    This has me stumped.
    Here is my netctl profile:
    gdm@gdmThink ~$ cat /etc/netctl/mifi4510l
    Description='A simple WPA encrypted wireless connection using a static IP'
    Interface=wlp3s0
    Connection=wireless
    Security=wpa
    ESSID='Verizon MIFI4510L E3A0 Secure'
    Key='password'
    IP=static
    Address='192.168.1.11/24'
    Gateway='192.168.1.1'
    DNS=('192.168.1.1')
    TimeoutWPA=30
    Here is a pastebin link to the "journalctl -b" for a failed boot:
    http://pastebin.com/GbELjqm0
    Here is a pastebin link to the "journalctl -b for a successful boot.
    http://pastebin.com/ywzDvkqD
    Other than there is no attempt to authenticate in the failed boot, I see no significant difference.
    Any help would be greatly appreciated.
    Last edited by gdavid (2013-05-26 16:19:42)

    [root@gdmThink gdm]# systemctl status -n 100 [email protected]
    [email protected] - A simple WPA encrypted wireless connection using a static IP
    Loaded: loaded (/etc/systemd/system/[email protected]; enabled)
    Active: failed (Result: exit-code) since Sat 2013-05-25 17:57:53 EDT; 42s ago
    Docs: man:netctl.profile(5)
    Process: 830 ExecStart=/usr/lib/network/network start %I (code=exited, status=1/FAILURE)
    [root@gdmThink gdm]#
    From dmesg:
    [ 11.726467] systemd[1]: Starting Login Service...
    [ 11.726547] systemd[1]: About to execute: /usr/lib/systemd/systemd-logind
    [ 11.726627] systemd[837]: Executing: /usr/lib/systemd/systemd-user-sessions start
    [ 11.726685] systemd[1]: Forked /usr/lib/systemd/systemd-logind as 838
    [ 11.726784] systemd[1]: systemd-logind.service changed dead -> start
    [ 11.726799] systemd[1]: Starting D-Bus System Message Bus...
    [ 11.726971] systemd[838]: Executing: /usr/lib/systemd/systemd-logind
    [ 11.727515] systemd[1]: About to execute: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    [ 11.727642] systemd[1]: Forked /usr/bin/dbus-daemon as 839
    [ 11.727781] systemd[1]: dbus.service changed dead -> running
    [ 11.727786] systemd[1]: Job dbus.service/start finished, result=done
    [ 11.727923] systemd[839]: Executing: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    [ 11.728498] systemd[1]: Started D-Bus System Message Bus.
    [ 11.728602] systemd[1]: Set up jobs progress timerfd.
    [ 11.728630] systemd[1]: Received SIGCHLD from PID 829 (alsactl).
    [ 11.728645] systemd[1]: Got SIGCHLD for process 829 (alsactl)
    [ 11.728674] systemd[1]: Child 829 died (code=exited, status=0/SUCCESS)
    [ 11.728677] systemd[1]: Child 829 belongs to alsa-restore.service
    [ 11.728685] systemd[1]: alsa-restore.service: main process exited, code=exited, status=0/SUCCESS
    [ 11.728782] systemd[1]: alsa-restore.service changed start -> dead
    [ 11.728841] systemd[1]: Job alsa-restore.service/start finished, result=done
    [ 11.729552] systemd[1]: Started Restore Sound Card State.
    [ 11.729583] systemd[1]: Got SIGCHLD for process 833 (modprobe)
    [ 11.729609] systemd[1]: Child 833 died (code=exited, status=0/SUCCESS)
    [ 11.729611] systemd[1]: Child 833 belongs to lm_sensors.service
    [ 11.729618] systemd[1]: lm_sensors.service: main process exited, code=exited, status=0/SUCCESS
    [ 11.729620] systemd[1]: lm_sensors.service running next main command for state start
    [ 11.729652] systemd[1]: About to execute: /usr/bin/sensors -s
    [ 11.729756] systemd[1]: Forked /usr/bin/sensors as 840
    [ 11.729894] systemd[1]: Accepted connection on private bus.
    [ 11.729900] systemd[1]: Incoming traffic on dbus.socket
    [ 11.729908] systemd[1]: dbus.socket changed listening -> running
    [ 11.729940] systemd[1]: Accepted connection on private bus.
    [ 11.729978] systemd[1]: Accepted connection on private bus.
    [ 11.729987] systemd[840]: Executing: /usr/bin/sensors -s
    [ 11.730107] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 11.730151] systemd[1]: systemd-update-utmp.service: cgroup is empty
    [ 11.730175] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 11.730195] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 11.730237] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 11.730264] systemd[1]: alsa-restore.service: cgroup is empty
    [ 11.730282] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 11.730299] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 11.776646] systemd[835]: Executing: /usr/bin/laptop_mode init auto
    [ 11.937296] systemd[1]: Received SIGCHLD from PID 837 (systemd-user-se).
    [ 11.937318] systemd[1]: Got SIGCHLD for process 837 (systemd-user-se)
    [ 11.937352] systemd[1]: Child 837 died (code=exited, status=0/SUCCESS)
    [ 11.937354] systemd[1]: Child 837 belongs to systemd-user-sessions.service
    [ 11.937366] systemd[1]: systemd-user-sessions.service: main process exited, code=exited, status=0/SUCCESS
    [ 11.937490] systemd[1]: systemd-user-sessions.service changed start -> exited
    [ 11.937494] systemd[1]: Job systemd-user-sessions.service/start finished, result=done
    [ 11.938230] systemd[1]: Started Permit User Sessions.
    [ 11.938264] systemd[1]: Starting Getty on tty1...
    [ 11.938997] systemd[1]: About to execute: /sbin/agetty --noclear tty1 38400 linux
    [ 11.939186] systemd[1]: Forked /sbin/agetty as 844
    [ 11.939313] systemd[1]: [email protected] changed dead -> running
    [ 11.939344] systemd[1]: Job [email protected]/start finished, result=done
    [ 11.940070] systemd[1]: Started Getty on tty1.
    [ 11.940089] systemd[1]: Starting Login Prompts.
    [ 11.940092] systemd[1]: getty.target changed dead -> active
    [ 11.940094] systemd[1]: Job getty.target/start finished, result=done
    [ 11.940824] systemd[1]: Reached target Login Prompts.
    [ 11.940886] systemd[1]: Accepted connection on private bus.
    [ 11.941016] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 11.941058] systemd[1]: systemd-user-sessions.service: cgroup is empty
    [ 11.941085] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 11.973600] e1000e 0000:00:19.0: irq 49 for MSI/MSI-X
    [ 12.074517] e1000e 0000:00:19.0: irq 49 for MSI/MSI-X
    [ 12.074737] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
    [ 12.074979] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 12.075190] iwlwifi 0000:03:00.0: Radio type=0x0-0x3-0x1
    [ 12.425688] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 12.425894] iwlwifi 0000:03:00.0: Radio type=0x0-0x3-0x1
    [ 12.464645] systemd[1]: Received SIGCHLD from PID 840 (sensors).
    [ 12.464666] systemd[1]: Got SIGCHLD for process 840 (sensors)
    [ 12.464701] systemd[1]: Child 840 died (code=exited, status=0/SUCCESS)
    [ 12.464704] systemd[1]: Child 840 belongs to lm_sensors.service
    [ 12.464716] systemd[1]: lm_sensors.service: main process exited, code=exited, status=0/SUCCESS
    [ 12.464829] systemd[1]: lm_sensors.service changed start -> exited
    [ 12.464838] systemd[1]: Job lm_sensors.service/start finished, result=done
    [ 12.465943] systemd[1]: Started Initialize hardware monitoring sensors.
    [ 12.466053] systemd[1]: Accepted connection on private bus.
    [ 12.466244] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 12.466278] systemd[1]: lm_sensors.service: cgroup is empty
    [ 12.466302] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 12.648245] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    [ 12.648631] systemd[1]: Received SIGCHLD from PID 831 (dhcpcd).
    [ 12.648648] systemd[1]: Got SIGCHLD for process 831 (dhcpcd)
    [ 12.648680] systemd[1]: Child 831 died (code=exited, status=0/SUCCESS)
    [ 12.648682] systemd[1]: Child 831 belongs to dhcpcd.service
    [ 12.648688] systemd[1]: dhcpcd.service: control process exited, code=exited status=0
    [ 12.648719] systemd[1]: dhcpcd.service got final SIGCHLD for state start
    [ 12.648735] systemd[1]: Main PID loaded: 872
    [ 12.648782] systemd[1]: dhcpcd.service changed start -> running
    [ 12.648786] systemd[1]: Job dhcpcd.service/start finished, result=done
    [ 12.650040] systemd[1]: Started dhcpcd on all interfaces.
    [ 12.838952] systemd[1]: Received SIGCHLD from PID 830 (network).
    [ 12.838973] systemd[1]: Got SIGCHLD for process 830 (network)
    [ 12.839025] systemd[1]: Child 830 died (code=exited, status=1/FAILURE)
    [ 12.839028] systemd[1]: Child 830 belongs to [email protected]
    [ 12.839038] systemd[1]: [email protected]: main process exited, code=exited, status=1/FAILURE
    [ 12.839042] systemd[1]: [email protected] changed start -> failed
    [ 12.839129] systemd[1]: Job [email protected]/start finished, result=failed
    [ 12.841013] systemd[1]: Failed to start A simple WPA encrypted wireless connection using a static IP.
    [ 12.842353] systemd[1]: Unit [email protected] entered failed state.
    [ 12.842373] systemd[1]: Starting Network.
    [ 12.842377] systemd[1]: network.target changed dead -> active
    [ 12.842382] systemd[1]: Job network.target/start finished, result=done
    [ 12.843262] systemd[1]: Reached target Network.
    [ 12.843299] systemd[1]: Accepted connection on private bus.
    [ 12.843488] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 12.843531] systemd[1]: [email protected]: cgroup is empty
    [ 12.843557] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 12.843759] systemd[1]: Accepted connection on private bus.
    Sorry for the delayed response.  I am in the middle of moving.

  • Weblogic 10.3 Bridge fails every other message

    We have setup a bridge between to Tibco EMS servers. The source and target destinations are setup as eis.jms.WLSConnectionFactoryJNDIXA adapters. Start-up the bridge connects to both destinations without problems, so far so good. Once a message appears in the source queue it is able to forward one message and then fails. The bridge attempts to reconnect but fails repeatedly. Also, we noted that we have a transaction that is in committing state for hours. But we can't find this transaction on the tibco server. If you try ot rollback the transaction from the weblogic console it informs you that the object has been deleted.
    "The object that you were viewing has been deleted, either by you or another user. Please make another selection. "
    Also, here is the error we see in the logs:
    <Nov 4, 2010 3:33:49 PM CET> <Warning> <JTA> <BEA-110484> <The JTA health state has changed from HEALTH_OK to HEALTH_WARN with reason codes: Resource eis/jms/WLSConnectionFactoryJNDIXA declared unhealthy.>
    <Nov 4, 2010 3:33:49 PM CET> <Warning> <JTA> <BEA-110204> <XA resource [eis/jms/WLSConnectionFactoryJNDIXA] returns XAER_RMFAIL and is unavailable.>
    <Nov 4, 2010 3:33:49 PM CET> <Error> <MessagingBridge> <BEA-200015> <An error occurred in bridge "TS-Bridge-CSAR" during the transfer of messages (java.lang.Exception: javax.resource.ResourceException: Failed to setup the Resource Adapter Connection for enlistment in the transaction, Pool = 'eis/jms/WLSConnectionFactoryJNDIXA', javax.transaction.SystemException: start() failed on resource 'eis/jms/WLSConnectionFactoryJNDIXA_branchalias_3': XAER_RMFAIL : Resource manager is unavailable
    javax.transaction.xa.XAException
         at com.tibco.tibjms.TibjmsXAResource.startTx(TibjmsXAResource.java:533)
         at com.tibco.tibjms.TibjmsXAResource.start(TibjmsXAResource.java:229)
         at weblogic.connector.security.layer.AdapterLayer.start(AdapterLayer.java:513)
         at weblogic.connector.transaction.outbound.XAWrapper.start(XAWrapper.java:466)
         at weblogic.transaction.internal.XAServerResourceInfo.start(XAServerResourceInfo.java:1183)
         at weblogic.transaction.internal.XAServerResourceInfo.xaStart(XAServerResourceInfo.java:1116)
         at weblogic.transaction.internal.XAServerResourceInfo.enlist(XAServerResourceInfo.java:275)
         at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:511)
         at weblogic.connector.transaction.outbound.XATxConnectionHandler.enListResource(XATxConnectionHandler.java:113)
         at weblogic.connector.outbound.ConnectionWrapper.invoke(ConnectionWrapper.java:218)
         at $Proxy61.createMessage(Unknown Source)
         at weblogic.jms.bridge.internal.MessagingBridge.processMessages(MessagingBridge.java:1455)
         at weblogic.jms.bridge.internal.MessagingBridge.beginForwarding(MessagingBridge.java:1002)
         at weblogic.jms.bridge.internal.MessagingBridge.run(MessagingBridge.java:1079)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
         at weblogic.connector.transaction.outbound.XATxConnectionHandler.enListResource(XATxConnectionHandler.java:201)
         at weblogic.connector.outbound.ConnectionWrapper.invoke(ConnectionWrapper.java:218)
         at $Proxy61.createMessage(Unknown Source)
         at weblogic.jms.bridge.internal.MessagingBridge.processMessages(MessagingBridge.java:1455)
         at weblogic.jms.bridge.internal.MessagingBridge.beginForwarding(MessagingBridge.java:1002)
         at weblogic.jms.bridge.internal.MessagingBridge.run(MessagingBridge.java:1079)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: javax.transaction.SystemException: start() failed on resource 'eis/jms/WLSConnectionFactoryJNDIXA_branchalias_3': XAER_RMFAIL : Resource manager is unavailable
    javax.transaction.xa.XAException
         at com.tibco.tibjms.TibjmsXAResource.startTx(TibjmsXAResource.java:533)
         at com.tibco.tibjms.TibjmsXAResource.start(TibjmsXAResource.java:229)
         at weblogic.connector.security.layer.AdapterLayer.start(AdapterLayer.java:513)
         at weblogic.connector.transaction.outbound.XAWrapper.start(XAWrapper.java:466)
         at weblogic.transaction.internal.XAServerResourceInfo.start(XAServerResourceInfo.java:1183)
         at weblogic.transaction.internal.XAServerResourceInfo.xaStart(XAServerResourceInfo.java:1116)
         at weblogic.transaction.internal.XAServerResourceInfo.enlist(XAServerResourceInfo.java:275)
         at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:511)
         at weblogic.connector.transaction.outbound.XATxConnectionHandler.enListResource(XATxConnectionHandler.java:113)
         at weblogic.connector.outbound.ConnectionWrapper.invoke(ConnectionWrapper.java:218)
         at $Proxy61.createMessage(Unknown Source)
         at weblogic.jms.bridge.internal.MessagingBridge.processMessages(MessagingBridge.java:1455)
         at weblogic.jms.bridge.internal.MessagingBridge.beginForwarding(MessagingBridge.java:1002)
         at weblogic.jms.bridge.internal.MessagingBridge.run(MessagingBridge.java:1079)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
         at weblogic.transaction.internal.XAServerResourceInfo.xaStart(XAServerResourceInfo.java:1140)
         at weblogic.transaction.internal.XAServerResourceInfo.enlist(XAServerResourceInfo.java:275)
         at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:511)
         at weblogic.connector.transaction.outbound.XATxConnectionHandler.enListResource(XATxConnectionHandler.java:113)
         ... 8 more
    ).>
    <Nov 4, 2010 3:33:49 PM CET> <Warning> <JTA> <BEA-110405> <Resource eis/jms/WLSConnectionFactoryJNDIXA was not assigned to any of these servers: Core1 >
    Any idea what may be the problem.? We have about 10 bridges only 3 are failing. The three that are failing are bridging between the same servers.
    Edited by: 807664 on Nov 5, 2010 12:08 AM

    Thanks for the feedback atheek1.
    We already have this patch: CR364493_103.jar. We have added this jar to the classpath of our servers start-up (not the admin server but our application server only) script and it still fails. We also turned on debug level logging for the bridges but we can't see why the connection failed. What we do see is a huge number of "Connections Destroyed by Error" in the jmx-xa-adp monitor page total count from the past 3 days is 100666. The current connections are 20 and we have 58 Reject Connections. Also, once a message is sent and fails then the transaction is rolled back but it never finishes to rollback. The transaction is stuck for many hour looks like close to 24 hours and then it sometimes disappears at this point the bridge tries to resend and sometime it succeeds and sometimes it fails.
    We are running out of options, if we can't fix this soon then we will have to use another solution for our bridging, maybe roll our own.

  • Native application installer fails on Mac 10.5.8 every other time

    Hello,
    I have a native AIR 2.0 application with a native installer which I silently install as a part of a bigger package.
    On Mac, I have a DMG which contains the native installer app and a shell script which copies the native installer app into a temporary folder, and then invokes it passing "-silent" option.
    For some reasons the native installer fails every other time, i.e. if I install the app and then move it to trash and then try to re-install, the installer fails.
    However if I try re-installing once again, installation succeeds. I can consistently reproduce this problem.
    This seems to happen only on Mac OS 10.5.8. On 10.6.0 and above everything seems to work fine.
    What can be the reason for such inconsistent behavior?
    OS version is Mac OS 10.5.8, CPU: 2.8GHz Intel Core Duo
    Below is the log for the cases when the installer fails:
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Application signature verified
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Unpackaging/validation complete
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception ArgumentError: Error #2004" errorID=2004]
    Nov 10 20:19:08 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[9579]: Application Installer end with exit code 7
    Thanks in advance

    Chris, thank you for your answer.
    The only argument I pass into the installer command line is "-silent", i.e. the command line looks like
    "/tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline" -silent
    I've noticed that the installer fails only if it's called from a wrapper package. If I invoke the above command line directly from Terminal, the installer consistently succeeds.
    Here is the full log for the case when installer fails:
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Bootstrapper begin (Mac:version (null))
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Installed runtime located (2.5.0.16600)
    Nov 15 11:21:21 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Launching application installer: "AIR Application Installer" -silent /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.5.8 x86
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Commandline is: -silent "/tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline"
    Nov 15 11:21:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 15 11:21:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Validating app in folder /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline/Contents/Resources
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application signature verified
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Unpackaging/validation complete
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception ArgumentError: Error #2004" errorID=2004]
    Nov 15 11:21:23 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37089]: Application Installer end with exit code 7
    Nov 15 11:21:23 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Application installer failure (7)
    Nov 15 11:21:23 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37088]: Bootstrapper failure (7)^M
    And here is the log for a successful attempt:
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Bootstrapper begin (Mac:version (null))
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Installed runtime located (2.5.0.16600)
    Nov 15 11:25:19 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Launching application installer: "AIR Application Installer" -silent /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.5.8 x86
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Commandline is: -silent "/tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline"
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 15 11:25:20 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Validating app in folder /tmp/PixelNovel/Install Timeline.app/Contents/Resources/Timeline/Contents/Resources
    Nov 15 11:25:21 iMac-3 /usr/sbin/ocspd[37158]: starting
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application signature verified
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Unpackaging/validation complete
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: No app located for appID 'com.pixelnovel.TimelineProjectManager' and pubID ''
    Nov 15 11:25:21 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Starting silent app installation to /Applications. Installing app com.pixelnovel.TimelineProjectManager version 0.0.4 using the source file at file:///tmp/PixelNovel/Install%20Timeline.app/Contents/Resources/Timeline
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/Timeline.app
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Subprocess chown succeeded
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/Timeline.app
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Subprocess chmod succeeded
    Nov 15 11:25:22 iMac-3 /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[37155]: Application Installer end with exit code 0
    Nov 15 11:25:22 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Application installer success
    Nov 15 11:25:22 iMac-3 /tmp/PixelNovel/Install Timeline.app/Contents/MacOS/Install Timeline[37154]: Bootstrapper success^M
    I will also send you a link to the DMG file that reproduces the error as a private message - ma be this will help.
    Thank you,
    Anatoly

  • I recently purchased a movie (Prometheus) on my computer through iTunes and every time I try to put it on my iPhone, it fails. How can I successfully sync this video? Mind you, every other file syncs flawlessly.

    I recently purchased a movie (Prometheus) on my computer through iTunes and every time I try to put it on my iPhone, it fails. How can I successfully sync this video? Mind you, every other file syncs flawlessly.

    Can you connect to a wifi source on the device? Enable wifi in settings on the device itself. If you don't have wifi at home, there may be a local hotspot you can use for this.
    The reason this happens is carriers don't want people downloading huge files that would slow their network as well as eat up your data plan.

  • Is there anyway to turn off the Group MMS texting?  I want to send a mass text but don't want every person to see every other person's response. Please help!

    Is there anyway to turn off the Group MMS texting?  I want to send a mass text but don't want every person to see every other person's response. I am getting ready to have a baby and want to send one text out to friends and family when the baby comes BUT I don't want all of those people to receive the responses.  Can I turn it off temporarily?  Please help!

    Settings > Messages > Group Messaging > Off

  • Fails to find HD on boot up every other time

    Starting in mid-November, shortly after replacing the battery and upgrading to 10.4.3, my ibook would not find the HD during boot up every other time I went to use it. I tried booting from the installation disc 10.4, resetting, PRAM, PMU, NVRAM, etc. but nothing short of putting the computer away for the rest of the day helped. The next day it boots up normally. If it goes to sleep, it starts the SBBOD and freezes. If I shut it down, it fails to boot up, only displaying the file folder with the alternating Mac face/question mark. The only solution is to just let it sit.
    This computer is within the range of serial numbers for the logic board recall, but did not display any symptoms within the three years, and now that is over. I don't understand the regularity with which it intermittently works and fails without anything being done to it.
    BTW, I have reinstalled 10.4, repaired permissions, done one update at a time, repairing permissions in between and it worked fine for two days and has again failed to find the HD on boot up. I have the same software on my Power PC (the same age) and have no trouble whatsoever. I'm typing this from that computer.

    This is what I get everytime I run repair disk permissions.
    Determining correct file permissions.
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/MacOS/Dictio nary. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/version.plis t. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTracker.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/MacOS/FlightTrackerCom boBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Stickies.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/UnitConverter.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets. New permissions are 16877
    We are using a special gid for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New gid is 0
    We are using special permissions for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New permissions are 33261
    We are using special permissions for the file or directory ./usr/lib/php/build/Makefile.global. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/acinclude.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/mkdep.awk. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/phpize.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/scanmakefilein.awk. New permissions are 33060
    Permissions repair complete
    The privileges have been verified or repaired on the selected volume
    Everytime I run this I get the same message. Any reason these won't stay the correct values?

  • IPhone 5 iOS 7.1.4 Call failed every time when the other person hung up before me

    iPhone 5 iOS 7.0.4 says Call failed every time when the other person hung up before me,
    Is there anything I can do to about that please?

    Hey there Yonidawit,
    It sounds like you are are getting a message saying that the call failed, when the person you are talking to hangs up. I have a few things to recommend here. First close all the open apps:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the phone and test it out again:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If that does not resolve it, try resetting your network settings:
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    From: iOS: Troubleshooting Wi-Fi networks and connections
              http://support.apple.com/kb/ts1398
    If the issue persists, I would next backup your device to iTunes, and restore it:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I have been trying to update my cc info and for some reason it has kept saying that the cc info does not match with the bank so the transcation failed every time I was trying to download something even when it's free but my cc got charged $1.- each time.

    I have been trying to update my cc info but for some reason it has kept saying the cc info did not match with the bank info so the transaction failed every time I made an attempt to download something even it was free. However, I saw my cc online got charged $1.00 everything I was trying to update my cc info ...why?

    Im wondering why my post hasn't been answered yet.  I did file a report with the BBB and I had a rude representative from Verizon call me named Steve. He said I can file all of the reports I want and I will just keep getting calls from him.  I can understand why my phone couldn't be replaced because of the small crack.  I guess I have to eat that one (but it sucks because the lollipop update is what caused the problems)  but what about all of the data overage I had to pay for for trying to fix this phone because of a lollipop update.  I dont think it is fair to have to pay that as well. In addition,  because I have an east coast phone number but live on the west coast, I cannot have tech support after 8pm.  Verizon has cut this off.  Im very dissatisfied and I have been a customer of Verizon for 13 years.  Im hoping for a response this time.

  • Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    I would say to start by looking on their web site... unfortunately, that appears to be dead.
    Based on the horrible ratings on the App Store (1 star for the current version), I'm not surprised it doesn't work well.

  • Animated gif files not working in FF5 ok in every other browser

    Hi .
    I am having problems getting animated gifs to play in firefox 5 i am using a photo gallery script to show these files it works in every other browser i have access to (most of them on Linux and windows Xp and win7 ) if i use FF5 as a file manager and navigate to the files they run but not from a web page this is only with firefox 4 and 5 not got previous to 4 to test .

    Right . this looks like it may be a problem with the way FF5 is handling various methods of viewing images i use the following code .
    <pre><nowiki><a class="thumbnail" href="#thumb"><img src="photos/IMG_7039 EOS-1D Mark III copy.jpg" width="100px" height="75px" border="0"><span><img src="photos/Animations/IMG_7039 EOS-1D Mark III copy.gif"></span></a></nowiki></pre>
    along with css .
    <pre><nowiki>(
    .gallerycontainer{
    position: relative;
    /*Add a height attribute and set to largest image's height to prevent overlaying*/
    .thumbnail img{
    border: 1px solid blue;
    margin: 0 5px 5px 0;
    .thumbnail:hover{
    background-color: transparent;
    .thumbnail:hover img{
    border: 1px solid blue;
    .thumbnail span{ /*CSS for enlarged image*/
    position: fixed;
    background-color: lightyellow;
    padding: 5px;
    left: -600px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    .thumbnail span img{ /*CSS for enlarged image displays the large image*/
    border-width: 4;
    padding: 12px;
    .thumbnail:hover span{ /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 230px; /*position where enlarged image should offset horizontally */
    z-index: 50;
    )</nowiki></pre>
    to create the gallery now if i navigate directly to the dir with the gif images in they work ok but if i use the gallery method they fail .
    Tried safe mode no addons no change ..

  • Background job getting failed every day

    Hi,
    This background job getting failed every day.But this job was running fine initial periord.Please help me out this issue.
    SAP_REORG_UPDATERECORDS
    SAP_WP_CACHE_RELOAD_FULL
    SLCA_LCK_SYNCHOWNERS
    Regards
    Naanas.

    If this is R/3, then none of the above jobs should exist in the system, if scheduled by default with other standard jobs, then these should be removed
    Note 1034532 - Changes for standard jobs
    Note 931436 - SLCA_LCK_SYNCHOWNERS standard job terminates

Maybe you are looking for

  • Can't log in to a new 2007A installation.

    I'm doing my first B1 install for demo purposes on an XP laptop.  I already have a working copy of SQL Server 2005 Express Edition installed.  The B1 server and client installation process went smoothly.  I have the license manager running and SQL se

  • Seagate HD crashing? What to do? XP Pro.

    Help. My Seagate HD made an aweful racket this afternoon when I powered it on. It was also very stuborn in completing the quick launch bar and completely loading the OS. I shut down and put my PC on its side and opened the case and re-started. Much b

  • When I go to burn BD I am only given choise of BD-RW not BD-R?

    When I go to burn a blu-ray software indicates recognotion of BD-RW only and not BD-R. Other software has no problem accepting BD-R on my PIONEER writer..

  • To Change the Picking qty...?

    Dear All, While I am using the FM 'BAPI_OUTB_DELIVERY_CHANGE' it change the delivered quantity, but the picking quantity does not get change as per del. qty. And due to this my changed delivery dosen't get save. so how to overcome by this problem. Re

  • Pie chart created in edge animate changes to a square animation when imported into dps

    I Have created an animated pie chart in edge animate and all works fine. I then import into indesign and again all looks fine (even though at this stage it is a flat image) but when i export for dps and preview folio etc the animation turns from a ci