Jump to content

Emmerich Beeswing

Resident
  • Posts

    17
  • Joined

  • Last visited

Reputation

5 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. My products are updated at the marketplace since yesterday and as usual all my products have money back garantee. oh..and they are useable at old and new serverversion..they check that automatically
  2. Ah yes thank you so much Oz and Shuichi :-) first tests running fine
  3. Tried following script on Second Life RC Magnum 17.06.29.327400: key kSentRequest; string URL; string stream_status; default { state_entry() { URL = "http://muddys.digistream.info:20398"; llOwnerSay("URL:"+URL); kSentRequest = llHTTPRequest(URL + "/7.html",[HTTP_USER_AGENT,"XML Getter (Mozilla Compatible)"],""); } http_response (key kRecRequest, integer intStatus, list lstMeta, string strBody) { llOwnerSay("Status:"+(string)intStatus+", ResponseBody:"+strBody); } on_rez(integer start_param) { llResetScript(); } } RESPONSE: HTTP_USER_AGENT 'XML Getter (Mozilla Compatible)' is invalid Tried following too: kSentRequest = llHTTPRequest(URL + "/7.html",[HTTP_USER_AGENT,"XML Getter (Mozilla Compatible)\n\n"],""); RESPONSE: Same Did I understand something wrong with the syntax?
  4. Oz I read that I need to contact support to get acces to Beta grid? Can you help me pls? Tried with my username Emmerich Beeswing but didnt work
  5. Umm well I just took the Server of Linden Radio for that example..but did not find a Server of a Radio which is sending Shoutcast V1 which works..giving out a wokraround for my Beeswing Clubsystems to my customers at the moment which doesnt show any songtitles but work at least
  6. Yes I agree with Lyndka..thanks for your help Oz. Hope we get that running soon because my customers on the RC Servers are disappointet too atm :-)
  7. Tested several version with and without \n or %20% or even without defining a user agent. You said you did see it working? WHat is the Syntax please? That did NOT work: key kSentRequest; string URL; string stream_status; default { state_entry() { URL = "http://secondstream.de:10001"; llOwnerSay("URL:"+URL); kSentRequest = llHTTPRequest(URL + "/7.html",[HTTP_USER_AGENT, "XML Getter (Mozilla Compatible) \n\n"],""); } http_response (key kRecRequest, integer intStatus, list lstMeta, string strBody) { llOwnerSay("Status:"+(string)intStatus+", ResponseBody:"+strBody); } } RESPONSE: [23:36] Object: HTTP_USER_AGENT 'XML Getter (Mozilla Compatible) ' is invalid
  8. Hello Oz Today I tried this script Korpov used before at RC Magnum Server Version 17.06.23.327348 : key kSentRequest; string URL; string stream_status; default { state_entry() { URL = "http://secondstream.de:10001"; } touch_start (integer number) { llOwnerSay("URL:"+URL); kSentRequest = llHTTPRequest(URL + "/7.html",[HTTP_USER_AGENT, "Stream-Script/1.0 (Mozilla Compatible)"],""); } http_response (key kRecRequest, integer intStatus, list lstMeta, string strBody) { llOwnerSay("Status:"+(string)intStatus+", ResponseBody:"+strBody); } } Response: <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> With the old Syntax: kSentRequest = llHTTPRequest(URL + "/7.html"+" HTTP/1.0\nUser-Agent: XML Getter (Mozilla Compatible) \n\n", [], ""); I got URL passed to llHTTPRequest contains a control character. Can you pls help us with the right syntax? Thx in advance Emmerich
  9. The script works with the old syntax at the old Simulators. I only changed the way the http user agent gets addressed by the new syntax. That the old way does not work is ok its just hard that It doesnt give back some error or so the http request just goes to nirwana with no answer so I can't catch some error and decide if the script is running on an old or an new Server Version thats the problem.
  10. Hello Oz :-) I just did see that RC Magnum is updated to 17.06.19.327192. I tried follwowing http requests on several Shout V1, V2 and Icecast Radio stations: httpreqstream_id = llHTTPRequest(urlmain + "/7.html",[HTTP_USER_AGENT, "Stream-Script/1.0 (Mozilla Compatible)"],""); httpreqstream_id = llHTTPRequest(urlmain + "/stats?sid=" + urlsid,[HTTP_USER_AGENT, "Stream-Script/1.0 (Mozilla Compatible)"],""); httpreqstream_id = llHTTPRequest(urlmain + "/status-json.xsl" + urllast,[HTTP_USER_AGENT, "Stream-Script/1.0 (Mozilla Compatible)"],""); httpreqstream_id = llHTTPRequest(urlmain + "/status.xsl " + urllast,[HTTP_USER_AGENT, "Stream-Script/1.0 (Mozilla Compatible)"],""); At all these requests I got back on all of these requests: body :<html><head><title>Error 404</title></head><body><b>404 - Could not parse XSLT file</b></body></html> Additional I have the problem that if I try to request with the old syntax the script does not get ANY response back as far I can see..so I can not check if the response is bad and I have to check with the new syntax..any help would be appreciatet
  11. Alison don't be sad I bet all large producers of these boards will as soon as possible offer an update like we will do.
×
×
  • Create New...