Custom Protocols in LabVIEW (Sending GOOSE messages)

I know that IEC 61850 is not supported by NI but is there any way to use ethernet ports (and VIs) to send IEC 61850 GOOSE messages utilizing a PXI box?
Is the only way to implement a OSI-7 protocol or custom protocols is to use a FPGA? There has to be some other way. No?
If I was to use an FPGA, can I map FPGA I/O to ethernet cards in the PXI box? I bought a couple dual ethernet cards for my PXI box. So basically can I map virtual channels to ethernet physical layer? Probably didn't ask that correctly. 

I have not used this protocol but usually you only have to implement the higher levels of the OSI, IE if this protocol is built ontop of TCP/IP or RS232 or 485 then you essentially only have to implement the upper layers (ie application/presentation)  this usually can be done in software depending on the timing.  There also could be 3rd party PXI cards with their own api/interface I have done this with some aero protocols before.
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

Similar Messages

  • Tired of getting "Protocol layer was unable to send a message" - Update to 10.2

    I'm extremly glad to report that RIM has finally resolved  the ongoing "protocol layer" failure to send email from certain types of accounts.
    A while back they post this not working solution:
    KB33736 "Protocol layer was unable to send a message" when replying to an email on the BlackBerry 10 smartphone
    Resolution: Upgrade to BlackBerry 10 OS version 10.1.0.1465 or higher. Contact the wireless provider to confirm availability.  
    10.1.0.1465 or higher FAIL
    But 10.2 WORKS - Woohoo

    there are two articles from the public knowledge base about that error, for very different reasons.
    KB33736 "Protocol layer was unable to send a message" when replying to an email on the BlackBerry 10 smartphone
    KB34009 "MessageStatus: Protocol layer was unable to send a message" is displayed when sending email with an attachment on a BlackBerry 10 smartphone
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Protocol layer was unable to send a message - PLEASE HELP !!!!

    I have the Z10 and I am unale to reply to, or forward any e-mails that I receive on my corporate e-mail address.
    I can create and send new e-mails and I am receiving all my e-mails, but I can not forward or reply which is a basic requirement.
    Every time I try I get a message advising that
    "Protocol layer was unable to send a message"
    Please HELP!!!!!
    Antony.....

    Hi and Welcome to the Community!
    There are several public KB articles that deal with that error, depending on your exact circumstances. I suggest you go here:
    http://btsc.webapps.blackberry.com/btsc/microsites/microsite.do
    Search on your exact error message, then inspect the articles that result from the search to see which apply to your specific situation.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Yahoo Email - "Protocol layer unable to send a message"

    I have just received a new Q10 but when I try to send an email on my Yahoo! account it will not send and I get the error  Protocol layer unable to send a message. Anyone have any ideas on what to do? 
    I have tried turning SSL on an doff and using different socket numbers.

    I think I have fixed this. I used this tool https://consumersupport.webapps.blackberry.com/eavt/app.php?page=form but it actaully said the server and port I used was invlaid but it seems to have worked

  • Protocol layer was unable to send a message

    Hi All,
    I have searched the KB and have seen that the "Protocol layer was unable to send a message"  is logged.
    Just want to ask if there is any progress on this issue.
    I am unable to send or reply to my work emails via the Z10. (we use the outlook premium service)
    It is very annoying as I really can't use the Z10 right now.
    Protocol layer was unable to send a message
    Software version 10.1.0273

    there are two articles from the public knowledge base about that error, for very different reasons.
    KB33736 "Protocol layer was unable to send a message" when replying to an email on the BlackBerry 10 smartphone
    KB34009 "MessageStatus: Protocol layer was unable to send a message" is displayed when sending email with an attachment on a BlackBerry 10 smartphone
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • After troubleshooting and updating and even calling customer service I still cannot receive or send text messages. whats the deal?

    My blackberry curve wont let me receive or send text messages

        This very strange JulianPrice! When did this messaging issue start? Are you able to send /receive message to any contact? Is this issue with SMS only or MMS as well? What messaging application do you use? What is your current ZIP code? Do you have the latest available software for your phone? Please answer these questions and we'll explore options to resolve.
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport

  • How to send SOAP Message with Oracle B2B

    Hi everyone,
    I need your help to send out from Oracle B2B a SOAP message with attachment of any type of file (image, pdf, etc.). Possibly using a SOA composite application or another way, it doesn't matter. I already create an ebMS partnership with a custom document protocol and I already create a working SOA composite application to send only text message to my trading partner. I have tried this solution: http://anuj-dwivedi.blogspot.it/2011/04/ebms-attachment-handling-in-oracle-b2b.html but it doesn't work for my case... It is to be noticed that I don't give any schema to my component in the SOA application explained firstly, and I select opaque as schema.
    Thanks to all, regards
    Nello

    Hi Anuj and thanks for your help,
    I need to send an ebXML message, with SOAP, and I try to send it with a .war application written in jsp connecting to http://10.85.28.24:8001/b2b/transportServlet to send the SOAP message. The errors reported is:
    javax.xml.soap.SOAPException: Unable to receive message. Received a response from url: http://10.85.28.24:8001/b2b/transportServlet with HTTP status 200 and SOAP content-type: null.
    the code I write is the following (to evaluate the two "null" in the super constructor)
    <%!
    public class EBMSSender extends SOAPRunner
    private String cpaId;
    private String service;
    private String action;
    private String mess;
    private ArrayList<String> allegati=null;
    public EBMSSender(String cpaId, String service, String action, String mess, ArrayList<String> file)
    super("http://10.85.28.24:8001/b2b/transportServlet","null", "null");
    this.cpaId = cpaId;
    this.service = service;
    this.action = action;
    this.mess=mess;
    this.allegati=file;
    @Override
    protected void prepareRequest(SOAPMessage soapMessage, SOAPBody soapBody) throws SOAPException
    soapBody.addChildElement(SOAPUtility.createElement("CPAId", getNsPrefix(), getNsURI(),"agr3"));
    soapBody.addChildElement(SOAPUtility.createElement("service", getNsPrefix(), getNsURI(),"OracleService"));
    soapBody.addChildElement(SOAPUtility.createElement("action", getNsPrefix(), getNsURI(),"Oracletohermesb"));
    soapBody.addChildElement(SOAPUtility.createElement("serviceType", getNsPrefix(), getNsURI(),"OracleServiceType"));
    soapBody.addChildElement(SOAPUtility.createElement("convId", getNsPrefix(), getNsURI(), "convId"));
    soapBody.addChildElement(SOAPUtility.createElement("fromPartyId", getNsPrefix(), getNsURI(), "Oracle"));
    soapBody.addChildElement(SOAPUtility.createElement("fromPartyType", getNsPrefix(), getNsURI(), "Name"));
    soapBody.addChildElement(SOAPUtility.createElement("toPartyId", getNsPrefix(), getNsURI(), "Hermes-b"));
    soapBody.addChildElement(SOAPUtility.createElement("toPartyType", getNsPrefix(), getNsURI(), "Name"));
    attach(soapMessage);
    protected void attach(SOAPMessage soapMessage)
    String h=mess;
    DataHandler dh;
    AttachmentPart ap = soapMessage.createAttachmentPart(h,"text/plain");
    soapMessage.addAttachmentPart(ap);
    if(allegati!=null)
    for(int i=0; i<allegati.size();i++)
    dh=new DataHandler(new FileDataSource(new File(allegati.get(i))));
    ap=soapMessage.createAttachmentPart(dh);
    ap.setContentType(new MimetypesFileTypeMap().getContentType(allegati.get(i)));
    ap.setContentLocation(allegati.get(i));
    soapMessage.addAttachmentPart(ap);
    @Override
    protected void processFault(SOAPFault soapFault) throws SOAPException{}
    @Override
    protected Object processResponse(SOAPMessage responseMessage,SOAPBody responseBody) throws SOAPException
    SOAPElement messageId = SOAPUtility.getChild(responseBody, "message_id", getNsURI());
    return null;
    %>
    The code works fine on the other trading partner side to send ebXML message to Oracle B2B. Apart from this solution (however,it would be my favorite), I find your blog and I try to implement your solution. It works: it sends files with only text payload to the other trading partner without any problem, but if I try to send for example an image in byte array written in a file .txt, the ebxml file received has the byte array with wrong characters. it may be that I have not provided the xsd schema? in case if I wanted to send an ebXML message with text and attachments, what xsd schema do I need to provide?
    or is there another way to implement a SOA composite application to send SOAP messages with attachments?
    Thank for your help!, regards
    Nello

  • Failed to send Alert Message to Browser

    We are gettign this problem intermittently when user click End or Hangup button. We are not triggering any alert on these events. Once the user get this problem, he /she has to reboot the system in order to come out of this error. I was looking SND forum and another place many people have reported the same problem and it it surprising that no one have clear idea why this problem happening. I would appreciate if someone have this problem and fixed it. I could not find any note related to this.
    So I have already checked the SDN forun
    Re: CRM 2007-IC Web Interface Message - Failed to send Alert Message to Browser

    Unfortunately, we were unable to replicate and SAP was unable to investigate because of this.  They did provide a bit of information in their response of Aug 6 I have included below.  Hopefully that may help your situation reWgarding this message.
    Our message expired (confirmed automatically) on Sep 20th.  I have not had another report of this from our call centre since we applied the Support Packs (3,4,5) on August 16th.
    2009-08-06 - 01:08:48 MST - Reply by SAP     
    Hello Donna,
    Thanks for understanding the problem. Yes we know some customer getting
    the message but when this error will come is very clear on the below
    scenarios.
    1. the customer uses https protocol and if the ssl is not correctly
    configured then when they send an alert message / broadcast message the
    message will appear.
    2. Always when they a alert message is to be displayed/ or when sending
    a broadcasting message / while clicking on the END button.
    But this will happen always but not randomly.
    So we will hope that the message will not come after you do an
    upgrade.
    Regards,
    Kiruthika 
    2009-08-05 - 12:24:19 MST - Info for SAP by Donna Jackson     
    Unfortunately, we don't know how to reproduce this issue so it will be
    very difficult to move forward until we understand what is causing it.
    I was hoping the message might be familiar to someone at SAP Support
    and SAP might provide some clues on what could be causing it.
    We will be applying Support Packs 3, 4 and 5 in our Production
    Environment in a couple of weeks and maybe that will make a difference
    and this message will not appear again after that.
    Thank you for your time and effort - you can put the message back in
    our court after you read this and I will let it expire on the auto
    close date - on the off chance that the issue pops up again after our
    go-live with Support Packs, I will supply further info if I can prior
    to the auto close date if we have reoccurence of the message.

  • Sending ebms messages between Hermes 2.0 and Oracle B2B

    Hi everyone,
    I'm a italian student and for my master thesis I need to create a comunication between Hermes 2 and Oracle B2B. I just set the trading partnership and the agreement with a custom ebxml document protocol. To create the soa application for the comunication I follow this instruction: http://tomhofte.blogspot.it/2009/11/how-to-configure-ebxml-communication-in.html but when I deploy my application there is this message: "The web service invocation was successful. However, there was no response to the invocation from the server." and there are no errors. Does anyone know another way to develop this application or have some information about this application?
    Any kind of help is welcome, thanks.

    hi,
    I solved the problem! :) the message: : "The web service invocation was successful. However, there was no response to the invocation from the server." still remaiins, however I send a message to hermes B. My mistake is that I follow the second procedure, proposed by the blog I posted in the first message, to create the mediator in jdeveloper. The first procedure instead is correct.
    thanks Anuj Dwivedi, yuor post has been helpful!

  • Can I send a message to multiple users at once?

    My company has an internal Jabber/XMPP server that we use to communicate as a group. Up until recently, I've been using a Jabber client called Psi (http://psi-im.org/) to connect to our Jabber server and do messaging. However, I recently decided to give Messages a try, since it includes support for the Jabber protocol. It is working great, except for one feature that I can't seem to find. With Psi, I was able to right-click on the heading of a buddy group and choose to send a message to all of the members. With Messages in Yosemite, I get an option to "Send instant message to members," but all that does is pull up my messages window with a random contact from the group selected. I also don't want to start a group chat, I just want to send a broadcast message to the group. Maybe this is just a distinction that Messages doesn't make, but with Psi there was a distinct difference between a message (just a single message, in its own window, sent from one person to one or more other people) and a chat (an ongoing conversation with one or more people, all in the same window).
    Right now when I want to send one of these messages, I quit the Messages app, start Psi, send the broadcast message, quit Psi, and start Messages back up again. I'd like to be able to just use Messages.
    Any thoughts?

    Hi,
    The Yahoo add-on bits in Messages are not worth the code they are written on.
    When it was muted to be coming (pre iChat 6)  we thought it would be added the same way and Jabber was in iChat 3 (later amended to allow the Google Name issue to be circumvented by having A Google Entry) including Group Chats, Direct IM, Video Chats and Audio Chat if only to other iChat/Messages users.
    However this is not the case and it only does 1-1 text chats and can only use actual Yahoo IDs
    8:19 pm      Wednesday; April 22, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Send a message to multiple computers(Not users) from win7/xp command/or scirpt

    Hi Team, is there a way to send a message to multiple windows xp/win7 computers from my win7/xp? 3rd party software,commercial or free, command line,batch or script all welcome. I have a few hundreds of computers, ping-them alive,but I don't know their
    location and user name. I was failed  to push SCCM client to them,some could be in work group or admin$ disabled. so I plan to send a message like " please contact IT department for your pc maintenance by this Friday or this PC will be deleted from
    the corp domain", when the user contact IT, we can RDP or manual install SCCM onsite with user cooperation. The msg.exe can only send to user,instead of computer names. I tried shutdown /m \\pc-name -f -s -t 1200000 "testMessage" but I got alert
    of access denied. though it works if put my local PC name. is there any other way to accomplish this? Many thanks!
    Thanks and best regards, -- KF

    Hi,
    Base on my experience, personally I think solve this case the better method is through your help desk collect the new computer information because consider this: “some
    could be in work group or admin$ disabled”, if there have more workgroup PC, it will always hardly to manage them though a purely technical method.
    About the domain computer, you can refer the following thread I replayed solution, notice a message to users to connect IT department.
    Security Warning Message
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/60c1a896-0996-4e88-ace9-8da2284883f7/security-warning-message?forum=winserverhyperv
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Sending PI message in case of Payment Cancellation and Check Number Voided

    Hi ..
    I've a requirement to send a message to PI wth the required invoice header fields whenver any payment document number is cancelled or check number is voided. I know we can cancel the payment or check payment through tcode FCH8 and the module program for this is SAPMFCHK.
    I have no idea where would i put my custom code in the check payment cancellation wherein i can put my invoice fields and the proxy code so that I can send a message whenever any check payment or payment is cancelled.
    Please help me if you have come with the similar requirement. I think i need to create an enhancement and put my codes inside that but not sure how do to this.
    Thanks,
    Shamim

    Hi
    I guess You need to create substitution for this purpose. In your case reversal document get created for your original FI document.
    Go through http://wiki.sdn.sap.com/wiki/display/ERPFI/Creatinguserexitsforsubstitutions
    First check GCX2 transaction if there is already any Z Program attached for your application area. If yes check if it is active in SPRO
    Special Purpose LedgerTools-Maintain Validation/Substitution/Rules---Maintain Substitution
    You can create substitution ZTEST under
    Financial Accounting----Document header for field "reversal Indicator" and if you do F4 in field "Exit" you will see the exit created by you as per wiki.
    I think you can create substitution on field "reversal Indicator" but its your choice. Check if your exit gets trigger.
    Try creating a event to trigger proxy or submit program etc...
    Hope this helps.
    Regards
    Vinit
    Edited by: Vinit Joshi on Mar 9, 2012 8:20 PM

  • After years of owning all things Mac, I am finally trying to use iChat, and can't get it to work. I see my buddy, but all I can do is send a message--the video and audio chat icons are gray, as is inviting to a video chat under Buddies.

    After years of owning all things Mac, I am finally trying to use iChat, and can't get it to work. I am using gmail, and I see my buddy (no camera icon next to her name), but all I can do is send a message--the video and audio chat icons are gray, as is inviting to a video chat under Buddies. My buddy has the same problem as I.  We are able to do video chat through gmail, but I had hoped to use iChat.  I am using OS 10.6.8, iChat v. 5.0.3.  What am I missing?

    HI,
    iChat will Video chat to another iChat in a Jabber Buddy List (Google run a Jabber server for GoogleTalk)
    However it will not Video to the Web Page login to iGoogle or the Web Mail Page login.  (where people can Google Chat as it were in a  Web Browser).
    Nor does it video to the Google Talk Stand alone app for PCs or any other Jabber apps on any platform.
    iChat uses a connection Process called SIP (Session Initiation Protocol) which is also used by other VoIP devices.
    Jabber/XMPP invited the Jingle Protocol for Jabber Applications.
    Google have included this in their Standalone app and the Plug-in for Web Browsers on both PCs and Mac (you can get this as a Standalone Plug-in or as part of Chrome)
    More on this here  This article has been changed several time in the recent months.  It now claims a greater involvement by Google in writing the Jingle Library (Although now Google's version does not work with the others)
    This tends to mean that using the web Login to Google to Chat also cannot video chat to other Jabber apps that are using Jingle.
    If your Buddy is using iChat then check the Video Menu has two items to Enable Camera/Video chat and Microphone/Audio chats are ticked.
    In the View Menu the Show Status Items should be ticked (Selecting them toggles the tick and the function On or Off)
    It could be Internet speed but at this stage I would doubt this at this stage.
    10:27 PM      Saturday; January 21, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Can LabVIEW send an email through Microsoft Exchange server without an account set up in Outlook?

    I've found sample code that shows how to send email through Outlook using LabVIEW.  On any computer I log into on our network, my profile loads and I have access to the exchange server through Outlook so the code works.
    However, I am developing a program that will run on a lab computer with a generic PC login that is shared among everyone in the lab.  Exchange server/outlook is not set up for the generic user.
    Is it possible to have labVIEW send an email through the exchange server with a server name, username, and password coded into the executable?

    You would need to send a standard SMTP message via Exchange. The Exchange server will likely require authentication, so you won't be able to use the built-in SMTP VIs, as they do not support authentication. If you're on Windows you can use .NET (see this example), or use the OpenG SMTP VIs.

  • I am getting this message: An error occurred while sending mail. The mail server responded: 5.3.4 Requested action not taken; To send your message, please sign into your account online first and solve a puzzle. (Sorry for the inconvenience--these puzzles

    I am trying to send a message with an attachment, I get this message: An error occurred while sending mail. The mail server responded: 5.3.4 Requested action not taken; To send your message, please sign into your account online first and solve a puzzle. (Sorry for the inconvenience--these puzzles help us stop spammers.). Please check the message and try again.
    == Today

    Me too (with Thunderbird). EXCEPT it reads
    Requested action not taken; This account is currently blocked from sending messages. If you don't think you've violated the Windows Live Terms of Use, please contact customer support...
    Occasionally the mail "sends", but it is unpredictable. Tech Support at Qwest (for q.com under Windows Live) does not find a problem at their end.
    More suspiciously, the same account accessed from my Mac does not seem to exhibit this problem. Have reloaded T'bird. Recurred again.

Maybe you are looking for

  • Which cooling pad should I get for my MacBook Pro?

    I have the mid 2012 Mac Pro (the $1500 one) and now it is going to get hot in my country.Like around 110F and it is 92 and my Mac is starting to get really hot.So I was thinking of which cooling pad I should get.

  • Authorization checks programmatically

    Hi, Is it possible to do authorization checks programmatically inside Weblogic server in such a way, that the checks goes all the way down to the AuthorizationProvider implementation? In effect, I need some API to call, that in the end, calls the SPI

  • I have a HP Pavilion which has a touch sound bar above the keyboard. The display is no longer there

    HP Pavilion Entertainment PC  Windows 7 Wich has a touch sound bar above the keyboard and a display shows on the bottom of the screen when I touch the bar. This display is not there any longer. This question was solved. View Solution.

  • List of Exchange client versions

    I'm not looking for Outlook client versions but other client versions connected to exchange 2007.   Know of a complete list of client versions for Exchange 2007? These are some versions in question.  system mailboxes and a couple users display http.

  • CRM_ORDER_MISC 106 error

    Hi all, When we are trying to extract Service calls data from CRM to BI using the standard datasource 0CRM_SRV_PROCESS_H, the job terminates with the error message "Atleast one record could not be found in the object buffer". On further analyzing, it