How to run a Robotic Studio DSS service and VPL on a cloud link

Hi
  I need a few DSS services to run in a number of cloud links. VPL and other DSS nodes need to run on a different link. How to configure supported robotics platforms to communicate the MRDS please? please advise on the MRDS configurations as well.
Thank you

Hello,
I'd ask in the
Microsoft Robotics - Community forum.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book: Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • How to create a new bundle of service and import it as normal user.

    Hi,
    I have created a service.
    Now am able to import and enable the service.
    I have placed my xml file under
    /var/svc/manifest/site
    The service name is
    <service
    name='site/newservice'
    I have imported the service as root user.
    <exec_method type='method' name='start' exec='/tmp/new/method/newservice start' timeout_seconds='30' />
    This service is not able to execute the operation which I have mentioned above. The following error is thrown in log file.
    Error: User 'root' is not the owner of '/tmp/new/method'
    So I tried to import the service as normal user, the following error is thrown.
    svccfg import /var/svc/manifest/site/newservice.xml
    svccfg: Could not create temporary service "TEMP/site/newservice" (permission de nied).
    svccfg: Import of /var/svc/manifest/site/newservice.xml failed. Progress:
    svccfg: Service "site/newservice": not reached.
    svccfg: Instance "newservice": not reached.
    Please help me to solve this issue.
    I thought instead of placing the service in default location,Why cant we create a new service of bundle and place the service there.
    Please help to solve this issue by suggesting some solution or how to create a new bundle of service and import it as normal user.
    Regards,
    Kalai

    kalaiyarasan_P wrote:
    Hi,
    I have created a service.
    Now am able to import and enable the service.
    I have placed my xml file under
    /var/svc/manifest/site
    The service name is
    <service
    name='site/newservice'
    I have imported the service as root user.Okay.
    <exec_method type='method' name='start' exec='/tmp/new/method/newservice start' timeout_seconds='30' />
    This service is not able to execute the operation which I have mentioned above. The following error is thrown in log file.
    Error: User 'root' is not the owner of '/tmp/new/method'By default, services run as the 'root' user. It's complaining that the method isn't also root.
    So I tried to import the service as normal user, the following error is thrown.You won't be able to do that easily. The user that does the import is almost always root. But wihin the manifest you could have it run as a different user.
    I thought instead of placing the service in default location,Why cant we create a new service of bundle and place the service there.
    Please help to solve this issue by suggesting some solution or how to create a new bundle of service and import it as normal user.You don't need to import this as a normal user, do you? You just want it to run as one, right?
    Darren

  • How to run a remote windows dll files and the drivers of the system using j

    Dear Friends,
    I need some valuable info regd how to run a remote windows dll files and the drivers of the system using java
    reply regd thanking you

    Please don't make duplicate posts like this.

  • How to differenciate purchase requsitions coming from services and others

    Hi,
       I would like to know how can i differenciate pr coming from services and pr coming from production.when i list the pr it is combining both.but i want the segregation of pr raised by services and others.any input...

    Hi,
    Are you able to differentiate the PR's by manually Checking them.
    If so how.Please mention the field
    Thanks & Regards
    Kishore

  • How to run Indesign CS3 as a Service with Port number

    Hello all,
    I would like to run the InDesign CS3 Server as a service on Windows. It seems that after installing the Server it automatically installs as a service. But where can I assign the port number. If under Services properties of InDesign Server under Parameters I mention -port 1050 on Ok button it removes the parameter information.
    I am doing right or is there some other way to start the Server as Service with Port number.
    Thank you all in advance.
    Regards
    Farzana.

    Hi Sascha,
    have you tried to remove the service and install it manually?
    \"Path to IDS"\InDesignServerService /install /u
    \"Path to IDS"\InDesignServerService /install
    I guess you've tried to start the instance in the console already (successfully?).
    Regards
    Ingo
    Am 05.07.2011 um 12:18 schrieb 1000grad_Sascha:
    Hi Ingo,
    I've installed the Snap-In and configured one instance. Maybe it's worth mentioning that there are some instances running at the same time, which have been started using the console. Hope that's not interfering. However, the MMC-configured instance uses a different port.
    I tried to start the service with a huge range of users having all imaginable privileges. The common way of using either "LocalService" or the Local System Account (which has admin rights for me) doesn't do the job.
    cheers,
    Sascha
    >

  • How to run O9iAS as a Win2K Service?

    We installed 09iAS using "0C4J_extended.zip". We would like to run 09iAS as a proper service within W2K instead of starting it manually within a MS-DOS box.

    I haven't tried this with oc4j, but I've had good luck in the past with SRVANY.EXE out of the Windows NT Resource Kit for perl scripts, etc...
    Just a thought.
    Jeff

  • How to run a JAX-RPC web service

    I wrote the essential interface and classes to build a JAX-RPC web service, and I installed the J2SE 1.4.2 and Java Web Services Developer Pack 1.2 in Windows XP.
    I have read the Java Web Services Tutorial, but is so confusing for me.
    Anyone can provide the steps about the environment config, compile, package, and run the web service in Tomcat? thx

    I wrote these interface and class to create a simple web service:
    package test;
    import java.rmi.*;
    public interface HelloIF extends Remote {
    String sayHello(String s) throws RemoteException;
    package test;
    public class HelloImpl implements HelloIF {
    public String sayHello(String s) {
    return message + " " + s;
    I compiled these 2 and the *.class files exist in D:\backup\JAVA\fyp\test
    and then I wrote the config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <service name="MyHelloService" targetNamespace="urn:Foo" typeNamespace="urn:Foo" packageName="test">
    <interface name="test.HelloIF" />
    </service>
    </configuration>
    I placed the config.xml in D:\backup\JAVA\fyp, then I type the following command:
    D:\backup\JAVA\fyp>wscompile -define config.xml -model model.gz
    the system response is:
    error: RmiModeler error: java.lang.ClassNotFoundException: test$HelloIF
    what's wrong?

  • How to run Indesign CS6 as a service

    Is there any posiblity to run indesign CS6 as a service, in a separate server or PC?

    You could use InDesign Server, that can be run as a service. Have a look at its documentation for more details.
    -Manan

  • How do I use hotmail via Blackberry services and not via phone network so not using up my data?

    Hi,
    I have a new Blackberry 9360 and am having trouble with it. They said in the shop that I can access my yahoo mail without using up my 250mb of internet data, so can access it using the Blackberry services rather than the internet. I can't work out how to do this and can only seem to use the email through the internet where the messages come into my 'Messages' on the 'Home' screen, therefore I'm using up my data every time I open an email message when it comes in.
    Can anyone please help me as I'm wishing I could go back to Nokia at the mo!
    Many thanks.

    Hi, thanks for your reply.
    They gave me the impresssion in the shop that I could access my existing yahoo hotmail, send and receive messages on it for free via the BlackBerry services and not use up my data allowance and they didn't mean the Blackberry email which is a different thing. Have they misled me with this?
    Many thanks for any advice.

  • How to upload Images to azure media services and show the image on on click on Link?

    Hi,
    I want to upload the image to the Azure media service asset and show the Link on the page. When use clicks on the Link I want to show it user. How can I implement this with C#? Now I am uploading the image to asset as in the normal way and getting the URL
    for that. But I am not able to show it user when he click on the image link.
    Thanks,
    Pavankuamr H K

    HI
    Azure media services has a RESTful service and a C# SDK that you can use to interact with the Azure Media Services.
    Here is the documentation and sample code for calling the Media services and using the SDK:
    https://msdn.microsoft.com/en-us/library/dn735908.aspx?f=255&MSPPError=-2147217396
    Aram Koukia | Blog: koukia.ca | Twitter:
    @aramkoukia

  • How to run mass activity for DS 0FC_INVDOC_00 and activate 2710 event

    Hi,
    I am trying to extract data from DS 0FC_INVDOC_00 it gets me 0 records.I read in the form that to get the records i have to run the Mass Activity type 2620 and for daily processing of invoicing, you have to activate 2710 event.Can anyone please let me know how to do this?
    Thanks,

    Thanks Denis, I did initialization on Bi side and now trying to extract data (FULL) in rsa3 thats when it gets me 0 records.Is there any other step i need to do to extract records?? According to the postiong in the SDN (Refre to the following link) there are activities which need to be done for getting the data.This where i am stuck.
    Re: 0FC_INVDOC_00 FICA Extraction of Invoicing Document Data
    Thanks,

  • How to run Mass Activity for DS 0FC_INVDOC_00 and activate 2710 event in R3

    Hi,
    I am trying to extract data from DS 0FC_INVDOC_00 it gets me 0 records.I read in the form that to get the records i have to run the Mass Activity type 2620 and for daily processing of invoicing, you have to activate 2710 event.Can anyone please let me know how to do this?
    Can anyone please help me on this??
    Thanks,

    Thanks Denis, I did initialization on Bi side and now trying to extract data (FULL) in rsa3 thats when it gets me 0 records.Is there any other step i need to do to extract records?? According to the postiong in the SDN (Refre to the following link) there are activities which need to be done for getting the data.This where i am stuck.
    Re: 0FC_INVDOC_00 FICA Extraction of Invoicing Document Data
    Thanks,

  • How to authenticate with Sharepoint using rest service and jquery

    Hi ,
    I have a requirement where i need to authenticate with  sharepoint from ios and android app using rest services and jquery.
    Can anyone help me in this .
    Thanks in Advance.
    Regards,
    Srinath 

    Hi,
    According to your post, my understanding is that you want to access SharePoint data from IOS and Android app.
    The following materials for your reference:
    How can I authenticate SharePoint REST calls from Android App?
    http://stackoverflow.com/questions/24673373/how-can-i-authenticate-sharepoint-rest-calls-from-android-app
    Calling RESTful services from your Android app
    http://www.techrepublic.com/blog/software-engineer/calling-restful-services-from-your-android-app/
    SharePoint 2013 REST API in iOS
    http://omicron-llama.co.uk/2012/12/13/sharepoint-2013-rest-api-in-ios/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to maintain messageId when using proxy services and mq??

    Hi
    I am a novice to oracle service bus and trying few transformations by configuring proxy services.
    Let me explain the problem I'm facing:
    I have created a business service and a proxy service and configured them in a synchronous way.
    I'm using MQ as a transport protocol....and message I'm passing and transforming is in xml format.
    these proxy and business services are functioning properly.....but at the another end i have created another pair of busines and proxy service which will be taking request message from earlier business service and putting it into another queue which is reference as a response queue by earlier proxy service.
    my second pair is also working properly. now the problem is that it is not maintaining message Id during all the routing.
    and that's why im not able to read the response message from the response queue because of message ID mismatch.
    Please help!!
    tell me if i have to do change any particular configuration settings to maintain the message id for my request message throughout the flow.
    Thanks
    Edited by: ChetakCs on Jun 14, 2010 7:19 AM

    Post this in OSB forum:
    SOA Suite

  • How do I Add the Real Time Service option to our Informatica Cloud partner account

    Logging in a support request through MySupport works best.

    We need to add the Real Time Service option to our Informatica Cloud partner account.  What is the best way to do this? Should I contact the Informatica Cloud Global Customer Support team at: http://now.informatica.com/Cloud-ContactUs.html  Or should I log a support request through: https://mysupport.informatica.com/   .

Maybe you are looking for

  • Music app - album artwork replaced by image of artist

    Music App.....How to stop /prevent the image /photo of the artist being uploaded and presented in the artist view? BTB: What a disaster the s/w 7.0 Music App is from the old App on my s/w 5.0 version!!!

  • Using new version iPhoto

    I just bought imac and used migration asst. to transfer my old files. When I was setting up the new computer it asked if I wanted to update the iPhoto, I said yes and have not been able to use iPhoto. I have all of my old pictures on the computer and

  • Relationship of codebase and code (relative path)..

    in tomcat installed directory, under ROOT directory, i have jsp folder and web-inf folder. all my jsp in /jsp/*.jsp and all my classes in /web-inf/classes/myservlets/*.class. I am trying to include applets for java plug-in and code like this <jsp:plu

  • Unable to install ACR presets in to Camera Raw

    I have followed this path to install on mac/ mavericks. There is not a settings folder to paste in to. Library\ApplicationSupport\Adobe\CameraRaw\Settings

  • Significance & logic behind GBB in FI MM integration

    Hi Can some one pls explain me the logic behind GBB in FI MM integration. I was not able to explain clearly when I was asked this question. Pls do reply to me Thanks, Lavanya