Connecting Websphere MQ with another open source Queuing System

Hi everybody,
i work in a company that has already purshaced Websphere MQ as MOM, and we have some clients that unable to buy it. So is it possible that we find an open source queuing system such as ( openMQ, ActiveMQ ....) able of sending messages to a websphere MQ over a secured channel. I couldnt find any site on the internet that's telling me straightforward that this or that queuing system is able to connect with websphere MQ. So i'm begining to believe that it's impossible to have 2 different queuing systems working together and that it has to happen through an application server. Is that true ?? that every queuing system could only send messages to the same system and if not what open source queuing systems i can use with Websphere MQ ?? I'm really puzzled and hope anyone could help.
Thank You

Thanks. James.
I posted the same message to servicemix user forum.
I have tried including jboss client jars and wl jars in classpath. I started servicemix. It looked OK without errors. However when I publish jms meesage in the destination in jboss (servicemix was supposed to sub the msg from the jboss destination and pub it to wl destination), I got the following errors
C:\incubating-servicemix-3.0-SNAPSHOT\examples\jms-bridge>servicemix servicemix.xml
Apache ServiceMix ESB: 3.0-SNAPSHOT
Loading Apache ServiceMix from file: servicemix.xml
INFO - JBIContainer - Activating component for: [container=ServiceMix,name=#SubscriptionManage
INFO  - ComponentMBeanImpl             - Initializing component: #SubscriptionManager#
INFO  - DeploymentService              - Restoring service assemblies
INFO  - JBIContainer                   - ServiceMix JBI Container (http://servicemix.org/) name: ServiceMix runni
INFO  - JBIContainer                   - Activating component for: [container=ServiceMix,name=myJmsReceiver] with
INFO - ComponentMBeanImpl - Initializing component: myJmsReceiver
INFO - JBIContainer - Activating component for: [container=ServiceMix,name=transformer] with s
INFO - ComponentMBeanImpl - Initializing component: transformer
INFO - JBIContainer - Activating component for: [container=ServiceMix,name=transformedSender]
INFO - ComponentMBeanImpl - Initializing component: transformedSender
INFO - JBIContainer - Activating component for: [container=ServiceMix,name=myJmsSender] with s
INFO - ComponentMBeanImpl - Initializing component: myJmsSender
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
[Fatal Error] :1:1: Content is not allowed in prolog.
ERROR - ServerThread - socket timed out
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
at java.io.FilterInputStream.read(FilterInputStream.java:66)
at org.jboss.serial.io.JBossObjectInputStream.read(JBossObjectInputStream.java:140)
at org.jboss.remoting.transport.socket.ServerThread.readVersion(ServerThread.java:464)
at org.jboss.remoting.transport.socket.ServerThread.processInvocation(ServerThread.java:381)
at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:498)
at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:240)
Note: please ignor the transformer which I did not use it in the test. My servicemix.xml is
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns:sm="http://servicemix.apache.org/config/1.0" xmlns:foo="http://servicemix.org/demo/pipeline/">
<!-- the JBI container and its components
-->
<sm:container id="jbi" embedded="true">
<sm:activationSpecs>
<sm:activationSpec componentName="myJmsReceiver" service="foo:myJmsReceiver" destinationService="foo:jmsSender">
<sm:component>
<bean class="org.apache.servicemix.components.jms.JmsReceiverComponent">
<property name="template">
<bean class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory">
<ref bean="jbossConnectionFactory" />
</property>
<property name="defaultDestination" >
<ref bean="jbossSourceDestination" />
</property>
<property name="pubSubDomain" value="true" />
</bean>
</property>
</bean>
</sm:component>
</sm:activationSpec>
<sm:activationSpec componentName="transformer" service="foo:transformer" destinationService="foo:transformedSender">
<sm:component>
<bean class="org.apache.servicemix.components.xslt.XsltComponent">
<property name="xsltResource" value="classpath:org/apache/servicemix/components/xslt/transform.xsl" />
</bean>
</sm:component>
</sm:activationSpec>
<sm:activationSpec componentName="transformedSender" service="foo:transformedSender">
<sm:component>
<bean class="org.apache.servicemix.components.jms.JmsSenderComponent">
<property name="template">
<bean class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory">
<ref local="jmsFactory" />
</property>
<property name="defaultDestinationName" value="demo.cheese.result" />
<property name="pubSubDomain" value="true" />
</bean>
</property>
</bean>
</sm:component>
</sm:activationSpec>
<sm:activationSpec componentName="myJmsSender" service="foo:jmsSender">
<sm:component>
<bean class="org.apache.servicemix.components.jms.JmsSenderComponent">
<property name="template">
<bean class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory">
<ref bean="weblogicConnectionFactory" />
</property>
<property name="defaultDestination">
<ref bean="weblogicTargetDestination" />
</property>
<property name="pubSubDomain" value="true" />
</bean>
</property>
</bean>
</sm:component>
</sm:activationSpec>
</sm:activationSpecs>
</sm:container>
<bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory">
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost?broker.persistent=false" />
</bean>
</property>
</bean>
<bean id="jbossJndiTemplate" class="org.springframework.jndi.JndiTemplate">
<property name="environment">
<props>
<prop key="java.naming.factory.initial">
org.jnp.interfaces.NamingContextFactory
</prop>
<prop key="java.naming.provider.url">
jnp://L71037263:1099
</prop>
<prop key="java.naming.factory.url.pkgs">
org.jboss.naming:org.jnp.interfaces
</prop>
</props>
</property>
</bean>
<bean id="jbossConnectionFactory"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate">
<ref bean="jbossJndiTemplate"/>
</property>
<property name="jndiName">
<value>ConnectionFactory</value>
</property>
</bean>
<bean id="jbossSourceDestination"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate">
<ref bean="jbossJndiTemplate"/>
</property>
<property name="jndiName">
<value>topic/testTopic</value>
</property>
</bean>
<bean id="weblogicJndiTemplate" class="org.springframework.jndi.JndiTemplate">
<property name="environment">
<props>
<prop key="java.naming.factory.initial">
weblogic.jndi.WLInitialContextFactory
</prop>
<prop key="java.naming.provider.url">
t3://enic01.ed.ray.com:7001
</prop>
</props>
</property>
</bean>
<bean id="weblogicConnectionFactory"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate">
<ref bean="weblogicJndiTemplate"/>
</property>
<property name="jndiName">
<value>mil/dcgs/jms/mdf/catalogConnectionFactory</value>
</property>
</bean>
<bean id="weblogicTargetDestination"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate">
<ref bean="weblogicJndiTemplate"/>
</property>
<property name="jndiName">
<value>topic/GMTIDetections</value>
</property>
</bean>
</beans>
Thank you very much if you have any idea on it!!!!!
By the way, I wonder how the servicemix jms bridge works. did I use it correctly?
-

Similar Messages

  • Is SAP Netweaver environment compatible with CruiseControl open source tool

    Hi All,
    Can you please let me know if
    Is SAP Netweaver environment compatible with CruiseControl open source tool?
    If yes, steps to integrate the same.
    Regards,
    Raj

    Ken,
    Few suggestions from my side.
    >>who supports the code? It's free, so there is >>no 'technical support hotline' to call. For every >>package that we install, we therefore increase our >>workload.
    This varies from package to package. If you see Hibernate which is a OR mapping library, you get support for it which is run by a altogether different company but you might not get the support for your other library codes. so..varies with what you are trying to use.
    >>testing strategy - how many hoops do we make the code >>go through before we can be assured that >>it's 'production' ready?
    This will also depend on the free source stuff you are trying to use. Say in case of Struts or log4j like packages, you wont find any flaws as the industry is heavily relying on these today. but a new library and yes, you need fair amount of testing for that.
    >>what is the SAP stance on incorporating open source >>code into the J2EE engine? Does this in any way affect >>supportability?
    SAP would be the best option to enquire with :).
    >>rapid change - Open source code can change quite >>rapidly, so how do you handle this?
    Not necessary you have to upgrade.If a current version suffices your business requirement then stick with it.
    Even if you change to a latest version,you might need to tweak with your java versions (say upgrade java also) but the existing functionality in previous versions will continue to work fine though..
    Hope this helps..
    Rgds,
    Amol

  • Open source surveillance system

    can I edit the codes of iSpy and Video Insight sir? thank you

    do you know any open source surveillance system that can be edit the codes? please i need help for my thesis entitled "spy camera with SMS alert system" i hope you guys help me. thankyou :)
    This topic first appeared in the Spiceworks Community

  • Cannot connect to video with another user

    I recently updated my operating system to Snow Leopard, so I have iChat version 5.0.3 and I can't seem to video chat with another user who still has Tiger with iChat version 3.1.9. We have no problems chatting, but the video chat will not work.
    Any suggestions?

    Hi,
    Many possible suggestions from here.
    In System Preferences > Security > Firewall tab is the Firewall On ?
    If it is go to the Advanced Button.
    In here is Allow Signed Apps selected and iChat in the list ?
    (I am expecting you to confirm it is Off or iChat is listed with Allow Signed Apps selected as you can Video with a Text account)
    In iChat > Preferences > Video/Audio section change the Bandwidth Limit drop down to read 500kbps.
    Your Buddy on iChat 3 should go to System Preferences > Quicktime > Streaming tab and check this is set to 1.5Mbps T1/Intranet/LAN
    This is needed to get the best speed out of his Connection.
    You setting the 500kbps should stop/slow down iChat 5 from expecting a response too quickly and will also smooth out any variances in your Connection Speed.
    There is no Quicktime Setting in Snow Leopard to limit iChat.
    I presume you update to Snow Leopard from Leopard and that your Router is already set up for iChat ?
    Ideally the ports iChat needs should be opened with UPnP as it allows iChat Screen Sharing to other iChat 4 and 5 users.
    You will be getting Logs of the failed chats.
    The Pop up can be opened at the reveal Triangle on the left near the word Details.
    Old ones are stored in your Home Folder/Library/Logs/iChatConnectionErrors
    It would be interesting to see the last one (Less the bits below the line that reads Binary Images for iChat
    In the Connection Doctor (Video Menu) there is a new option for Network Status which will give some clues about how your router does NAT.
    The Log should also give details about your end and the Buddies device (If it gets that far)
    The Test Accounts use Public IPs (no router involved) and don't therefore use NAT which gets around some of these issues. (Effectively it is only a partial test about your Set up)
    8:45 PM Monday; October 4, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • [SOLVED]X11 video output only with ati open source drivers

    Hi everyone,
    my nvidia graphics card died recently and I replaced it with an ATI Radeon HD 4870, which in hindsight might have been a mistake.
    I installed the catalyst driver at first, ran into some problems, finally decided to switch to the open source xf86-video-ati driver. Followed the ati wiki, but ended up with X11 video output only. Can't watch anything full screen, general performance is sluggish. The output of xvinfo is:
    screen #0
    no adaptors present
    Here are the (hopefully) relevant parts of my xorg.conf:
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "dri2"
    Load "dbe"
    Load "record"
    Load "glx"
    Load "extmod"
    Load "dri"
    Load "drm"
    EndSection
    Section "Monitor"
    #DisplaySize 470 300 # mm
    Identifier "Monitor0"
    VendorName "SAM"
    ModelName "SyncMaster"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    Option "AGPMode" "8"
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    Option "ColorTiling" "on"
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    Option "AccelMethod" "EXA"
    #Option "DRI" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RV770 [Radeon HD 4870]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Any ideas?
    Last edited by Raisuli (2009-05-31 16:08:41)

    I think I had XV with this stuff: xf86-video-radeonhd-git-r6xx-r7xx and drm-radeon-module-git-r6xx-r7xx

  • Tearing video playback with radeon open source

    Hi all, I'm pretty new to Arch. I've got almost everything set up and working nicely, except video playback.
    I get a lot of tearing using the open source drivers. It happens both with mPlayer(no matter which output is chosen) and VLC. Happened in Ubuntu and happens in Arch. In Ubuntu the only thing that solved it was enabling Tear Free Desktop from CCC(which enable VSYNC and Tripple Buffering), but I wanna stick to open source drivers in Arch(that's the prefered choice according to the Wiki).
    Can I enable VSYNC in these drivers? Please help.
    Not sure if it matters, but I'm running GNOME 3.
    Thanks!

    Maybe you will find something useful here: http://www.x.org/wiki/RadeonFeature/#VSYNC
    Or here: http://phoronix.com/forums/showthread.p … s-Showdown
    I am not currently using ATI hardware to tell you exactly what's needed.  Using a compositor such as Compiz might make the difference.

  • Help with ati open-source driver :what problems with my xorg.conf?

    I removed vesa driver and then :
    sudo pacman -S xf86-video-ati libgl
    I have browser http://wiki.archlinux.org/index.php/ATI
    I add me to the group video,add radeon to my rc.conf.
    and changed my xorg.conf like that.and then I type "startx",It did work,but the resolution is not right (it should be 1027x768 but I got a resolution 640x480),and I run glxinfo it said :"unable to open  display"
    I'm sure the     HorizSync VertRefresh is right besause when I try catalyst it works well :<
    my card is ati X550
    Here's my config:(can anyone who's ati card work with open-source driver works well give me your xorg.conf ?THX!)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "radeon"
    Load "glx"
    Load "record"
    Load "extmod"
    Load "xtrap"
    Load "GLcore"
    Load "dbe"
    Load "dri"
    Load "drm"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "ImPS/2"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 320 240 # mm
    Identifier "Monitor0"
    VendorName "KTC"
    ModelName "1700"
    ### Comment all HorizSync and VertRefresh values to use DDC:
    HorizSync 28.0 - 80.0
    VertRefresh 50.0 - 200.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RV370 [Sapphire X550 Silent]"
    Option "XAANoOffscreenPixmaps" "true"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "EnablePageFlip" "on"
    Option "AGPFastWrite" "true"
    BusID "PCI:1:0:0"
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768"
    EndSubSection
    EndSection

    Ok, seems like you don't use [testing] because in this case x wouldn't even start, because RgbPath in the Section "Files" doesn't exist anymore and has to be removed.
    I do always recommend people to disable any kind of options in the Section "Device", if there are problems with the video card. You usually do not have to put radeon neigher into the Section "Module", nor into rc.conf! So remove them, radeon should be loaded because it's set as Driver in the Section "Device"
    Your problem with wrong resolution ... I'm not an expert in this, didn't ever have such a problem, but are you sure, that your HorizSync and VertRefresh values are right?

  • Connection to ByDesign with a ODP Source system: Logical port creation on CO_RSDSPX_ODP_IN

    Hello,
    I am trying to connect my ByDesign Could server to the our BW Server by an ODP Source system.
    I tried applying what SAP recommend:
    http://help.sap.com/saphelp_nw73/helpdata/en/46/b9297716c94e509fcbe62d3c795e85/content.htm?frameset=/en/c6/afacb707764885a6fb62f511c24f34/frameset.htm
    http://help.sap.com/saphelp_nw73/helpdata/en/ca/14c0899cb04f16929b5d88e147fc8f/content.htm
    http://help.sap.com/saphelp_nw73/helpdata/en/9e/c7a3591dc74a679bbc9716354e42af/frameset.htm
    When trying to create a Logical Port on CO_RSDSPX_ODP_IN from SOA Manager with a WSDL Based configuration (downloaded from a Webservice of our ByD), this error is thrown:
    SRT Framework exception: The WSDL document is not compatible with proxy class "CO_RSDSPX_ODP_IN": "Unsupported Operation(s):GetList, CloseSubscription, CloseSubscription, CloseSubscription, CloseSubscription, CloseSubscripti
    Do you have any idea ?
    Also, i was unable to use any Consumer Service directly ... I am not a Basis and don't understand what configuration needs to be done.
    Thank you very much.

    Hi,
    Did you create consumer proxy for the service you like to consume ?
    It looks like your WSDL and Consumer proxy are not the same ?
    Or you could create Logical Port Manually, but it will fail on provider side because the message you are sending and the provider of the service are not the same.
    Manual Configuration
    The system uses a user-specified binding URL to create a logical port. You need to specify a unique name for the logical port.
    Thank You
    Regards
    Gov

  • The new FAFSA web protocol for applying for student loans allows the use of Firefox3.6 on PCs but not on my Linux computer. Any idea what the Federal government is not comfortable with an Open Source solution.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/775988]</blockquote><br>
    I just tried to fill out the FAFSA form for financial aid on my Linux computer using Firefox 6.13. I was told I had a non-compliant browser. When I contacted them they send me a list of compatible browsers. The only operating systems listed were PC and Mac with a variety of browsers for each. This is their website

    The most likely cause that your non-standard user agent that has ''Fedora/3.6.10-1.fc13'' is causing it:
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.10) Gecko/20100920 Fedora/3.6.10-1.fc13 Firefox/3.6.10 GTB7.1
    * [[Web sites or add-ons incorrectly report incompatible browser]]
    * http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default
    A standard UA of Firefox 3.6.13 on Linux looks like:
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13

  • Using Blaze DS with a open source ESB such as Mule and/or Fuse

    Hi,
    I was wondering if any one has figured out a way to have Blaze DS work with Mule or Fuse ESB
    Srini

    Something is seriously wrong then.  Did you move it?  There are several Library folders.  One of them should be inside your HOME folder.
    If WZZZ suggestion does not work, re-install your OS by using Mac OS X 10.6.8 Update Combo.  When done, repair permissions and restart your computer.

  • Is Adobe AIR compatible with the Open Source Media Framework (OSMF)?

    Yes, OSMF can be used to play back content within an Adobe AIR application.

    Hi Pierre,
    Would you mind adding this as a new bug report over at bugbase.adobe.com?  I went to look to see if there was an existing bug already in place but couldn't find one.  If you can, note this thread url in the bug and post back with the bug URL and I'll follow up internally.
    In Yue's original bug, he was able to narrow this down to memory leaks in the spark component video display.  He ended up working around it by using the mx video display.
    Thanks,
    Chris

  • Inconsisten with the protected source The system cannot find the path specified (0x80070003)

    Hi,
    we are getting an error with the DPM server, the disk is on the same server, other disk have no issues
    The replica of Volume H:\ on backup.domain.eu is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. You can recover data from existing recovery points, but
    new recovery points cannot be created until the replica is consistent. 
    DPM encountered an error while performing an operation for \\?\Volume{5d0ecad1-5d88-47eb-8a5c-13dddaf0d41e}\app\invoice\ on backup.domain.eu (ID 2033 Details: The system cannot find the path specified (0x80070003))
    we did a consistency check twice and a disk scan, even deleted the backup and recreated it

    Hi,
    From the following article, you can first try a consistent checking:
    Replica inconsistent
    https://technet.microsoft.com/en-us/library/bb809059.aspx
    To perform a consistency check
    In DPM Administrator Console, click Protection on the navigation bar.
    In the Display pane, select the protection group member for which you want to perform a consistency check.
    In the Actions pane, click Perform consistency check.
    In the dialog that notifies you that a consistency check is a lengthy operation, click OK.
    If it failed, please try to manually synchronize a replica as referred in this article:
    How to Synchronize a Replica
    https://technet.microsoft.com/en-us/library/bb795867.aspx
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Data Migration from IDES to Vanilla open source SAP System

    Can any one help me as to what are the SD tables  that should be migrated between 2 SAP systems in order to operationalize a complete Sales Cycle . This information has to be provided to the Basis team . Where i should i start from and what should be my approach ?

    Tables in Sales and Distribution (SD) :
    Document Flow
    VBFA - Document flow (alg.)
    VTFA - Flow shipping documents
    Sales order :
    VBAK - Header data
    VBAP - Item data
    VBPA - Partners in sales order
    VBKD - Sales district data
    VBEP - Data related to line items, delivery lines
    Billing document :
    VBRK - header data
    VBRP - Item data
    Shipping :
    VTTK - Shipment header
    VTTP - Shipment item
    VTTS - Stage in transport
    VTSP - Stage in transport per shipment item
    VTPA - Shipment partners
    VEKP - Handling Unit - Header Table
    VEPO - Packing: Handling Unit Item (Contents)
    Delivery :
    LIKP - Delivery header
    LIPS - Delivery item
    Pricing :
    KONH - Conditions header
    KONP - Conditions items
    KONV - Procedure ( billing doc or sales order)
    KOND
    Contracts :
    VEDA - Contract data
    Regards,
    Rajesh Banka

  • ADF (View Object) with open source database

    Hi all,
    Recently, I am evaluating JDeveloper 9.0.5.2 ADF with an open source database (Firebird).
    I follow the instruction to:
    1. Create an entity object
    2. Create a view object for the entity object in 1
    3. Create an application module for the view object in 2
    4. Right click on the application module and test -> all worked fine
    5. I created a jsp and drag the view (in 2) to it from Data Control Palette
    6. Test it in OC4J -> an error occurred (not because of jdbc config)
    JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT Department.DEPT_NO, Department.DEPARTMENT AS DEPARTMENT1, Department.HEAD_DEPT, Department.MNGR_NO, Department.BUDGET, Department.LOCATION, Department.PHONE_NO FROM DEPARTMENT Department) QRSLT ORDER BY DEPT_NO
    GDS Exception. 335544569. Dynamic SQL Error SQL error code = -104 Token unknown - line 1, char 16 SELECT
    To my knowledge, the error should be due to Firebird doesn't support the query syntax " select * (select col1, col2... from table) QRSLT where... order by... "
    I am quite headache as this query is automatically generated by JDeveloper. I am figuring out whether I can change it. It seems that I have to play with the ViewObjectImpl class.
    I do think ADF is an amazing technology. However, is it only so amazing with the Oracle technologies? Please correct me if I am wrong.
    Hons

    Dear Shay Shmeltzer,
    Thank you for your reply. After hours of trying on Firebird, I still get the error:
    JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT Department.DEPT_NO, Department.DEPARTMENT AS DEPARTMENT1, Department.HEAD_DEPT, Department.MNGR_NO, Department.BUDGET, Department.LOCATION, Department.PHONE_NO FROM DEPARTMENT Department) QRSLT ORDER BY DEPT_NO
    GDS Exception. 335544569. Dynamic SQL Error SQL error code = -104 Token unknown - line 1, char 16 SELECT
    I then downloaded the MySQL 4.0 and install on my system to do the exact procedures. No error! Thing works fine! Oh man...
    For the Firebird case, a strange thing to note is that the data table (I dragged) contains data, but the error message is on top of it.
    Actually, I don't have a particular database preference but I do hope ADF can work equally for these open-source databases. I think the problem may also be contributed by Firebird. Hope that I can figure it out this week.
    Regards,
    Hons

  • [HOWTO] DRI with Open-Source ATI drivers

    Hi, I've recently got DRI working on my ATI Radeon 9600 pro with the open source drivers so I'll try to explain you my method expecting this will be useful for you...
    First, be sure you have the driver installed :
    # pacman -S xf86-video-ati
    And now edit your xorg.conf like this :
    Section "Module"
    Load "dri"
    Load "glx"
    EndSection
    Section "Device"
    Identifier "ATI Radeon 9600 Pro (RV350)"
    Driver "radeon"
    BusID "PCI:1:0:0"
    VendorName "ATI Technologies Inc."
    EndSection
    And at the end of the file add :
    Section "DRI"
    Mode 0666
    EndSection
    That's all for the xorg.conf now...
    Then, we have to load the needed modules at startup so in rc.conf add the modules in this order :
    MODULES=(sis_agp agpgart radeon drm)
    PS: I have a sis AGP chipsets you have to replace 'sis_agp' by your AGP chipset...
    Now reboot your computer and lunch
    glxinfo | grep 'direct rendering'
    which may ouput :
    direct rendering: Yes
    If no, read the Xorg log file (/var/log/Xorg.0.log) and look for the lines which start whith (WW) or (EE) to found the problème...
    I think all it's good run glxgears to see DRI in action and now we go to add some options to the "Device Section" in the xorg.conf :
    Identifier "ATI Radeon 9600 Pro (RV350)"
    Driver "radeon"
    BusID "PCI:1:0:0"
    VendorName "ATI Technologies Inc."
    Option "AGPMode" "8"
    Option "AGPFastWrite" "true"
    Option "RenderAccel" "true"
    Restart the X server and that's all...
    Bonus :  Transparency and Shadow
    Edit the xorg.cong and add this lines after the Module Section :
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    Option "DAMAGE" "true"
    EndSection
    And this option to the Device Secton :
    Option "backingstore" "true"
    Restart again the X server and now you can see... NOTHING!! :shock:
    So install 'xcompmgr' and 'transset' to see something :
    # pacman -S xcompmgr transset
    Then do
    xcompmgr -c
    and now you may see the shadow of the windows...
    Links :
    man radeon
    DRI with ATi Open-Source Drivers
    Xorg X11 and Transparency

    hmm, it didn't help.
    btw: I just remembered I had turned agpfastwrites off in my bios (reviews tell it's a bad idea to use fastwrites with a radeon 9600) So I tried to put it back on, and now X completely freezes my pc when it starts, so I've turned it back off
    [offtopic]If you screw up x so it locks your pc, and x is started by default (default runlevel is 5), are the any grub parameters or something else to disable x from starting? otherwise I need a gentoo live cd to recover (the arch live cd won't detect my raid)[/offtopic]
    Here a part of my xorg.log. As you can see it complains the r300 mesa driver isn't included, is that normal? I can't find how I should install it...
    and the agpdmamode option is also ignored as you can see
    (**) RADEON(0): RADEONScreenInit c0000000 0
    (**) RADEON(0): Map: 0xc0000000, 0x08000000
    (==) RADEON(0): Write-combining range (0xc0000000,0x8000000)
    (**) RADEON(0): RADEONSave
    (**) RADEON(0): RADEONSaveMode(0x8227a90)
    (**) RADEON(0): Read: 0x00080002 0x00020020 0x00000000
    (**) RADEON(0): Read: rd=2, fd=32, pd=2
    (**) RADEON(0): RADEONSaveMode returns 0x8227a90
    (WW) RADEON(0): Enabling DRM support
    *** Direct rendering support is highly experimental for Radeon 9500
    *** and newer cards. The 3d mesa driver is not provided in this tree.
    *** A very experimental (and incomplete) version is available from Mesa CVS.
    *** Additional information can be found on http://r300.sourceforge.net
    *** This message has been last modified on 2005-08-07.
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:03:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: drmOpenMinor returns 7
    drmOpenByBusid: drmGetBusid reports pci:0000:03:00.0
    (II) RADEON(0): [drm] DRM interface version 1.2
    (II) RADEON(0): [drm] created "radeon" driver at busid "pci:0000:03:00.0"
    (II) RADEON(0): [drm] added 8192 byte SAREA at 0xe1534000
    (II) RADEON(0): [drm] mapped SAREA 0xe1534000 to 0xb78a5000
    (II) RADEON(0): [drm] framebuffer handle = 0xc0000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): [agp] Mode 0x1f00421b [AGP 0x10de/0x01e0; Card 0x1002/0x4150]
    (II) RADEON(0): [agp] 8192 kB allocated with handle 0x00000001
    (II) RADEON(0): [agp] ring handle = 0xe0000000
    (II) RADEON(0): [agp] Ring mapped at 0xaf67b000
    (II) RADEON(0): [agp] ring read ptr handle = 0xe0101000
    (II) RADEON(0): [agp] Ring read ptr mapped at 0xaf67a000
    (II) RADEON(0): [agp] vertex/indirect buffers handle = 0xe0102000
    (II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xaf47a000
    (II) RADEON(0): [agp] GART texture map handle = 0xe0302000
    (II) RADEON(0): [agp] GART Texture map mapped at 0xaef9a000
    (II) RADEON(0): [drm] register handle = 0xeb000000
    (II) RADEON(0): [dri] Visual configs initialized
    (**) RADEON(0): DRI New memory map param
    (**) RADEON(0): RADEONInitMemoryMap() :
    (**) RADEON(0): mem_size : 0x08000000
    (**) RADEON(0): agp_size : 0x08227968
    (**) RADEON(0): agp_base : 0x08227968
    (**) RADEON(0): MC_FB_LOCATION : 0xc7ffc000
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): RADEONModeInit()
    1400x1050@85 179.30 1400 1504 1656 1912 1050 1051 1054 1103 (24,32) -H +V
    1400x1050@85 179.30 1400 1504 1656 1912 1050 1051 1054 1103 (24,32) -H +V
    (**) RADEON(0): Pitch = 11534512 bytes (virtualX = 1400, displayWidth = 1408)
    (**) RADEON(0): dc=17930, of=35860, fd=159, pd=2
    (**) RADEON(0): RADEONInit returns 0x8228440
    (**) RADEON(0): RADEONRestoreMode()
    (**) RADEON(0): RADEONRestoreMode(0x8228440)
    (**) RADEON(0): RADEONRestoreMemMapRegisters() :
    (**) RADEON(0): MC_FB_LOCATION : 0xc7ffc000
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): Map Changed ! Applying ...
    (**) RADEON(0): Map applied, resetting engine ...
    (**) RADEON(0): Updating display base addresses...
    (**) RADEON(0): Memory map updated.
    (**) RADEON(0): Programming CRTC1, offset: 0x00000000
    (**) RADEON(0): Wrote: 0x0000000c 0x0001009f 0x00000000 (0x0000bf00)
    (**) RADEON(0): Wrote: rd=12, fd=159, pd=1
    (**) RADEON(0): GRPH_BUFFER_CNTL from 30354c4c to 204a7c7c
    (**) RADEON(0): RADEONSaveScreen(0)
    (II) RADEON(0): Depth moves disabled by default
    (**) RADEON(0): Setting up initial surfaces
    (**) RADEON(0): Initializing fb layer
    (**) RADEON(0): Setting up accel memmap
    (II) RADEON(0): CP in BM mode
    (II) RADEON(0): Using 8 MB GART aperture
    (II) RADEON(0): Using 1 MB for the ring buffer
    (II) RADEON(0): Using 2 MB for vertex/indirect buffers
    (II) RADEON(0): Using 5 MB for GART textures
    (II) RADEON(0): Memory manager initialized to (0,0) (1408,8191)
    (II) RADEON(0): Reserved area from (0,1050) to (1408,1052)
    (II) RADEON(0): Largest offscreen area available: 1408 x 7139
    (II) RADEON(0): Will use back buffer at offset 0x16b0000
    (II) RADEON(0): Will use depth buffer at offset 0x1c54000
    (II) RADEON(0): Will use 96256 kb for textures at offset 0x2200000
    (**) RADEON(0): Initializing backing store
    (==) RADEON(0): Backing store disabled
    (**) RADEON(0): DRI Finishing init !
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (II) RADEON(0): [DRI] installation complete
    (**) RADEON(0): EngineRestore (32/32)
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 11
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 5111808
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0): MC_FB_LOCATION was: 0xc7ffc000 is: 0xc7ffc000
    (WW) RADEON(0): MC_AGP_LOCATION was: 0xffffffc0 is: 0xe07fe000
    (**) RADEON(0): GRPH_BUFFER_CNTL from 30354c4c to 204a7c7c
    (II) RADEON(0): Direct rendering enabled
    (**) RADEON(0): Setting up final surfaces
    (**) RADEON(0): Initializing Acceleration
    (II) RADEON(0): Render acceleration unsupported on Radeon 9500/9700 and newer.
    (II) RADEON(0): Render acceleration disabled
    (**) RADEON(0): EngineInit (32/32)
    (**) RADEON(0): Pitch for acceleration = 176
    (**) RADEON(0): EngineRestore (32/32)
    (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Lines
    Scanline Image Writes
    Offscreen Pixmaps
    Setting up tile and stipple cache:
    32 128x128 slots
    32 256x256 slots
    16 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (**) RADEON(0): Initializing DPMS
    (**) Option "dpms"
    (**) RADEON(0): DPMS enabled
    (**) RADEON(0): Initializing Cursor
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Using hardware cursor (scanline 1052)
    (II) RADEON(0): Largest offscreen area available: 1408 x 7136
    (**) RADEON(0): Initializing color map
    (**) RADEON(0): Initializing DGA
    (**) RADEON(0): Initializing Xv
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 0.8
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (WW) RADEON(0): Option "EnableAGPDMA" is not used
    (**) RADEON(0): RADEONScreenInit finished

Maybe you are looking for