Question about Model Driven over RTMPS configuration

I am testing model driven development features these days and encountered a problem:
When I used RTMP channel to retrieve data from the server, everything works fine, however when I tried to use RTMPS channel, I got following error:
Could not initialize DataService.
Missing or invalid configuration for destinations: ["CodeModel.Code"]
the CodeModel is the model I created by using the modler under Flash Builder4, and it simply include one table called Code. I can retrieve data, update and delete data with this model over RTMP channel, but not over RTMPS channel.
I set up my RTMPS channel by creating a self-signed certificate and installed it in the trusted area of the browser, then I referenced the keystore file in the service-config.xml, here is the snap of my configuration:
<channel-definition id="my-rtmps" class="mx.messaging.channels.SecureRTMPChannel">
        <endpoint url="rtmps://{server.name}:2099"
          class="flex.messaging.endpoints.SecureRTMPEndpoint"/>
        <properties>
            <idle-timeout-minutes>30</idle-timeout-minutes>
             <keystore-file>D:/tomcat.store</keystore-file>
            <keystore-password>password</keystore-password>
        </properties>
</channel-definition>
following is the server side log when I tried to retrieve data from server over RTMPS channel:
[LCDS]Deserializing AMF/RTMP request
Version: 0  "connect"
  1.0
  (Command method=connect (2) trxId=1.0)
    (Object #0)
      app = ""
      flashVer = "WIN 10,0,45,2"
      swfUrl = "http://localhost:8080/lcds/CodeDemo-debug/CodeDemo.swf"
      tcUrl = "rtmps://localhost:2099"
      fpad = false
      capabilities = 15.0
      audioCodecs = 3191.0
      videoCodecs = 252.0
      videoFunction = 1.0
      pageUrl = "http://localhost:8080/lcds/CodeDemo-debug/CodeDemo.html"
      objectEncoding = 3.0
    true
    "nil"
    (Typed Object #1 'flex.messaging.messages.CommandMessage')
      operation = 5.0
      correlationId = ""
      clientId = null
      body = (Object #2)
      headers = (Object #3)
        DSMessagingVersion = 1.0
        DSNeedsConfig = true
        DSId = "my-rtmps"
      messageId = "12B87B6D-9372-71E2-3D63-8C680CBEA8EE"
      timestamp = 0.0
      timeToLive = 0.0
      destination = ""
[LCDS]Received command: TCCommand [ Cmd: 2, MethodName: connect, TrxID: 1.0]
[LCDS]FlexSession created with id 'FECA09F0-F71A-F8ED-9E68-30B9D6609791' for a direct RTMP connection. Id value was server generated.
[LCDS]Returning service description for endpoint: my-rtmps config: {default-channels={channel={ref=my-rtmp}}, channels={channel=[{id=my-rtmps, type=mx.messaging.channels.SecureRTMPChannel, endpoint={uri=rtmps://{server.name}:2099}, properties={serialization={enable-small-messages=true}}}, {id=my-rtmp, type=mx.messaging.channels.RTMPChannel, endpoint={uri=rtmp://{server.name}:2039}, properties={serialization={enable-small-messages=true}}}]}}
[LCDS]Serializing AMF/RTMP response
Version: 0
  (Command method=_result (0) trxId=1)
    (Object #0)
      id = "FECA09F0-F729-8037-075D-EDD727DDE50E"
      objectEncoding = 3.0
      level = "status"
      serverConfig = (Typed Object #1 'flex.messaging.config.ConfigMap')
        default-channels = (Typed Object #2 'flex.messaging.config.ConfigMap')
          channel = (Typed Object #3 'flex.messaging.config.ConfigMap')
            ref = "my-rtmp"
        channels = (Typed Object #4 'flex.messaging.config.ConfigMap')
          channel = (Typed Object #5 'flex.messaging.io.ArrayCollection')
            source = (Array #6)
              [0] = (Typed Object #7 'flex.messaging.config.ConfigMap')
                id = "my-rtmps"
                type = "mx.messaging.channels.SecureRTMPChannel"
                endpoint = (Typed Object #8 'flex.messaging.config.ConfigMap')
                  uri = "rtmps://{server.name}:2099"
                properties = (Typed Object #9 'flex.messaging.config.ConfigMap')
                  serialization = (Typed Object #10 'flex.messaging.config.ConfigMap')
                    enable-small-messages = "true"
              [1] = (Typed Object #11 'flex.messaging.config.ConfigMap')
                id = "my-rtmp"
                type = "mx.messaging.channels.RTMPChannel"
                endpoint = (Typed Object #12 'flex.messaging.config.ConfigMap')
                  uri = "rtmp://{server.name}:2039"
                properties = (Typed Object #13 'flex.messaging.config.ConfigMap')
                  serialization = (Typed Object #14 'flex.messaging.config.ConfigMap')
                    enable-small-messages = "true"
      details = null
      description = "Connection succeeded."
      DSMessagingVersion = 1.0
      code = "NetConnection.Connect.Success"
      DSrtmpId = "FECA09F0-F71A-F8ED-9E68-30B9D6609791"
[LCDS]Thread[my-rtmps-SocketServer-WorkerThread-2,5,main] registering write interest for Connection '26991461'.
The server side log did not show any exceptions, I am wondering is there any other settings that I need to pre-config in order to make my app run over the RTMPS channel?
Any help will be appreciated!

The problem is solved. The error message is due to the default channel was set to RTMP in my data-management-config.xml file. That's why modifing the application level default channel does not work. After I changed it to RTMPS, it worked.
One more thing to make sure though, if I want to use both of the RTMP channel and RTMPS channel in my app (not for fail over) , I have to create at least two models right? Also do I need to change the default channel in data-management-config.xml if the model I am about to deploy expects different channel than previous models?

Similar Messages

  • Question about model driven dev and RDS configuring

    I am testing the model driven development that is brought up by Flash Builder4 and LCDS3 recently, and it went pretty well. However i've noticed that the configuration of the RDS for development mode is not recommanded for a production environment.
    My first quetion is can I simply disable the RDS on the server when I want to deploy my app to a production environment and still be able to use all of the features such as data management service and remote service etc.? I've tried to do so but it gave me a 404 page. I felt it was a little bit confusing when you know you DO have a html template located in the right location. If RDS can be disabled without interfering the functionality of the app, where can I find a doc to follow?
    My second question is if the RDS is a must, then how to configure the security setting? I knew some of the requirements by visiting this url:http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/WS6822bf3ec1c7b2e9-30fb 9b22126b9ca84aa-8000.html,
    however, when I followed the steps and test it, I got a 400 error in FB4 RDS configuration page.
    Since I am testing this under Tomcat 5.5, I am not sure where should I put the flex-tomcat-common.jar and flex-tomcat-server.jar file in, cause the dir structure of Tomcat 5.5 is a little bit different than that of Tomcat 6.0. Then I put these files under both of the tomcat 5.5\common\lib folder and the tomcat 5.5\server\lib folder. I've doubled checked the the catalina.properties file which is located under tomcat5.5\conf folder and I see the following environment param has been there : ${catalina.home}/common/lib/*.jar.
    The other configuration I made that differs from the doc was: I put <valve classname="flex.messaging.security.TomcatValve"></valve> into the context.xml, which is under the folder Tomcat 5.5/conf. Since I put the Resource definition in the same file, I guess this should not be the problem.
    Does anyone has any successful experience on setting this up?
    Any hint will be appreciated.

    Thanks for the quick reply.
    I solved my first problem, it was because I accidentally commented out part of the RDS configuration and left the servlet-mapping part un-commented. After I generate all the client and server codes and re-deploy them to the environment, I finally got my running demo with RDS disabled.
    For the second problem, I am still stucking in. I've tried to switch to the Tomcat 6.0 and follow both of the LCDS installation doc and the LCDS3.1_using doc. None could work me out. I constantly get the error message said that "The RDS server was successfully contacted, but your security credentials were invalid". So after struggling a whole day, I found the following statement, which is appeared in the ColdFusion configuraton doc:"Note: If you are using ColdFusion MX 7 or earlier, the message "The RDS server was successfully contacted, but your security credentials were invalid," appears. The message indicates that the password was not validated, even if it is correct. Click OK to close the message. ". That's interesting cause it seems it was exact the situation I was encountered. However, in my case, ignoring the error message does not give me a successful RDS connection.
    For your information, I am pasting the configurations I had on my machine and maybe some ppl could give me a correction.
    service-config.xml:
    <security>
      <login-command class="flex.messaging.security.TomcatLoginCommand" server="Tomcat"/>       
            <!-- Uncomment the correct app server
            <login-command class="flex.messaging.security.JRunLoginCommand" server="JRun"/>
            <login-command class="flex.messaging.security.WeblogicLoginCommand" server="Weblogic"/>
            <login-command class="flex.messaging.security.WebSphereLoginCommand" server="WebSphere"/>
            -->
            <security-constraint id="basic-read-access">
                <auth-method>Custom</auth-method>
                <roles>
                    <role>guests</role>
                    <role>accountants</role>
                    <role>employees</role>
                    <role>managers</role>
                    <role>rds</role>
                </roles>
            </security-constraint>
        </security>
    tomcat-user.xml:
    <tomcat-users>
      <role rolename="rds"/>
      <user username="rdsuser" password="rdspassword" roles="rds"/>
    <!--
      <role rolename="tomcat"/>
      <role rolename="role1"/>
      <user username="tomcat" password="tomcat" roles="tomcat"/>
      <user username="both" password="tomcat" roles="tomcat,role1"/>
      <user username="role1" password="tomcat" roles="role1"/>
    -->
    </tomcat-users>
    web.xml:
    <servlet>
            <servlet-name>RDSDispatchServlet</servlet-name>
        <display-name>RDSDispatchServlet</display-name>
            <servlet-class>flex.rds.server.servlet.FrontEndServlet</servlet-class>
            <init-param>
          <param-name>useAppserverSecurity</param-name>
          <param-value>true</param-value>
        </init-param>
            <load-on-startup>10</load-on-startup>
        </servlet>
        <servlet-mapping id="RDS_DISPATCH_MAPPING">
            <servlet-name>RDSDispatchServlet</servlet-name>
            <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
        </servlet-mapping>
    lcds.xml:
    <Valve className="flex.messaging.security.TomcatValve"/>
    <Transaction factory="org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60"/>
    <Resource name="jdbc/codedata" auth="Container"
       type="javax.sql.DataSource"
       username="root"
       password="******"
       driverClassName="com.mysql.jdbc.Driver"
       url="jdbc:mysql://localhost:3306/codedata?autoReconnect=true"/>
       <Resource name="jdbc/atlantis" auth="Container"
       type="javax.sql.DataSource"
       username="root"
       password="******"
       driverClassName="com.mysql.jdbc.Driver"
       url="jdbc:mysql://localhost:3306/atlantis?autoReconnect=true"/> 
    Note that both of the flex-tomcat-common.jar and flex-tomcat-server.jar were already under Tomcat 6.0/lib folder.

  • Need documentation about "Model Driven Development within SAP Netweaver"

    Hi All,
    in my dissertation there is a topic called "Model Driven Development within SAP Netweaver" and I am looking for documentation (literature) pointing on this.
    I'd prefer internet sources since I don't have time to order a book anymore.
    Thanks, Johannes

    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=modelDrivenDevelopment&cat=sdn_all
    Regards

  • A Question About Message Driven Bean Exception Handling

    "Your onMessage method should handle all exceptions. It must not throw checked exceptions, and throwing a RuntimeException is considered a programming error."
    The above sentence is from the JMS documentation.
    I will use a message driven bean for guarenteeing to send an email with some critical info in case of an unexpected system failure. Say I was not able to save into db some critical info, therefore I want to send that info to myself with a mail to be able to handle that situation manually. Now in case of failure I will send a message to a queue which contains the critical info, and a message driven bean will listen for the message and send email to me. But what if the message driven bean fails ? If I am to handle any exceptions on my onMessage method, how will the messaging system be able to redeliver that message ? It seems to me the message will not remain in the queue anymore(I have consumed it) ?
    Any help appreciated, thanks in advance.

    Fatih.Karakoc wrote:
    "Your onMessage method should handle all exceptions. It must not throw checked exceptions, and throwing a RuntimeException is considered a programming error."
    The above sentence is from the JMS documentation.
    I will use a message driven bean for guarenteeing to send an email with some critical info in case of an unexpected system failure. Say I was not able to save into db some critical info, therefore I want to send that info to myself with a mail to be able to handle that situation manually. Now in case of failure I will send a message to a queue which contains the critical info, and a message driven bean will listen for the message and send email to me. But what if the message driven bean fails ? If I am to handle any exceptions on my onMessage method, how will the messaging system be able to redeliver that message ? It seems to me the message will not remain in the queue anymore(I have consumed it) ?
    You can configure your queue to guarantee delivery. If you use JTA you can also make it transational, so the message is put back on the queue in the event of failure. Your configuration should also include max retries and a failure queue to make sure you don't get stuck in an infinite loop where a message can never be processed.
    Which app server are you using? WebLogic makes it pretty easy to set these config parameters.
    %

  • Question about message driven bean

    hello
    i can find tons of tutoriala about developing session bean and entity bean by using jdeveloper,but can't find even one article that tell me how to develop message driven bean and jms by using jdeveloper,who can help me,where can i find such tutorial?
    thank you!

    I setup breakpoints setting thru the MDB examples in j2eesdk 1.4.
    I realize that the message to the being are being process sequentially.
    Is there a way to process message in MDB concurrently?
    Thank you.

  • A question about CRL retrieval over HTTP

    Hello
    All<o:p></o:p>
    Can
    someone please help me with the following question<o:p></o:p>
    At the moment I have a couple of Windows 2003 R2 Servers with Microsoft
    Certificate Services installed (e.g. domain joined enterprise CA infrastructure). <o:p></o:p>
    The CDP extension of issued certs contains both and LDAP path and HTTP path to retrieve the CRL
    the HTTP path being the standard <o:p></o:p>
    URL=http://<CAServer FQDN>/CertEnroll/ENTRootCA.crl<o:p></o:p>
    and LDAP being the usual location in AD<o:p></o:p>
    Now I need to turn off the 2003 R2 CA in the near future and want to be sure the
    clients requesting a CRL can still obtain the CRL.<o:p></o:p>
    The CARoot Cert is already distributed to all the workstations (as is the SubCA cert) to the usual containers.<o:p></o:p>
    The LDAP Path comes first in the list of CRL locations in the CDP extension followed by the URL location.<o:p></o:p>
    I know (believe) in general a UA (user agent i.e. WEB Browser) with check the list of CRL locations in turn and as long as it can reach one of them will be OK.<o:p></o:p>
    I am OK on the Windows side of things but we also have a UNIX/Linux environment (like most companies) that also utilize certificates issued by the MS CA’s therefore their respective UG will
    (or should that be might) check the CRL via
    the CDP.<o:p></o:p>
    If I turn off the CA then the HTTP path in the CDP will no longer be available (LDAP will still be available).<o:p></o:p>
    I just want to check if there are any UG out on the network using HTTP to retrieve the CRL, so I was thinking about checking one or more logs on the CA for HTTP traffic regarding CRL retrieve.<o:p></o:p>
    Questions<o:p></o:p>
    Is CRL retrieval from the CA (via the default HTTP path) logged in any of the CA
    Logs?
    If so which logs?
    If not logged by default can I turn up logging (i.e. I see there is a Debug option) and if so will this then log HTTP CRL retrieval requests (e.g. clients IP address making the http request)?<o:p></o:p>
    I just want to check this in case some UNIX/Linux UG are not trying LDAP first or cannot retrieve via LDAP and therefore have to reply on Http before I turn on the CA <o:p></o:p>
    Thanks
    all in advance<o:p></o:p>
    AAnotherUser__<o:p></o:p>
    AAnotherUser__

    (same text, formatted better)
    Hello All
    Can  someone please help me with the following question
    At the moment I have a couple of Windows 2003 R2 Servers with Microsoft
    Certificate Services installed (e.g. domain joined enterprise CA infrastructure).
    The CDP extension of issued certs contains both and LDAP path and HTTP path to retrieve the CRL
    the HTTP path being the standard
    URL=http://<CAServer FQDN>/CertEnroll/ENTRootCA.crl
    and LDAP being the usual location in AD
    Now I need to turn off the 2003 R2 CA in the near future and want to be sure the
    clients requesting a CRL can still obtain the CRL.
    The CARoot Cert is already distributed to all the workstations (as is the SubCA cert) to the usual containers
    The LDAP Path comes first in the list of CRL locations in the CDP extension followed by the URL location.
    I know (believe) in general a UA (user agent i.e. WEB Browser) with check the list of CRL locations in turn and as long as it can reach one of them will be OK
    I am OK on the Windows side of things but we also have a UNIX/Linux environment (like most companies) that also utilize certificates issued by the MS CA’s therefore their respective UG will
    (or should that be might) check the CRL via
    the CDP
    If I turn off the CA then the HTTP path in the CDP will no longer be available (LDAP will still be available).
    I just want to check if there are any UG out on the network using HTTP to retrieve the CRL, so I was thinking about checking one or more logs on the CA for HTTP traffic regarding CRL retrieve.
    Questions
    Is CRL retrieval from the CA (via the default HTTP path) logged in any of the CA
    Logs?
    If so which logs?
    If not logged by default can I turn up logging (i.e. I see there is a Debug option) and if so will this then log HTTP CRL retrieval requests (e.g. clients IP address making the http request)?
    I just want to check this in case some UNIX/Linux UG are not trying LDAP first or cannot retrieve via LDAP and therefore have to reply on Http before I turn on the CA
    Thanks all in advance
    AAnotherUser__
    AAnotherUser__

  • Question about calls rolling over

    Sorry for the noob question but here goes.  I have Call Manager v7.  My question is if I have 3 phones with one ext 0009 and I want the calls to go to the first phone and if that person isn't there go to the next phone and then if that person isn't there go to the last phone. If the last person isn't there, have it go to vm.  Hopefully that made sense.  These are all 7941 phones.

    Hi yulook,
    You would need to take the Shared Support Line/DN 0009 and make
    it a new Hunt Pilot DN. Then on the Level 1,2 & 3 phones you would put
    a new DN on Line button 1. Shared lines like 0009 will always ring all
    phones simultaneously in your current config.
    In the Line Group that is associated with the new Shared Support Hunt
    Pilot you can then set a Top Down algorithm that routes to Level 1, Level 2
    and Level 3 DN Line Group members in the chosen order
    Line Groups
    Line groups contain one or more directory numbers. A distribution algorithm, such as Top Down, Circular, Longest Idle Time, or Broadcast, associates with a line group. Line groups also have an associated Ring No Answer reversion timeout value.
    The following descriptions apply to the members of a line group:
    An idle member designates one that is not serving any call.
    An available member designates one that is serving an active call but can accept a new call(s).
    A busy member cannot accept any calls.
    For information on configuring line groups,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/4_2_3/ccmcfg/b03lngrp.html
    Hunt Lists
    Hunt lists comprise ordered groupings of line groups. A line group may belong to more than one hunt list. Hunt pilots associate with hunt lists. A hunt list may associate with more than one hunt pilot.
    For information on configuring hunt lists,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/4_2_3/ccmcfg/b03htlst.html
    Hunt Pilots ..this is what 0009 would become.
    Hunt pilots are sets of digits. They comprise lists of route patterns that are used for hunting. A hunt pilot can specify a partition, numbering plan, route filter, and hunt forward settings. A hunt pilot must specify a hunt list.
    For information on configuring hunt pilots,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/4_2_3/ccmcfg/b03htpil.html
    Cheers!
    Rob

  • Satellite C650/01M - Question about model

    I just purchased a C650/01M for my parents. When I tried to find the model number it doesn't seem to exist. There is a similiar model on Canada and europe site but not the exact model. It was a D*ck Smith 'exclusive'. Perhaps that is the problem?
    The model (SKU) is PSC12A-01M00T
    I would really appreciate any ideas where to find. And what do I do for warranty if the model doesn't exist??

    Hey,
    Properly the notebook is too new and at the moment there are no updates available. In your case I would check the page few days/weeks later, have a look on it from time to time.
    But if you need any updates you can also download it from other PSC12A series. Important is just this part of model number, they will work on every PSC12A model I think. :)

  • Question about layering text over an image

    Hi -- I am trying to place a layer of text over a ghosted image that I've imported into ID from Photoshop.  By "ghosted" I mean that the image has a layer of white fill over it that has been set at 50% opacity.  ID won't let text be layered on top of the imported image, no matter how many different ways I've tried to accomplish this.  It will allow another image to be layered on top, but not text.  If I place a text frame over the ghosted image and type even one letter, the red text overset warning icon appears.
    I tried applying the text in Photoshop and that works just fine until the file gets imported into ID, at which point the text looks terrible, having become somehow degraded in transit.  I am fairly new to ID and PS, and would appreciate any helpful input. 
    Thanks!
    ~Artemis

    Sounds like text wrap is applied to either the image or the frame above it, or both. Eihter turn it off if you don't need it for other reasons, or for the frame you want to use on top of it open the Text Frame Options and check the Ignore Text Wrap box in the lower left corner.

  • Question about Sharing folders over network

    Alright, i have a mac and a PC, on the same network. I have a folder on my PC thats shared, and i can access it via the network tab in finder. The network icon thingy appears on the desktop, and it acts like a folder on my mac. Is there anyway i can move this "folder" to another location? Also, when i restart my mac, i have to conncet to the same folder again via the network tab. Is there anyway to have the folder stay there, even when restart my mac?

    Create an alias or a symbolic link would be the normal manner so you can access a folder/directory from another location.
    Can't help on the log-in automatically but perhaps SharePoints or something will let you. Do you use Samba to connect?

  • Question about router WRT54 GL

    Good afternoon, I have following problem/question about router: WRT54GL.
    I configured the router to operate in my network without any problems except for the following:
    When I made tests of speed on computer which is connected directly to the cable from my ISP (ethernet, speed 64 mbit /s during download). When I connected the cable from ISP to the router and router is connected to the PC also using ethernet(from router port 1 to the pc) the speed behind a router decreased to 20 mbit. What I am doing wrong? or is it just a limitation in router's performance?
    Thanx for any help
    Johny Krekan,
    [email protected]

    Open the setup page of the router.
    Set the MTU to Manual and change the size to 1365.
    Save the settings and power cycle the router. Check the speed.
    Make sure that firmware on your router is latest.

  • Model Driven Configuration Management

    Hi,
    i'm a PhD student at the [VLBA Lab in Magdeburg|http://www.vlba-lab.de/] and i would like to share my thoughts about my research topic '[Model Driven Configuration Management|http://www.vlba-lab.de/en/Home/Research/Topics/ModelDrivenConfigurationManagement/index.html]' with you. Model-Driven Configuration Management (MDCM), means using MDE techniques to implement the requirements concerning the configuration of IT system landscape and IT infrastructures.
    Problem:
    While the capabilities of Model-Driven Engineering (MDE) have been realized in many parts of software development, MDE support for IT system landscapes and IT infrastructures is barely adequate. Although common frameworks for Enterprise Architecture Management (EAM) propose predefined artifacts and methods for this purpose, the transition between the design stage and the operating stage of software takes place manually. Time-consuming discovery procedures capture the current software configuration after the transition, store it in configuration databases and allow further analysis on the basis of reconstructed models.
    Objective:
    The identified gap between EAM and IT operations shall be closed by model-driven configuration management so that
       1. the deployment of software in an IT system landscape and
       2. the configuration of the underlying IT infrastructure can be accomplished automatically and traceably during both the initial transition and later migration.
    During my research i found similiar approaches for using Model-Driven Engineering techniques either for EAM or for IT operations, but not a combination of both and so my question is, if you have any expierences in using MDE for configuring your IT system landscape on the basis of EAM artifacts?
    Thanks,
    Sebastian

    Hi Sebastian;
    Your quest seems to be very interesting.
    Well I am not sure if you have SAP exprience. Well I am Technology consutant and may be I will try to make sence of your reserch from SAP point of view.
    What I understand from (Model Driven arch) MDE in SAP is a traction (program) called "SPRO" . It allows you to configure the already developed allications (in ABAP). This configuration are stored in Database and then allow further analysis. As you explained.
    Also a technology that might intrest you would be BC sets. It performs predefine recomended configurations for your applications and asks for your inputs if required.
    Regarding your specific area of requirement i.e. automation for IT infra configuration ; i generally feel that developers always get all the tools to get their job easily done...  But administrator never get their due share of attention for ease of use of their tools.

  • Some questions about configuration in MAX.

    Hello,everyone!
    I have some questions about configuration in MAX(I am a jackaroo for motion control development),I hope I can get your help.
    I use PCI-7344+UMI-7764+Servo amplifier+Servo motor,my MAX version is 4.2 and I use NI-Motion7.5
    My question as following:
    1,In Axis Configuration,for motor type,why I must select stepper but not servo?my motor is servo motor!If I select Servo,my motor can't run,I don't know why.
     If I select stepper,though motor can work but I can't test encoder in MAX.
    2,In Stepper settings,for stepper loop mode,why I must select open-loop but not close-loop?If I select close-loop,the servo motor doesn't work too.
    3,If I want my two servo motors run at different velocity,How shoud I do?It seems I just can set the same velocity in MAX for my two servo motors.
     My English is poor,Pls pardon me!I come from China.
    Thank you for your help!
    EnquanLi
    Striving is without limit!

    Hi,Jochen,
    Thank you for your kindly help!
    The manufacturer of the drive and motor that I am using now is Japan SANYO DENKI,drive type is RS1A01AA,motor type is R2AA06020FXP00.
    And I use position control mode,thehe encoder's counts per revolution is 131072.I set the electronic gear ratio to 1:1 for drive.
    Now,I can use Close-Loop to control the motor but still has some problems.When I configure it to run in closed loop mode, the motors behave strangely and never move to the target position.When I configure it to run in closed loop mode, the motors behave strangely and never move to the target position.The detail situation is as following
    1,Motor can't run.
    2, Or motor moves to a position, then moves in the same direction agian and eventually stops.
    Except for the  two points mentioned above,"Following Error" is  occured frequently,I don't know why.
    I am still not clear why I must set the motor type be stepper in MAX .
    And I have another question:what the relationship between the steps and the counts?They have the proportion relations?I notice that there are a section said like this in help document: For proper closed-loop and p-command operation, steps per revolution/counts per revolution must be in the range of 1/32,767 < steps/counts < 32,767. An incorrect counts to steps ratio can result in failure to reach the target position and erroneous closed-loop stepper operation.
    I am verry sorry I have too many questions!
    I am very appreciate for your kingly help!Thanks again!
    EnquanLi
    China
    Striving is without limit!

  • Question about SSLM configure

    I have a question about our SSLM configure, please see the following example:
    service aa-SSL
    virtual ipaddr 172.25.17.15 protocol tcp port 443 secondary
    server ipaddr 172.24.92.6 protocol tcp port 80
    certificate rsa general-purpose trustpoint www.app.aa.com
    no nat server
    inservice
    crypto pki trustpoint www.app.aa.com
    revocation-check none
    rsakeypair www.app.aa.com
    crypto ca import www.app.aa.com pkcs12 tftp:xxx
    ======================================
    Once we finish the configuration, we could find the corresponding cer in SSLM, like:
    crypto pki certificate chain www.app.aa.com
    My first question is how to remove this cert if we want to decommission aa-ssl environment? Is it only with “no crypto pki certificate chain www.app.aa.com”
    If we have another environment like www.pre.app.aa.com shared the same VIP with www.app.aa.com. My second question is could I create only one ssl entry with wildcard like the following configuration:
    service aa-SSL
    virtual ipaddr 172.25.17.15 protocol tcp port 443 secondary
    server ipaddr 172.24.92.6 protocol tcp port 80
    certificate rsa general-purpose trustpoint *.app.aa.com
    no nat server
    inservice
    Please advice! I would appreciate it!

    You can remove the certificate but you need to be in certificate chain configuration mode to delete certificates. An example configuration is provided here
    http://www.cisco.com/en/US/docs/ios/security/command/reference/sec_c5.html#wp1043434

  • A question about Kintex-7 configuration

    Hi 
    I want to design a custom board with Kintex-7 FPGA(XC7K160T). I have a question about it's config. Can i use XCF128XFTG64 for this FPGA? If not, can you tell me what kind of Flash I can use?

    Platform flash not supported in 7-series FPGA. Refer http://www.xilinx.com/support/answers/46093.html for details
    As per "Table 1-1: Bitstream Length (Page-14) in configuration user guide (http://www.xilinx.com/support/documentation/user_guides/ug470_7Series_Config.pdf) the required bit stream length for XC7K160T device is 53,540,576 bits. By considering overheads the required size of flash is 64 Megabits or larger. 
    What version of tools are you using? What type of configuration mode are you planning? Refer “Configuration overview” topic (Page -11 onwards ) in http://www.xilinx.com/support/documentation/user_guides/ug470_7Series_Config.pdf to know different types of supported configuration modes.
     You need to use CPLD/Microprocessor for slave Selectmap kind of configuration.
    Impact tools(In case of using ISE tools)  help topics list the supported BPI/SPI flash details in case of planning SPI/BPI kind of configuration modes.

Maybe you are looking for

  • Finder windows close randomly on network drive

    Hi, searched on google for long time and found nothing. I'm working in a small office (13 iMacs and Mac Pros) and the Finder have a strange behavior. In my office, 12 iMacs and Mac Pro are using OS 10.6.8 to 10.8.3, and there is a server that contain

  • Can't copy from iPod to iTunes?

    I can't copy music from my iPod Mini to iTunes. Is there a way to do this? I'd like to get music onto my PC. Thanks, Brett

  • Reg: sun one directory server 5.2 rreplication

    Hi, I have two sun one directory servers(5.2 sp4) on two different solaris machines. There is replication setup between them. Now I see some nodes are not getting updated data from the master node to the consumer node. when i looked into the log file

  • Can not syncronisate with my outlook contacts

         Can not syncronisate my outlook contacts to my new iPhone4 and i have problems with getting connection to itunes!

  • Job Codes Issue

    Dear All, I have around 100 job codes and now the requirement is these job codes has to be assigned to a specific Job family. In this case for example 50 job codes should be assigned to Job family A and 50 job codes should be assigned to family B. Is