HttpServices not working Online but working with Flash Builder

I am using Flash Builder and worked on different modules. it works perfectly
when am testing with Flash Builder
but once i close it, the httpservices stop working. I search and now got
error message i.e.
===============================================
Can't load data: (mx.messaging.messages::ErrorMessage)#0
  body = ""
  clientId = "DirectHTTPChannel0"
  correlationId = "A10EF203-C28B-A5C6-73D6-1C765EAA0714"
  destination = ""
  extendedData = (null)
  faultCode = "Server.Error.Request"
  faultDetail = "Error: [IOErrorEvent type="ioError" bubbles=false
cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL:
http://localhost:37813/1/users/show.xml?screen_name=charagh?hostport=api.twitter.com&https =N&id=A10EF203-C28B-A5C6-73D6-1C765EAA0714"].
URL: http://api.twitter.com/1/users/show.xml?screen_name=charagh"
  faultString = "HTTP request error"
  headers = (Object)#1
    DSStatusCode = 0
  messageId = "542DB993-AA3F-7E05-636C-1C7662BB7FFF"
  rootCause = (flash.events::IOErrorEvent)#2
    bubbles = false
    cancelable = false
    currentTarget = (flash.net::URLLoader)#3
      bytesLoaded = 0
      bytesTotal = 0
      data = ""
      dataFormat = "text"
    errorID = 0
    eventPhase = 2
    target = (flash.net::URLLoader)#3
    text = "Error #2032: Stream Error. URL:
http://localhost:37813/1/users/show.xml?screen_name=charagh?hostport=api.twitter.com&https =N&id=A10EF203-C28B-A5C6-73D6-1C765EAA0714
    type = "ioError"
  timestamp = 0
  timeToLive = 0
===============================================
my code i.e.
==================
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       width="550" height="58" backgroundAlpha="1.0"
backgroundColor="#000000"
                       borderVisible="false" creationComplete="init(event)"
layout="absolute">
          <fx:Script>
                    <![CDATA[
                              import mx.events.FlexEvent;
                              import mx.rpc.events.FaultEvent;
                              import mx.rpc.events.ResultEvent;
                              import mx.controls.Alert;
                              import mx.rpc.http.HTTPService;
                              private var twitterText:String;
                              private var twitterCount:String;
                              private var tweetdate:String;
                              private var twitterImage:String;
                              protected function
image1_clickHandler(event:MouseEvent):void
                                        navigateToURL(new URLRequest("
https://twitter.com/charagh"),"_blank");
                              protected function init(event:FlexEvent):void
                                        twitterText = "charagh";
                                        tweetUser.url="
http://api.twitter.com/1/users/show.xml?screen_name="+twitterText;
                                        tweetUser.send();
                              protected function
tweetUser_resultHandler(event:ResultEvent):void
                                        tweetdate =
event.result.user.status.created_at;
                                        twitterCount =
event.result.user.status.text "  "tweetdate;
                                        twitterImage =
event.result.user.profile_image_url;
                              protected function
tweetUser_faultHandler(event:FaultEvent):void
                                        Alert.show("Can't load data: " +
event.message);
                    ]]>
          </fx:Script>
          <fx:Declarations>
                    <s:HTTPService id="tweetUser" method="GET"
result="tweetUser_resultHandler(event)"
fault="tweetUser_faultHandler(event)">
                    </s:HTTPService>
          </fx:Declarations>
          <s:Image  buttonMode="true" width="48" height="48" x="5" y="5"
click="image1_clickHandler(event)" source=""/>
          <s:Label id="twitterNumber" x="56" y="5" width="488" height="47"
color="#EDEDED"
                               fontFamily="Georgia" fontSize="12"
fontWeight="normal" text=""
                               textAlign="center" verticalAlign="middle"/>
</mx:Module>
===================
Regards,
Asim Ahmed
~ http://www.charag.com ~

updated code: with cross domain policy! but still getting error
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       width="550" height="58" backgroundAlpha="1.0" backgroundColor="#000000"
                       borderVisible="false" creationComplete="init(event)" layout="absolute">
          <fx:Style>
                    @namespace s "library://ns.adobe.com/flex/spark";
                    @namespace mx "library://ns.adobe.com/flex/mx";
                    @font-face{
                              src: url("./module/font/fonts/DroidSans.ttf");
                              fontFamily: "Base02";
                    mx|Alert {
                              titleStyleName: "alertTitle";
                              messageStyleName: "alertMessage";
                              buttonStyleName: "alertButton";
                              cornerRadius: 0;
                              embedFonts: true;
                              fontFamily: Base02;
                              backgroundColor:aqua;
                    .alertButton {
                              letterSpacing: 0;
                              fontSize: 11;
                              cornerRadius: 10;
                              fontWeight: normal;
                              textRollOverColor: white;
                              color: red;
                              skin: ClassReference(null);
                    .alertTitle {
                              letterSpacing: 0;
                              fontSize: 14;
                              color: red;
                    .alertMessage {
                              letterSpacing: 0;
                              fontSize: 10;
                              fontWeight: normal;
                              color: black;
          </fx:Style>
          <fx:Script>
                    <![CDATA[
                              import module.user_logged;
                              import mx.collections.ArrayCollection;
                              import mx.collections.XMLListCollection;
                              import mx.controls.Alert;
                              import mx.events.FlexEvent;
                              import mx.rpc.events.FaultEvent;
                              import mx.rpc.events.ResultEvent;
                              import mx.rpc.http.HTTPService;
                              private var twitterText:String;
                              [Bindable]
                              private var twitterCount:String;
                              [Bindable]
                              private var tweetdate:String;
                              [Bindable]
                              private var twitterImage:String;
                              [Bindable]
                              private var tweetArray:ArrayCollection;
                              [Bindable]
                              private var datalist:XMLListCollection;
                              private var a:Alert;
                              protected function image1_clickHandler(event:MouseEvent):void
                                        navigateToURL(new URLRequest("https://twitter.com/charagh"),"_blank");
                              protected function init(event:FlexEvent):void
                                        Security.allowDomain( "charag.com" );
                                        Security.loadPolicyFile( "./module/crossdomain.xml" );
                                        var request:URLRequest =
                                        new URLRequest( "./module/crossdomain.xml" );
                                        var loader:URLLoader = new URLLoader();
                                        loader.load(request);
                                        twitterText = "charagh";
                                        tweetUser.url="http://api.twitter.com/1/users/show.xml?screen_name="+twitterText;
                                        tweetUser.send();
                                        tweetUser.addEventListener(ResultEvent.RESULT,tweetUser_resultHandler );
                              protected function tweetUser_resultHandler(event:ResultEvent):void
                                        Alert.buttonWidth = 120;
                                        var x:XML = event.result as XML;
                                        var childName:String = "status";
                                        //Alert.show(x.child(childName).text);
                                        yourmessage = x.profile_image_url;
                                        a = Alert.show( yourmessage,title);
                                        a.mx_internal::alertForm.mx_internal::textField.selectable = false;
                                        twitterImage = x.profile_image_url;
                                        twitterText = x.status.text;
                                        tweetdate = x.status.created_at;
                                        twitterCount = twitterText+"  "+tweetdate;
                              protected function tweetUser_faultHandler(event:FaultEvent):void
                                        var faultstring:String = event.fault.faultString;
                                        a = Alert.show(faultstring);
                    ]]>
          </fx:Script>
          <fx:Declarations>
                    <fx:String id="title">Error Message</fx:String>
                    <fx:String id="yourmessage"></fx:String>
                    <s:HTTPService id="tweetUser" useProxy="false" method="GET" fault="tweetUser_faultHandler(event)" resultFormat="e4x">
                                        </s:HTTPService>
          </fx:Declarations>
          <s:Image  buttonMode="true" width="48" height="48" x="5" y="5" click="image1_clickHandler(event)" source="{twitterImage}"/>
          <s:Label id="twitterNumber" x="56" y="5" width="488" height="47" color="#EDEDED"
                               fontFamily="Georgia" fontSize="12" fontWeight="normal" text="{twitterCount}"
                               textAlign="center" verticalAlign="middle"/>
</mx:Module>

Similar Messages

  • Fujitsu tabet m532 usb driver not work with flash builder

    Hi, 
    I have a fujitsu tabet m532 that is not among the list of certified device but has its own of 32 bit usb driver.
    But flash builder 4.5 cannot find the driver.
    The hardware id I try also not work:
    USB\VID_04C5&PID_133A&REV_9999&MI_01
    USB\VID_04C5&PID_133A&MI_01
    Can you help?
    Thanks
    Also, can I just edit the inf file using notepad and make it display line by line or any editor I would need?

    Moving this discussion to the Using Flash Builder forum.

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Captivate 5.5 not working with Flash 11.4?

    I had Flash 11.4 and published a module with click boxes that jump to URLs.  The click boxes don't appear in either preview or published mode.   No hand cursor, no click box, no URL, nothing.  I've double checked the settings on the click boxes three times... they are correct, and the box is the top most thing on the slide.
    Based on advice I found on this forum on other flash problems, I tried uninstalling Flash 11.4 and going back to 10.3.  Now every time I try to launch the module I immediately go to the Flash 11.4 download page, and get the message "this content requires Flash to play - download now".  So apparently you can't install an earlier version of Flash and use it with Captivate.
    Which isn't a solution anyway, because my I don't want my viewers to have to do that to take this training.  So what do I do?  How do I make these urls available?
    I won't waste my time calling Adobe support... I've made that mistake in the past.  I'm really hoping someone here can help me.  Upgrading to Captivate 6 isn't an option...it's not in the budget.   They need to make 5.5 work with Flash - it's not that old.  It's SO frustrating that every time there is a Flash upgrade I have problems with this stupid software.  If they are going to publish to Flash, they need to keep the software current.  They own both products for goodness sake - why don't they work together?   Please help!
    Thanks for your help.
    Toni Rexrode

    I doubt that Flash 11.4 is the cause of these issues.  Having Flash 11.4 installed on your box doesn't mean your end users will need it..  Captivate 5.5 and 6 will only publish as high as Flash 10.2.  So all your end users would need is that version or above.
    I assume when you say you have check the settings on your click boxes, you made sure you have them configured to show the hand cursor?  If this is not turned on then the normal mouse pointer is all that will be visible.  But I'm betting you've checked that already.
    What you may not realise is that sometimes Captivate will APPEAR to show your click boxes are on the top layer of the timeline when you look at it in Edit mode, but in fact they may be buried down under other objects in the layers and NOT be clickable at runtime.  This has caught me out a few times.
    To ensure that your clickboxes ARE on the top layers, select each click box in the timeline and then click the icon on the main toolbar to Bring Selected Objects to the Front.  Then publish and test again.

  • Autocompletion not working in Flash Builder burrito

    Hello!
    What causes could prevent autocompletion from working in Flash Builder burrito? in flash builder 4 it works fine, but not at all in burrito. maybe I changed some settings somehow? If i open Settings->Flash Builder->Editors then "Enable Auto Activation" under "Code Assist" is checked.
    what other reason could there be for that problem?

    Hi,
    Are you using 'Flash Builder Burrito Preview'? You might have faced this known issue https://bugs.adobe.com/jira/browse/FB-28451 . This is fixed in future builds of Flash Builder.
    Workaround is, Click 'Restore defaults' in Preferences->Flash Builder->Editors->ActionScript Code->Content Assist Cycling
    Or Changing workspace.
    Let us know if this workaround solves the issue.
    -Radhakrishna

  • Built in isight camera not working with flash

    My built in isight camera on my macbook works just fine in photobooth and in skype or ichat.. but just in the past week or so, it will not work when im on websites that use flash. I've seen some threads that say that I need to go into settings and make sure that the camera chosen is the USB. When i go into flash settings, the only options are Google1, Google2, or Built in isight. It doesn't work with any of them. Does anyone have any idea how I can make it work again?

    zeppelinfan1234 wrote:
    I don't have google add ons. I followed the path but i have no Google folder in Application Support. Any other suggestions?
    Your problem is not the same as that posted by the OP, and your system info shows you using Mac OS X (10.5.6).
    For your symptoms with this system, I suggest you do the following:
    (1) Apply the 10.5.8 Combo Update using the following process:
      • Backup your Mac and turn off Time Machine
      • Disconnect peripherals and restart Mac
      • Use Disk Utility to repair permissions
      • Download and install
       http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
      • Repair permissions again immediately following the restart that finishes the update.
      • Test whether Flash works for you now.
     (• Turn Time Machine on later when you are satisfied that the update worked.)
    (2) After applying the 10.5.8 Combo, if you are still having problems, download and install the latest Flash player compatible with your system:
      http://get.adobe.com/flashplayer/otherversions/
    Also check any other third-party browser plugins or other add ons. Apply all available updates and uninstall any third-party items that are known to be incompatible with your system.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod touch 4.1

  • Youtube and BBC iPlayer are not working with Flash

    Hi there Guys,
    When I started this search I had a full head of hair :( I have read hundreds and houndreds of webpages talking about Flash and FireFox and at this point I just can't get them to work together.
    I am very reluctant to change my browser as to be honest with you I love Firefox but at this point I am in desperation. I have read webpages which they remove this plug-in and that plug-in, change databases, remove this file and delete that file, called this old and remove that. And still nothing happens it just does not work.
    The version of Firefox I am running 35.0.1
    the version of Flash I am writing is 16.0.0.305
    but every time I try to visit YouTube and/or the BBC's website nothing works HELP!!!!
    I would really just do not know what to do.
    Thank you for reading and I hope somebody can help.
    John

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Webcams Not Working With Flash

    I'm using Windows 8 64 bit, have tried on both chrome and firefox, flash version 11.8.
    I'm trying to broadcast my webcam and audio in flash chat rooms. When I'm prompted to choose my video and audio sources the options show up but they can not be utilized properly.  There isn't an issue with my webcams or mics because they work fine when streamed through encoders or used on Skype.  The problem is specifically with flash chat rooms.  I've uninstalled and reinstalled flash as a program, disabled and enabled as a plugin/add on, deleted the cache.  I'm completely stumped on what the problem is please help I need to get this fixed ASAP.

    Hi Alejandro,
    Things to check:
    1. Do you have the "Select" event coming form the table to display further info?
    2. Does it work with Web Dynpro?
    Did you know that if the compiler option is portal and on deployment you would see 2 deployed versions 1. HTML and the 2. Flex?
    Let me know.
    Good luck,
    Dharmi

  • Line-height not working with flash and css

    I'm using dynamic text in Flash with CSS, but line-height
    doesn't seem to be working with. Is it supported? If not, what is a
    work around to get my text to look they way I want?

    I believe this is due to a corrupt file in your profile. You can confirm this if you create a new temporary Firefox profile ([http://support.mozilla.com/en-US/kb/Managing+profiles managing profiles]) and if the problem disappears.
    To fix this problem (hopefully), do this:
    - access ''about:support'' in your location bar
    - click ''Open Containing Folder''
    - close Firefox
    - delete the file ''downloads.sqlite'' (send it to the recycle bin, if, for any reason, you want to get it back later)
    - start Firefox
    Now the problem should be solved. I believe it's simply a matter of this file having become corrupt. For whatever reason. It's really unfortunate, but I hope this fixes the issue.

  • cfselect not working with flash form

    I have searched the forum and google to find a solution -
    I've tried what's been suggested (ie - mappings of /CFIDE, adding
    /CFIDE to the site root, etc.) nothing has worked. This is only
    happening in my production boxes (two identical setups, running in
    parallel) -
    The form loads, but any options I define inside
    <cfselect> will not show.. here's the basic code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    <cfform name="theForm" format="Flash" width="300"
    height="200" accessible="yes">
    <cfselect label="Type: " name="feedbackType" width="200"
    enabled="yes" required="yes">
    <option value="">Select</option>
    <option value="WEB">Our Website</option>
    <option value="ACCOUNT">Your Account</option>
    <option value="COMPLAINT">A Complaint</option>
    <option value="GENERAL">General Comment</option>
    <option value="OTHER">Other</option>
    </cfselect>
    </cfform>
    </body>
    </html>
    Same code works on my localhost (development box) - so I'm
    sure it's some setting I'm missing or messed up in the production
    servers. I have checked the IIS settings as well as the mappings in
    CF admin, both have /CFIDE defined. I've even added a mapping to
    the /CFIDE within the site root.
    I'm currently running CFMX 7.0.2 on Server 2003 with IIS 6
    Please help!!

    More info...
    When I call the page locally...
    http://flush/testFlash.cfm
    the form works perfectly.
    but when I call the page using the domain...
    http://www.mydomain.com/testFlash.cfm
    the <cfselect> will not work.

  • FireFox 3.6.16 still not working with Flash!

    Since updating to the latest version of FireFox 3.6 I have not been able to watch flash video's on YouTube and other sites, also any flash based content is blank or black.
    I'm using Mac OS X 10.5.8 on a G5 PPC so Flash 10.1.102.64, the latest for PPC Mac's.
    I've gone through all the usual steps of disabling plug-in's and extensions with no luck.
    I'm also using the latest Safari 5 and it is still working with YouTube and other Flash sites.
    ETA - Just found something weird, if I launch the QuickTime Player (not the plug-in) after launching FireFox then Flash appears to act normally, even after quiting QT.

    @cor-el
    Thanks for clearing up my misunderstanding. As i understood now it is in fact only a "DOM storage data" topic.
    Quote from betterprivacy:
    ''"Disabling DOM storage (instead of deleting the file on shutdown) causes a website script to throw an exception. This means that the execution of the script is aborted immediately, not just the DOM storage instruction is ignored. None of the following script instructions would be executed, even if those instructions have nothing to do with DOM storage. That is the reason why -with DOM storage disabled- sites like CNN.com will cease to play videos."''

  • Eventing not working with FLASH

    Hello,
    My VC application events will not work if i choose FLASH(Flex2) in the "Runtime" attribute of the Compiler settings.
    Can anybody give me a hand with this?
    thanks,
    Alejandro.

    Hi Alejandro,
    Things to check:
    1. Do you have the "Select" event coming form the table to display further info?
    2. Does it work with Web Dynpro?
    Did you know that if the compiler option is portal and on deployment you would see 2 deployed versions 1. HTML and the 2. Flex?
    Let me know.
    Good luck,
    Dharmi

  • Sound not working in Flash Builder. Help please.

    So, here's my situation. I keep trying to put an mp3 in Flash Builder to try and make sounds happen, but each time I do it only plays the beginning of it and stops midway through. My music is working at 44100 Hz with a 32 bit rate (tried changing it to 16, but Audition won't let me). Here's my code.
    package
              import flash.display.Sprite;
              import flash.events.Event;
              import flash.events.KeyboardEvent;
              import flash.media.Sound;
              import flash.media.SoundChannel;
              import flash.ui.Keyboard;
              [SWF(width = "550", height = "400",
              backgroundColor = "#FFFFFF", frameRate = "60")]
              public class SoundThing extends Sprite
                        [Embed(source="../sounds/try1.mp3")]
                        private var Try:Class;
                        private var _try:Sound = new Try();
                        private var _tryChannel:SoundChannel = new SoundChannel();
                        public function SoundThing()
                                  stage.addEventListener
                                            (KeyboardEvent.KEY_DOWN, keyDownHandler);
                        public function keyDownHandler(event:KeyboardEvent): void
                                  if (event.keyCode == Keyboard.SPACE)
                                            _tryChannel = _try.play();
    I'm not sure what the issue is. Please help me. Thank you!

    I would say that either the OP needs two tabs somewhere to make his headings and line items align,Exactly what I was thinking. As this sample code illustrates, the b will not line up under Column#2. Perhpas OP needs to use a Formatter or the printf method instead.
        StringBuffer sb = new StringBuffer();
        sb.append("Column#1");
        sb.append("\tColumn#2\n");
        sb.append("a");
        sb.append("\t");
        sb.append("b");
        System.out.println(sb);

Maybe you are looking for

  • Help, my first Apple product.  Is this normal or did I make a mistake?

    Hi I just bought my first ever Apple product ever.  New to me is an old 17 inch iMac (late 2006 build) that according to the serial number was actually assembled in May 2007.  Anyways I hear how Macs never crash....  I bought this on EBAY with only a

  • Webi Error to one of my Users

    Hello Bo Gurus, One of my User is having a weird issue with webi, when the user runs the report and select the drill filter parameter as "???111" he is getting error called" Missing sEntry Parameter" If the same users runs in edit mode it works fine.

  • Web Service Request Xml

    Hi, I have an web service deployed. I wanted to write a client which will show me an sample request xml for any particular operation. Is there any way by that we can generate the request xml by querying the WSDL file. Thanks.

  • Desk top rearranged on reboot

    I just migrated from a 2007 - 2008 iMac to a 2012 iMac (just before the current thinner model). On the 2007 iMac a problem developed. I have it set so that I can place the desktop icons anywhere, in my case I arrange them around a photo in the middle

  • Q:where can I download SQLJ 8.1.6 or later?

    I'm using JDK 1.2.2 and Oracle 8i with SQLJ version 8.1.5, so I've got the "ExceptionInInitializerError: NullPointerException" as described in FAQ. I don't want to download the whole Oracle8i 2.0 (400+MB). I just want to download SQLJ 8.1.6 or later,