From eliswilson at hushmail.com Wed May 1 01:10:45 2013 From: eliswilson at hushmail.com (eliswilson at hushmail.com) Date: Tue, 30 Apr 2013 19:10:45 -0400 Subject: [Soap-Python] Biggest Fake Conference in Computer Science Message-ID: <20130430231045.B3E1EE6739@smtp.hushmail.com> Biggest Fake Conference in Computer Science We are researchers from different parts of the world and conducted a study on the world?s biggest bogus computer science conference WORLDCOMP http://sites.google.com/site/worlddump1 organized by Prof. Hamid Arabnia from University of Georgia, USA. We submitted a fake paper to WORLDCOMP 2011 and again (the same paper with a modified title) to WORLDCOMP 2012. This paper had numerous fundamental mistakes. Sample statements from that paper include: (1). Binary logic is fuzzy logic and vice versa (2). Pascal developed fuzzy logic (3). Object oriented languages do not exhibit any polymorphism or inheritance (4). TCP and IP are synonyms and are part of OSI model (5). Distributed systems deal with only one computer (6). Laptop is an example for a super computer (7). Operating system is an example for computer hardware Also, our paper did not express any conceptual meaning. However, it was accepted both the times without any modifications (and without any reviews) and we were invited to submit the final paper and a payment of $500+ fee to present the paper. We decided to use the fee for better purposes than making Prof. Hamid Arabnia richer. After that, we received few reminders from WORLDCOMP to pay the fee but we never responded. This fake paper is different from the two fake papers already published (see https://sites.google.com/site/worlddump4 for details) in WORLDCOMP. We MUST say that you should look at the above website if you have any thoughts of participating in WORLDCOMP. DBLP and other indexing agencies have stopped indexing WORLDCOMP?s proceedings since 2011 due to its fakeness. See http://www.informatik.uni-trier.de/~ley/db/conf/icai/index.html for of one of the conferences of WORLDCOMP and notice that there is no listing after 2010. See Section 2 of http://sites.google.com/site/dumpconf for comments from well-known researchers about WORLDCOMP. The status of your WORLDCOMP papers can be changed from scientific to other (i.e., junk or non-technical) at any time. Better not to have a paper than having it in WORLDCOMP and spoil the resume and peace of mind forever! Our study revealed that WORLDCOMP is money making business, using University of Georgia mask, for Prof. Hamid Arabnia. He is throwing out a small chunk of that money (around 20 dollars per paper published in WORLDCOMP?s proceedings) to his puppet (Mr. Ashu Solo or A.M.G. Solo) who publicizes WORLDCOMP and also defends it at various forums, using fake/anonymous names. The puppet uses fake names and defames other conferences to divert traffic to WORLDCOMP. He also makes anonymous phone calls and threatens the critiques of WORLDCOMP (See Item 7 of Section 5 of above website). That is, the puppet does all his best to get a maximum number of papers published at WORLDCOMP to get more money into his (and Prof. Hamid Arabnia?s) pockets. Prof. Hamid Arabnia makes a lot of tricks. For example, he appeared in a newspaper to fool the public, claiming him a victim of cyber-attack (see Item 8 in Section 5 of above website). Monte Carlo Resort (the venue of WORLDCOMP for more than 10 years, until 2012) has refused to provide the venue for WORLDCOMP?13 because of the fears of their image being tarnished due to WORLDCOMP?s fraudulent activities. That is why WORLDCOMP?13 is taking place at a different resort. WORLDCOMP will not be held after 2013. The draft paper submission deadline is over but still there are no committee members, no reviewers, and there is no conference Chairman. The only contact details available on WORLDCOMP?s website is just an email address! We ask Prof. Hamid Arabnia to publish all reviews for all the papers (after blocking identifiable details) since 2000 conference. Reveal the names and affiliations of all the reviewers (for each year) and how many papers each reviewer had reviewed on average. We also ask him to look at the Open Challenge (Section 6) at https://sites.google.com/site/moneycomp1 and respond if he has any professional values. Sorry for posting to multiple lists. Spreading the word is the only way to stop this bogus conference. Please forward this message to other mailing lists and people. We are shocked with Prof. Hamid Arabnia and his puppet?s activities at http://worldcomp-fake-bogus.blogspot.com Search Google using the keyword worldcomp fake for additional links. From jla at fcoo.dk Wed May 15 08:15:31 2013 From: jla at fcoo.dk (Jesper Larsen) Date: Wed, 15 May 2013 06:15:31 +0000 Subject: [Soap-Python] JSONP response Message-ID: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> Hi Spyne Users I am currently using Spyne for SOAP communication but I would like to use the JSON protocol as well. And most likely JSONP since the cross-origin resource sharing mechanism (CORS) will (still) exclude a number of browsers and seems somewhat involved to implement. But I can see from the Spyne source code that JSONP support is currently not available in the JSON serializer (spyne.protocol.json). So what I intend to do is: Subclass JsonDocument. Override __init__ to take an optional callback function (default=None => behaviour as JsonDocument) and override create_out_string so that it optionally (if callback function is not None) wraps the JSON output in: callback_function_name + '(' + json + ')' Since I am new to Spyne I wanted to hear whether this sounds like a reasonable approach? Best regards, Jesper From burak.arslan at arskom.com.tr Wed May 15 11:47:24 2013 From: burak.arslan at arskom.com.tr (Burak Arslan) Date: Wed, 15 May 2013 12:47:24 +0300 Subject: [Soap-Python] JSONP response In-Reply-To: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> References: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> Message-ID: <519359AC.1070804@arskom.com.tr> On 05/15/13 09:15, Jesper Larsen wrote: > So what I intend to do is: Subclass JsonDocument. Override __init__ to take an optional callback function (default=None => behaviour as JsonDocument) and override create_out_string so that it optionally (if callback function is not None) wraps the JSON output in: > > callback_function_name + '(' + json + ')' > > Hi Jesper, That's the idea, but I'd rather do: from itertools import chain class JsonP(JsonDocument): def __init__(self, callback_name, *args, **kwargs): super(JsonP, self).__init__(*args, **kwargs) self.callback_name = callback_name def create_out_string(self, ctx): super(JsonP, self).create_out_string(ctx) ctx.out_string = chain([self.callback_name, '('], ctx.out_string, [')']) ... because: 1) out_string is always a sequence, but not necessarily a list. (With Json, as of now, it's always a list but that's an implementation quirk) 2) string concatanations are costly. 3) Using JsonP does not make sense (does it?) without callback_name so I made it mandatory. If you like this implementation, I'll commit it and it will be out in Spyne-2.11. In case you don't want to wait (I got a lot to do for 2.11), you can use this as it is in your own code (If it works, the above is not tested) with 2.10. Other things like making callback_name dynamic could also be made by trying to get it first from context (e.g. ctx.protocol.callback_name) before getting it from protocol-wide setting. Best, Burak From jla at fcoo.dk Wed May 15 12:05:07 2013 From: jla at fcoo.dk (Jesper Larsen) Date: Wed, 15 May 2013 10:05:07 +0000 Subject: [Soap-Python] JSONP response In-Reply-To: <519359AC.1070804@arskom.com.tr> References: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> <519359AC.1070804@arskom.com.tr> Message-ID: <15E71B0ACFC92F4DA016DFBAB512295736C03240@mail01.fcoo.dk> Hi Burak Thanks for your prompt and positive reply. Your solution is better than mine so I would be very happy to see it included in Spyne. It would be nice to have the callback_name dynamic since users could then specify it in their HTTP request and not be forced to use a common callback_name. Best regards, Jesper > -----Original Message----- > From: Burak Arslan [mailto:burak.arslan at arskom.com.tr] > Sent: Wednesday, May 15, 2013 11:47 AM > To: Jesper Larsen > Cc: soap at python.org > Subject: Re: [Soap-Python] JSONP response > > On 05/15/13 09:15, Jesper Larsen wrote: > > So what I intend to do is: Subclass JsonDocument. Override __init__ > to take an optional callback function (default=None => behaviour as > JsonDocument) and override create_out_string so that it optionally (if > callback function is not None) wraps the JSON output in: > > > > callback_function_name + '(' + json + ')' > > > > > > Hi Jesper, > > That's the idea, but I'd rather do: > > from itertools import chain > > class JsonP(JsonDocument): > def __init__(self, callback_name, *args, **kwargs): > super(JsonP, self).__init__(*args, **kwargs) > self.callback_name = callback_name > > def create_out_string(self, ctx): > super(JsonP, self).create_out_string(ctx) > > ctx.out_string = chain([self.callback_name, '('], > ctx.out_string, [')']) > > ... because: > > 1) out_string is always a sequence, but not necessarily a list. (With > Json, as of now, it's always a list but that's an implementation quirk) > 2) string concatanations are costly. > 3) Using JsonP does not make sense (does it?) without callback_name so > I > made it mandatory. > > If you like this implementation, I'll commit it and it will be out in > Spyne-2.11. In case you don't want to wait (I got a lot to do for > 2.11), > you can use this as it is in your own code (If it works, the above is > not tested) with 2.10. > > Other things like making callback_name dynamic could also be made by > trying to get it first from context (e.g. ctx.protocol.callback_name) > before getting it from protocol-wide setting. > > Best, > Burak From burak.arslan at arskom.com.tr Wed May 15 13:29:46 2013 From: burak.arslan at arskom.com.tr (Burak Arslan) Date: Wed, 15 May 2013 14:29:46 +0300 Subject: [Soap-Python] JSONP response In-Reply-To: <15E71B0ACFC92F4DA016DFBAB512295736C03240@mail01.fcoo.dk> References: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> <519359AC.1070804@arskom.com.tr> <15E71B0ACFC92F4DA016DFBAB512295736C03240@mail01.fcoo.dk> Message-ID: <519371AA.3000905@arskom.com.tr> On 05/15/13 13:05, Jesper Larsen wrote: > Hi Burak > > Thanks for your prompt and positive reply. Your solution is better than mine so I would be very happy to see it included in Spyne. It would be nice to have the callback_name dynamic since users could then specify it in their HTTP request and not be forced to use a common callback_name. > sure, but you'll have to take it from here and do it yourself, complete with tests, etc. if e.g. you want to havethe dynamic callback_name functionality. I'm willing to review and eventually accept patches towards this. don't get me wrong, it's very simple! it's just not my itch to scratch. best regards, burak From jla at fcoo.dk Wed May 15 13:38:47 2013 From: jla at fcoo.dk (Jesper Larsen) Date: Wed, 15 May 2013 11:38:47 +0000 Subject: [Soap-Python] JSONP response In-Reply-To: <519371AA.3000905@arskom.com.tr> References: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> <519359AC.1070804@arskom.com.tr> <15E71B0ACFC92F4DA016DFBAB512295736C03240@mail01.fcoo.dk> <519371AA.3000905@arskom.com.tr> Message-ID: <15E71B0ACFC92F4DA016DFBAB512295736C0327C@mail01.fcoo.dk> Hi Burak Fair enough. I will try to stitch a patch together:-) Best regards, Jesper > -----Original Message----- > From: Burak Arslan [mailto:burak.arslan at arskom.com.tr] > Sent: Wednesday, May 15, 2013 1:30 PM > To: Jesper Larsen > Cc: soap at python.org > Subject: Re: [Soap-Python] JSONP response > > On 05/15/13 13:05, Jesper Larsen wrote: > > Hi Burak > > > > Thanks for your prompt and positive reply. Your solution is better > than mine so I would be very happy to see it included in Spyne. It > would be nice to have the callback_name dynamic since users could then > specify it in their HTTP request and not be forced to use a common > callback_name. > > > > sure, but you'll have to take it from here and do it yourself, complete > with tests, etc. if e.g. you want to havethe dynamic callback_name > functionality. I'm willing to review and eventually accept patches > towards this. > > don't get me wrong, it's very simple! it's just not my itch to scratch. > > best regards, > burak From burak.arslan at arskom.com.tr Thu May 16 12:36:26 2013 From: burak.arslan at arskom.com.tr (Burak Arslan) Date: Thu, 16 May 2013 13:36:26 +0300 Subject: [Soap-Python] JSONP response In-Reply-To: <15E71B0ACFC92F4DA016DFBAB512295736C0327C@mail01.fcoo.dk> References: <15E71B0ACFC92F4DA016DFBAB512295736C03178@mail01.fcoo.dk> <519359AC.1070804@arskom.com.tr> <15E71B0ACFC92F4DA016DFBAB512295736C03240@mail01.fcoo.dk> <519371AA.3000905@arskom.com.tr> <15E71B0ACFC92F4DA016DFBAB512295736C0327C@mail01.fcoo.dk> Message-ID: <5194B6AA.1040508@arskom.com.tr> Hi Jesper, FYI, I've done the initial JsonP commit. You can look at the test to see how it works. https://github.com/plq/spyne/commit/d90d84d915c4b4a54567ef1f759bd04926604f2b Best, Burak On 05/15/13 14:38, Jesper Larsen wrote: > Hi Burak > > Fair enough. I will try to stitch a patch together:-) > > Best regards, > Jesper > >> -----Original Message----- >> From: Burak Arslan [mailto:burak.arslan at arskom.com.tr] >> Sent: Wednesday, May 15, 2013 1:30 PM >> To: Jesper Larsen >> Cc: soap at python.org >> Subject: Re: [Soap-Python] JSONP response >> >> On 05/15/13 13:05, Jesper Larsen wrote: >>> Hi Burak >>> >>> Thanks for your prompt and positive reply. Your solution is better >> than mine so I would be very happy to see it included in Spyne. It >> would be nice to have the callback_name dynamic since users could then >> specify it in their HTTP request and not be forced to use a common >> callback_name. >> sure, but you'll have to take it from here and do it yourself, complete >> with tests, etc. if e.g. you want to havethe dynamic callback_name >> functionality. I'm willing to review and eventually accept patches >> towards this. >> >> don't get me wrong, it's very simple! it's just not my itch to scratch. >> >> best regards, >> burak From dsuch at zato.io Sat May 18 23:28:08 2013 From: dsuch at zato.io (Dariusz Suchojad) Date: Sat, 18 May 2013 23:28:08 +0200 Subject: [Soap-Python] Zato 1.0. The next generation ESB and application server. Open-source. In Python. Message-ID: <5197F268.2000509@zato.io> Hello, I'm very happy to announce the first release of Zato, the next generation ESB and application server, available under a commercial-friendly open-source LGPL license. https://zato.io What can you expect out of the box? ----------------------------------- * HTTP, JSON, SOAP, Redis, AMQP, JMS WebSphere MQ, ZeroMQ, FTP, SQL, hot-deployment, job scheduling, statistics, high-availability load balancing and more * Incredible productivity with Python * Painless rollouts with less downtime * Slick web admin GUI, CLI and API * Awesome documentation (several hundred A4 pages) * 24x7 commercial support and training Links ----- Project's site: https://zato.io Download: https://zato.io/download/zato-1.0.tar.bz2 Support: https://zato.io/support Docs: https://zato.io/docs Architecture: https://zato.io/docs/architecture/overview.html Tutorial: https://zato.io/docs/tutorial/01.html GitHub: https://github.com/zatosource Mailing list: https://mailman-mail5.webfaction.com/listinfo/zato-discuss IRC: irc://irc.freenode.net/zato Twitter: https://twitter.com/zatosource LinkedIn: https://www.linkedin.com/groups?gid=5015554 Diversity statement: https://zato.io/docs/project/diversity.html Spread the news and enjoy! :-) cheers, -- Dariusz Suchojad https://zato.io The next generation ESB and application server. Open-source. In Python. From fmezas at gmail.com Sun May 19 09:07:30 2013 From: fmezas at gmail.com (Francisco Meza) Date: Sun, 19 May 2013 00:07:30 -0700 Subject: [Soap-Python] status of rpc style in spyne Message-ID: hi could anybody comment on the support of different wsdl styles in spyne? >From looking at the code it seems it only supports document/literal wrapped. If that's the case, are there any plans on supporting rpc style? thanks Francisco -------------- next part -------------- An HTML attachment was scrubbed... URL: From burak.arslan at arskom.com.tr Sun May 19 15:22:05 2013 From: burak.arslan at arskom.com.tr (Burak Arslan) Date: Sun, 19 May 2013 16:22:05 +0300 Subject: [Soap-Python] status of rpc style in spyne In-Reply-To: References: Message-ID: <5198D1FD.2010005@arskom.com.tr> On 05/19/13 10:07, Francisco Meza wrote: > hi > > could anybody comment on the support of different wsdl styles in > spyne? From looking at the code it seems it only supports > document/literal wrapped. If that's the case, are there any plans on > supporting rpc style? > Hi Francisco, The @rpc decorator does accept _body_style='bare', (== _soap_body_style='rpc'). http://spyne.io/docs/2.10/reference/decorator.html But, there is a catch: https://github.com/arskom/spyne/blob/60323110ae0f32b8cb70b34e36ef1a54dd156029/spyne/decorator.py#L88 So, if you can lift that restriction, I'd be happy to review your patches and eventually accept them. You can start by: 1) copying this test as test_bare_multi: https://github.com/arskom/spyne/blob/84d30cbc2d84ed92b065836603bc2464cd50b31e/spyne/test/interface/wsdl/test_default_wsdl.py#L173 2) modify it to have multiple arguments in the function. 3) ??? 4) Test passes. :) If you have any further questions, I'd be happy to answer them. Best, Burak From joshua.fialkoff at gmail.com Thu May 30 16:53:44 2013 From: joshua.fialkoff at gmail.com (Joshua Fialkoff) Date: Thu, 30 May 2013 10:53:44 -0400 Subject: [Soap-Python] XMLSyntaxError when attempting to call method on Spyne server Message-ID: Hello all, This is a continuation of this question on StackOverflow. Burak suggested I post here instead. I am using Spyne as a SOAP server and have tested it with suds. Everything works fine. However, when my client sends a request, I get this error: [Django] ERROR: ' services_xxx_xxx xxxx ' I'm not really sure what the problem is and would very much appreciate some help. Here is the request body and headers for my suds request: services_quest_4quest<questxml>sdlkfjsdlkj</questxml> , POST:': [u''], u'questxml': [u''], u'lt': [u'', u''], u'services_xxxxxxxx']}>, COOKIES:{}, META:{'CONTENT_LENGTH': '518', 'CONTENT_TYPE': 'text/xml; charset=utf-8', 'HTTP_ACCEPT_ENCODING': 'identity', 'HTTP_CONNECTION': 'Keep-Alive', 'HTTP_HOST': 'app.stage.thetestvault.com', 'HTTP_SOAPACTION': '"ReceiveLabTestResult"', 'HTTP_USER_AGENT': 'Python-urllib/2.7', 'HTTP_X_CLUSTER_CLIENT_IP': '10.176.0.61', 'HTTP_X_FORWARDED_FOR': '69.249.200.37,10.176.0.61', 'HTTP_X_FORWARDED_PORT': '80', 'HTTP_X_FORWARDED_PROTO': 'https', 'HTTP_X_FORWARDED_PROTOCOL': 'ssl', 'HTTP_X_INSTANCE_ID': '1681', 'PATH_INFO': u'/soap-api/quest/', 'QUERY_STRING': '', 'RAW_URI': '/soap-api/quest/', 'REMOTE_ADDR': '10.176.0.61', 'REMOTE_PORT': '80', 'REQUEST_METHOD': 'POST', 'SCRIPT_NAME': u'', 'SERVER_NAME': 'app.stage.thetestvault.com', 'SERVER_PORT': '443', 'SERVER_PROTOCOL': 'HTTP/1.1', 'SERVER_SOFTWARE': 'gunicorn/0.14.5', 'gunicorn.socket': , 'wsgi.errors': ', mode 'w' at 0x7f4119b7e270>, 'wsgi.file_wrapper': , 'wsgi.input': , 'wsgi.multiprocess': False, 'wsgi.multithread': False, 'wsgi.run_once': False, 'wsgi.url_scheme': 'https', 'wsgi.version': (1, 0)}> Here is that information for the client request. I ran the request body through an XML validator and it seems to be fine: services_xxxx xxxx 11 NURSING No One SAP
1 SIR TYLER DRIVE, WILMTON NC 28405 999-999-9999
0022455 2263455130611ZKS 230611Z 111111111 DAVIS,ALYXANDREA MAR OTHER 1 20120418 1536 20120419 0649
20120419 1257 YNNNNNN 201204191256 5003117538
36 OTHER ID NG KS Quest Diagnostics-Lenexa KSAS01
10101 Renner Blvd Lenexa KS 66219
XVD
Quest Diagnostics-Holland Wellness Dri 3290 N Wellness Dr Holland MI 49424 616-399-3016 616-399-3017
6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 AMP AMPHETAMINES (1000 ng/mL SCREEN) 72431 D K R SAP 1000 500 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 BARB BARBITURATES 72443 D K R SAP 300 200 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 BENZ BENZODIAZEPINES 72451 D K R SAP 300 200 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 COC COCAINE METABOLITES 72432 D K R SAP 300 150 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 T50 MARIJUANA METABOLITES, (50 ng/mL SCREEN) 72452 D K R SAP 50 15 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 METD METHADONE 72454 D K R SAP 300 200 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 METQ METHAQUALONE 72455 D K R SAP 300 200 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 OPI2K OPIATES (2000 NG/ML SCREEN) 72726 D K R SAP 2000 2000 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 PCP PHENCYCLIDINE 72426 D K R SAP 25 25 A NEGATIVE 6633N 717833 SUBSTANCE ABUSE PANEL 10- 50, GC/MS CONFIRM SAP 10-50 GC/MS 0006633 PROP PROPOXYPHENE 72456 D K R SAP 300 200 A NEGATIVE
]]>
No stack trace available , POST:\n \n \n \n services_quest_4\n quest\n \n \n \n 11 \n NURSING \n No One \n SAP \n
\n 1 SIR TYLER DRIVE, \n WILMTON \n NC \n 28405 \n 999-999-9999 \n \n
\n
\n \n 0022455 \n 2263455130611ZKS \n 230611Z \n 111111111 \n DAVIS,ALYXANDREA MAR \n OTHER \n 1 \n 20120418 \n 1536 \n 20120419 \n 0649 \n \n \n \n
\n \n \n \n \n
\n
\n \n 20120419 \n 1257 \n YNNNNNN \n 201204191256 \n 5003117538 \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n
\n \n \n 36 \n OTHER ID \n NG \n \n \n \n \n \n \n \n \n KS \n Quest Diagnostics-Lenexa \n KSAS01 \n
\n 10101 Renner Blvd \n Lenexa \n KS \n 66219 \n
\n
\n \n XVD \n
\n Quest Diagnostics-Holland Wellness Dri \n 3290 N Wellness Dr \n \n Holland \n MI \n 49424 \n 616-399-3016 \n 616-399-3017 \n
\n
\n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n AMP \n AMPHETAMINES (1000 ng/mL SCREEN) \n 72431 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 1000 \n 500 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n BARB \n BARBITURATES \n 72443 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300 \n 200 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n BENZ \n BENZODIAZEPI NES \n 72451 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300 \n 200 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n COC \n COCAINE METABOLITES \n 72432 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300 \n 150 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n T50 \n MARIJUANA METABOLITES, (50 ng/mL SCREEN) \n 72452 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 50 \n 15 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n METD \n METHADONE \n 72454 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300< /ScreeningCutoff> \n 200 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n METQ \n METHAQUALONE \n 72455 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300 \n 200 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n OPI2K \n OPIATES (2000 NG/ML SCREEN) \n 72726 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 2000 \n 2000 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n PCP \n PHENCYCLIDINE \n 72426 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 25 \n 25 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n 6633N \n 717833 \n SUBSTANCE ABUSE PANEL 10- \n 50, GC/MS CONFIRM \n SAP 10-50 GC/MS \n \n 0006633 \n \n PROP \n PROPOXYPHENE \n 72456 \n \n D \n K \n \n \n \n \n \n \n R \n SAP \n 300 \n 200 \n \n \n \n \n A \n NEGATIVE \n \n \n \n \n \n
]]>
\n
\n
\n']}>, COOKIES:{}, META:{'CONTENT_LENGTH': '14559', 'CONTENT_TYPE': 'text/xml;charset=UTF-8', 'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_CONNECTION': 'Keep-Alive', 'HTTP_HOST': 'app.stage.thetestvault.com', 'HTTP_SOAPACTION': '"ReceiveLabTestResult"', 'HTTP_USER_AGENT': 'Jakarta Commons-HttpClient/3.1', 'HTTP_X_CLUSTER_CLIENT_IP': '10.176.0.61', 'HTTP_X_FORWARDED_FOR': '198.70.194.61,10.176.0.61', 'HTTP_X_FORWARDED_PORT': '80', 'HTTP_X_FORWARDED_PROTO': 'https', 'HTTP_X_FORWARDED_PROTOCOL': 'ssl', 'HTTP_X_INSTANCE_ID': '1681', 'PATH_INFO': u'/soap-api/quest/', 'QUERY_STRING': '', 'RAW_URI': '/soap-api/quest/', 'REMOTE_ADDR': '10.176.0.61', 'REMOTE_PORT': '80', 'REQUEST_METHOD': 'POST', 'SCRIPT_NAME': u'', 'SERVER_NAME': 'app.stage.thetestvault.com', 'SERVER_PORT': '443', 'SERVER_PROTOCOL': 'HTTP/1.1', 'SERVER_SOFTWARE': 'gunicorn/0.14.5', 'gunicorn.socket': , 'wsgi.errors': ', mode 'w' at 0x7f4119b7e270>, 'wsgi.file_wrapper': , 'wsgi.input': , 'wsgi.multiprocess': False, 'wsgi.multithread': False, 'wsgi.run_once': False, 'wsgi.url_scheme': 'https', 'wsgi.version': (1, 0)}> Joshua Fialkoff - Setaris Corporation 4 E Mill Dr. #1C Great Neck, NY 11021 Direct: (646) 265-5154 + Skype: jfialkoffatsetaris Office: (212) 369-1263 + Website: www.setaris.com -------------- next part -------------- An HTML attachment was scrubbed... URL: