05-05-2009 03:37 PM - edited 05-05-2009 03:40 PM
Hi all
I learn the Webservices
and I created the small VI and received error 67301
Why?
Regards
Iskander
05-06-2009 09:32 AM
Iskander,
I checked into your error, and it seems that it is being caused by an invalid Request ID. What are you supplying as the Request ID and how are you forming the address? Take a look at this Web Services article and post your actual code if you are still having issues. Thanks!
05-06-2009 03:09 PM
Thanks Chris G in AE
The Request ID=0.
May be this is error
What is number valid?
Thanks
Iskander
05-07-2009 04:31 PM
Iskander,
To be honest, I'm not sure if a Request ID of 0 is valid. I really need some more detailed information about your application before we can make that kind of an evaluation. Take a look at the link below to see if it gives you some further information, and please post back with a copy of what you're trying to do if you are still getting the error. Thanks, I look forward to hearing back from you.
LabVIEW Development Systems and Web Services
05-12-2009 12:46 PM
Hi Chris G in AE
My example is here
Best regards
Iskander
05-13-2009 06:35 PM
From the LabVIEW Help:
Creating VIs for Use in Web Services (Windows)
Creating VIs for Use in Web Services (Windows) Dim hasPlayer, playerversion hasPlayer = false playerversion = 10 Do While playerversion > 0 On Error Resume Next hasPlayer = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & playerversion))) If hasPlayer = true Then Exit Do playerversion = playerversion - 1 Loop is_FlashVersion = playerversion is_Flash = hasPlayer
Nearly all of the VIs on the Web Services palette require an HTTP request ID to identify a specific HTTP request. The HTTP request ID works similarly to a refnum in LabVIEW, allowing you to wire VIs from the Web Services palette within your application using a unique identifier for the current HTTP request. To access an HTTP request ID, create a 32-bit unsigned integer control with the label httpRequestID and wire the control to the connector pane of a Web Service VI.
05-20-2009 02:34 PM
Hi Hunter
Thanks
I conected the control to the connector pane of a Web Service VI
Don't work
Where is my error?
Regards
Iskander
05-02-2010 01:33 PM
Hello!
I have gone through this all and still get the exact same error.
I am trying to run the webservice demo.
Thank you for your help.
Yehia Ahmed
yehia@cloudypedia.com
05-03-2010 11:32 AM
Hi Yehia,
Did you address the problem as Hueter posted a few posts up? Did you create the ID correctly?