{{Quickfixn}} RES: RES: Quickfixn Digest, Vol 9, Issue 17

KAPIL KUMAR LALWANI kaplalwani at yahoo.co.in
Tue Jul 31 06:11:02 PDT 2012


Hi

Try this one ...
QuickFix.Message m = new QuickFix.Message();               

                m.Header.SetField(new BeginString("FIX.5.0SP2"));
                m.SetField(new QuickFix.Fields.StringField(35, "BW"));
                m.SetField(new QuickFix.Fields.StringField(1346, "TRADER"), true); //AppReqId
                m.SetField(new QuickFix.Fields.IntField(1347, 0), true); //ApplReqType

                m.SetField(new QuickFix.Fields.IntField(1182, 10), true); //ApplBegSeqNum
                m.SetField(new QuickFix.Fields.IntField(1183, 20), true); //ApplBegSeqNum

                m.Validate();

Your Sincerely,
Kapil Kumar Lalwani

“Enjoy the WORK you do, Do the BEST you can.” 



________________________________
 From: Felipe Soares <felipe.soares at traderdata.com.br>
To: KAPIL KUMAR LALWANI <kaplalwani at yahoo.co.in>; Mailing list for QuickFIX/n <quickfixn at lists.quickfixn.com> 
Sent: Tuesday, 31 July 2012 5:58 PM
Subject: RES: {{Quickfixn}} RES: Quickfixn Digest, Vol 9, Issue 17
 

Kapil,
 
Bellow is the error that is thrown when I execute that source code:
 
Unhandled Exception: QuickFix.FieldNotFoundException: field not found for tag: 3
5
   at QuickFix.FieldMap.GetField(Int32 tag)
   at QuickFix.Session.SendRaw(Message message, Int32 seqNum)
   at QuickFix.Session.Send(Message message)
   at QuickFix.Session.SendToTarget(Message message, SessionID sessionID)
   at ConsoleApplication21.TCPReplayApp.RequestSeqNum(Int32 seqnum)
   at ConsoleApplication21.Program.Main(String[] args)
 
regards
 
 
De:KAPIL KUMAR LALWANI [mailto:kaplalwani at yahoo.co.in] 
Enviada em: terça-feira, 31 de julho de 2012 09:19
Para: Mailing list for QuickFIX/n
Cc: felipe.soares at traderdata.com.br
Assunto: Re: {{Quickfixn}} RES: Quickfixn Digest, Vol 9, Issue 17
 
Hi Felipe,
I guess this will help you ...
 
QuickFix.Message m = new QuickFix.Message();
        m.SetField(new QuickFix.Fields.StringField(IntegerTag, StringValue)); 
        m.SetField(new QuickFix.Fields.IntField(IntegerTag, IntegerValue)); 
 

Your Sincerely,
Kapil Kumar Lalwani

“Enjoy the WORK you do, Do the BEST you can.” 
 

________________________________
 
From:Felipe Soares <felipe.soares at traderdata.com.br>
To: quickfixn at lists.quickfixn.com 
Sent: Tuesday, 31 July 2012 4:59 PM
Subject: {{Quickfixn}} RES: Quickfixn Digest, Vol 9, Issue 17

Hi,

Can anyone post na example of how am I supposed to create a custom message
ate FIX4.4?
We tried following quickfix/n samples at website but so far could not
create it. The message it isn´t created...the error occurs at QuickFix/N,
but I am pretty sure that we are doing something wrong as soon as we have
no experience with quickfix/n.

Regards
Felipe soares

-----Mensagem original-----
De: quickfixn-bounces at lists.quickfixn.com
[mailto:quickfixn-bounces at lists.quickfixn.com] Em nome de
quickfixn-request at lists.quickfixn.com
Enviada em: terça-feira, 31 de julho de 2012 04:58
Para: quickfixn at lists.quickfixn.com
Assunto: Quickfixn Digest, Vol 9, Issue 17

Send Quickfixn mailing list submissions to
    quickfixn at lists.quickfixn.com

To subscribe or unsubscribe via the World Wide Web, visit
    http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com
or, via email, send a message with subject or body 'help' to
    quickfixn-request at lists.quickfixn.com

You can reach the person managing the list at
    quickfixn-owner at lists.quickfixn.com

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Quickfixn digest..."


Today's Topics:

  1. Re:  Message "AP" PositionReport Error on (Mike Gatny)
  2. Re:  TradeCaptureReportRequest (KAPIL KUMAR LALWANI)
  3. Re:  TradeCaptureReportRequest (Tim Bailey)
  4. Re:  TradeCaptureReportRequest (KAPIL KUMAR LALWANI)


----------------------------------------------------------------------

Message: 1
Date: Mon, 30 Jul 2012 17:19:07 -0500
From: Mike Gatny <mgatny at connamara.com>
To: "Mailing list for QuickFIX/n" <quickfixn at lists.quickfixn.com>
Subject: Re: {{Quickfixn}} Message "AP" PositionReport Error on
Message-ID:

<CAA1-azM7ctcOzd09FkppknU6W3iddj014CrZK6s1kvuxLgx23A at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

DataDictionary validation does indeed happen before FromApp (in fact,
FromApp is just about that last thing that happens when a message is
received).  I think it is pretty likely that the stack trace change would
be helpful here -- the existing error message isn't much to debug with.

--
Mike Gatny
Connamara Systems, LLC
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.quickfixn.com/pipermail/quickfixn-quickfixn.com/attachments/
20120730/5419caee/attachment-0001.htm>

------------------------------

Message: 2
Date: Tue, 31 Jul 2012 12:47:01 +0800 (SGT)
From: KAPIL KUMAR LALWANI <kaplalwani at yahoo.co.in>
To: Mailing list for QuickFIX/n <quickfixn at lists.quickfixn.com>
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest
Message-ID:
    <1343710021.42370.YahooMailNeo at web190702.mail.sg3.yahoo.com>
Content-Type: text/plain; charset="utf-8"

Hi All,
I am also working with Quickfix/n. In the same message
"TradeCaptureReportRequest", I am not attaching the symbol with the
message, but its working fine for me. So I don't think so that its a
issue.
?


Kapil Kumar Lalwani
?Enjoy the WORK you do, Do the BEST you can.??



________________________________
From: Mike Gatny <mgatny at connamara.com>
To: Mailing list for QuickFIX/n <quickfixn at lists.quickfixn.com>
Sent: Monday, 30 July 2012 10:40 PM
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest


Tim,

Thanks for the log. ?I'm thinking Grant's analysis (required field in a
component that is not required by the message) is correct. ?In other
words, this is a legitimate bug.


--
Mike Gatny
Connamara Systems, LLC

_______________________________________________
Quickfixn mailing list
Quickfixn at lists.quickfixn.com
http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.quickfixn.com/pipermail/quickfixn-quickfixn.com/attachments/
20120731/a3ab11c1/attachment-0001.htm>

------------------------------

Message: 3
Date: Tue, 31 Jul 2012 08:48:31 +0100
From: "Tim Bailey" <tim.bailey at ateofinance.com>
To: "'KAPIL KUMAR LALWANI'" <kaplalwani at yahoo.co.in>,    "'Mailing list
    for QuickFIX/n'" <quickfixn at lists.quickfixn.com>
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest
Message-ID: <031701cd6ef0$e14786e0$a3d694a0$@ateofinance.com>
Content-Type: text/plain; charset="utf-8"

I?m using version 1.2.0.0, should this help.



From: quickfixn-bounces at lists.quickfixn.com
[mailto:quickfixn-bounces at lists.quickfixn.com] On Behalf Of KAPIL KUMAR
LALWANI
Sent: 31 July 2012 05:47
To: Mailing list for QuickFIX/n
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest



Hi All,

            I am also working with Quickfix/n. In the same message
"TradeCaptureReportRequest", I am not attaching the symbol with the
message, but its working fine for me. So I don't think so that its a
issue.





Kapil Kumar Lalwani
?Enjoy the WORK you do, Do the BEST you can.?



  _____

From: Mike Gatny <mgatny at connamara.com>
To: Mailing list for QuickFIX/n <quickfixn at lists.quickfixn.com>
Sent: Monday, 30 July 2012 10:40 PM
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest



Tim,



Thanks for the log.  I'm thinking Grant's analysis (required field in a
component that is not required by the message) is correct.  In other
words, this is a legitimate bug.



--
Mike Gatny
Connamara Systems, LLC


_______________________________________________
Quickfixn mailing list
Quickfixn at lists.quickfixn.com
http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com



-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.quickfixn.com/pipermail/quickfixn-quickfixn.com/attachments/
20120731/f419d79e/attachment-0001.htm>

------------------------------

Message: 4
Date: Tue, 31 Jul 2012 15:58:25 +0800 (SGT)
From: KAPIL KUMAR LALWANI <kaplalwani at yahoo.co.in>
To: Tim Bailey <tim.bailey at ateofinance.com>,    'Mailing list for
    QuickFIX/n' <quickfixn at lists.quickfixn.com>
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest
Message-ID:
    <1343721505.83465.YahooMailNeo at web190705.mail.sg3.yahoo.com>
Content-Type: text/plain; charset="utf-8"

Hi
I am using the same version 1.2.0.0 with no issue of this kind.
?


Kapil Kumar Lalwani
?Enjoy the WORK you do, Do the BEST you can.??



________________________________
From: Tim Bailey <tim.bailey at ateofinance.com>
To: 'KAPIL KUMAR LALWANI' <kaplalwani at yahoo.co.in>; 'Mailing list for
QuickFIX/n' <quickfixn at lists.quickfixn.com>
Sent: Tuesday, 31 July 2012 1:18 PM
Subject: RE: {{Quickfixn}} TradeCaptureReportRequest


I?m using version 1.2.0.0, should this help.
?
From:quickfixn-bounces at lists.quickfixn.com
[mailto:quickfixn-bounces at lists.quickfixn.com] On Behalf Of KAPIL KUMAR
LALWANI
Sent: 31 July 2012 05:47
To: Mailing list for QuickFIX/n
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest
?
Hi All,
??????????? I am also working with Quickfix/n. In the same message
"TradeCaptureReportRequest", I am not attaching the symbol with the
message, but its working fine for me. So I don't think so that its a
issue.
?


Kapil Kumar Lalwani
?Enjoy the WORK you do, Do the BEST you can.??
?

________________________________

From:Mike Gatny <mgatny at connamara.com>
To: Mailing list for QuickFIX/n <quickfixn at lists.quickfixn.com>
Sent: Monday, 30 July 2012 10:40 PM
Subject: Re: {{Quickfixn}} TradeCaptureReportRequest
?
Tim,
?
Thanks for the log. ?I'm thinking Grant's analysis (required field in a
component that is not required by the message) is correct. ?In other
words, this is a legitimate bug.
?
--
Mike Gatny
Connamara Systems, LLC

_______________________________________________
Quickfixn mailing list
Quickfixn at lists.quickfixn.com
http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.quickfixn.com/pipermail/quickfixn-quickfixn.com/attachments/
20120731/8050329d/attachment.htm>

------------------------------

_______________________________________________
Quickfixn mailing list
Quickfixn at lists.quickfixn.com
http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com


End of Quickfixn Digest, Vol 9, Issue 17
****************************************
_______________________________________________
Quickfixn mailing list
Quickfixn at lists.quickfixn.com
http://lists.quickfixn.com/listinfo.cgi/quickfixn-quickfixn.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.quickfixn.com/pipermail/quickfixn-quickfixn.com/attachments/20120731/9805fca2/attachment-0002.htm>


More information about the Quickfixn mailing list