Re-Applet deployement

Thank you so much for so prompt reply to m ail "Applet
Deployement" on 31/08/1999.
In your reply to my question(Applet Deployement) on 31/08/99, you
were asking for the location of db. My databse is on a different
server than the web server(i.e the applet i developed on a
different machine then i deployed in on a separate web server and
my db server is separate, and from a client i am requesting for
the html page of the applet). Pl. also clear the following
a) whether I need a separate web server or i can deply it on the
machine where i developed the applet using jdev 2.0.(does jdev
2.0 has any in-built web server?).
b) The applet developed using jdev 2.0 is signed or unsigned.
null

Hi
You would need a webserver to deploy your html/applets.
JDeveloper helps you to build and test the applets using
appletviewer.
You will have to use the standard java utilities to make your
applet signed.
As the applet can only talk to the webserver from where it is
downloaded, you would need install and configure a connection
manager which comes with oracle database on the webserver
machine.
Note: Check Net8/oracle manuals on configuring the connection
manager or search for 'connection manager' in the discussion
groups. I believe this was on the list before.
regards
raghu
Prakash P (guest) wrote:
: Thank you so much for so prompt reply to m ail "Applet
: Deployement" on 31/08/1999.
: In your reply to my question(Applet Deployement) on 31/08/99,
you
: were asking for the location of db. My databse is on a
different
: server than the web server(i.e the applet i developed on a
: different machine then i deployed in on a separate web server
and
: my db server is separate, and from a client i am requesting for
: the html page of the applet). Pl. also clear the following
: a) whether I need a separate web server or i can deply it on
the
: machine where i developed the applet using jdev 2.0.(does jdev
: 2.0 has any in-built web server?).
: b) The applet developed using jdev 2.0 is signed or unsigned.
null

Similar Messages

  • Applet deployement

    Problem Description
    (a) I had first created an applet using the Jdeveloper 2.0
    (jdk 1.2) wizard.
    (b) I had exported connection information(Jdeveloper) from this
    machine.
    (c) I then created a directory "Deployment".
    (d) I copied all the "jar" files, connection export file(of step
    b) and the
    HTML file (created by Jdeveloper while creating the Applet) to
    this
    "Deployement" directory.
    (e) I created another directory "ClassInfo" under this
    "Deployment" directory
    (f) I copied all the applet class files (created in Jdeveloper)
    to this
    directory.
    (All this i have done following the instructions given in
    Jdeveloper help
    for deployment of applets after installing the required plug-ins)
    Now when I am opening the html page (from the "Deployment"
    directory) in the
    Netscape version 4.5, I am getting the following :-
    (a) In the java console it shows loading of plug-ins and then
    asks for
    connection information
    when i enter the connection information and press "OK" I get
    (a1) access denied (java.net.SocketPermission "DB-Server" resolve
    (a2) Invalidating certificate principles in "Deployment
    directory"
    Pl. suggest
    null

    Is the db running on the same machine as the web server? If not,
    an unsigned applet can only connect to a db on the same machine
    as the one serving the applet.
    - PSW
    Prakash P (guest) wrote:
    : Problem Description
    : (a) I had first created an applet using the Jdeveloper 2.0
    : (jdk 1.2) wizard.
    : (b) I had exported connection information(Jdeveloper) from this
    : machine.
    : (c) I then created a directory "Deployment".
    : (d) I copied all the "jar" files, connection export file(of
    step
    : b) and the
    : HTML file (created by Jdeveloper while creating the Applet) to
    : this
    : "Deployement" directory.
    : (e) I created another directory "ClassInfo" under this
    : "Deployment" directory
    : (f) I copied all the applet class files (created in Jdeveloper)
    : to this
    : directory.
    : (All this i have done following the instructions given in
    : Jdeveloper help
    : for deployment of applets after installing the required
    plug-ins)
    : Now when I am opening the html page (from the "Deployment"
    : directory) in the
    : Netscape version 4.5, I am getting the following :-
    : (a) In the java console it shows loading of plug-ins and then
    : asks for
    : connection information
    : when i enter the connection information and press "OK" I get
    : (a1) access denied (java.net.SocketPermission "DB-Server"
    resolve
    : (a2) Invalidating certificate principles in "Deployment
    : directory"
    : Pl. suggest
    null

  • Weird wsdl quirk in IE

    I've got a list of categories that I display. When the user
    selects a category it calls a webservice to fetch the results for
    that category, pretty straightforward. We see some odd behavior in
    IE when you click the categories in quick succession one after the
    other (however I disable the selector after each click until the
    result returns so you cant go super click happy, each call takes
    1-3 secs to return)...sometimes it returns no results. Its a
    totally sporadic error, it probably only occurs once every 20-25
    times and we've only been able to produce it in IE (both 6 and 7),
    never in FF. I ran fiddler to try to diagnose the problem and
    here's what I found.
    Each webservice call is by necessity two calls, the discovery
    call that fetches the wsdl and the method call where you call your
    actual webservice method and get your results back. On the calls
    that fail the wsdl call never goes thru which explains why we get
    no results. But I'm not getting any errors either, I have an event
    handler where I try to trap the error like this:
    service.addEventListener( FaultEvent.FAULT, gotoError );
    but nothing...this sounds like a flash player issue in
    IE...anyone ever experienced this or can an Adobe guru chime in?
    thanx

    From the plug-in developer guide.. are you doing the following ??
    ========
    To strongly enforce the version update, it is recommended that the applet deployer use the cache_version attribute.
    If cache_version is used, applet caching will be updated if the cache_version for the cache_archive is larger than the one stored locally in the applet cache. Note that the version number is used for triggering an update; there is no actual version number attached to the .jar file on the web server. In fact, unless version is used to trigger an update, it is possible the applet on the web server could be updated without the applet in cache_archive.
    Using cache_version eliminates the need to connect to the web server to obtain "Modification-Date" and "Content-Length" of the cache_archive. In most cases this will speed up performance.
    ========

  • How do you close a dragged applet, as Stage.close() doesn't work?

    I'm trying to implement a close button in a draggable applet, but Stage.close() doesn't work, and there's an odd little "X" icon which is causing me problems...
    My starting point and example is the simple draggable applet from the API documentation. It's the code listed under "User-Specified Close Example":
    http://java.sun.com/javafx/1.2/docs/api/javafx.stage/javafx.stage.AppletStageExtension.html
    import javafx.scene.*;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.text.*;
    import javafx.stage.*;
    var textContent = "Click the box to return to the browser";
    var outside: Boolean = false;
    var s: Stage = Stage {
        title: "AppDeploy Demo"
        width : 300 height : 200
        style: StageStyle.TRANSPARENT
        opacity: 0.5
        scene : Scene {
                content: [
                    Text { content: bind textContent 
                           x: 25 y:35 fill: Color.BLACK
                           font: Font{size: 24}
                    Rectangle { x: 100 y: 100 width: 100 height: 100 fill: Color.RED
                                onMouseClicked: function(e: MouseEvent): Void {
                                    s.close();
        extensions: [
            AppletStageExtension {
                shouldDragStart: function(e: MouseEvent): Boolean {
                    return e.shiftDown and e.primaryButtonDown;
                useDefaultClose: false
    }However, the Stage.close() function in the user code doesn't seem to close the applet once it's dragged. It seems this can only be achieved by a mysterious little "X" in a box top right, acting as a close button.
    Here's a demonstration of the problem once you've compiled that code:
    1. Open browser with applet (I'm using IE8 on Windows XP)
    2. Shift-drag the applet out of the browser. Notice the little X in a box appears when you drop the applet on the desktop.
    3. Click the red rectangle to invoke the Stage.close() function in the user code.
    4. Applet disappears from screen and does not reappear in the browser.
    5. But minimising all the icons on the desktop shows the little X in a box is still there sitting on your desktop (actually I find the X has gone, but the box is still there). This suggests the applet is still running.
    6. Close the browser. The little X's box is still on the desktop.
    7. After a short pause a Java dialog box appears: "Desktop integration warning. The application would like to create shortcuts. Do you want to continue? OK/Skip" The applet wasn't closed, it is still running!
    8. Click Skip. Dialog box disappears. But the little X's box is still on the desktop. Is the applet still running?
    9. Try to recompile app again into a deployable Jar (I'm using Eclipse for this).
    10. The compiler stops with "ERROR: Jar file C:\[...].jar could not be deleted. The Jar is probably locked by running application, Web browser, emulator or antivirus. Please check that all windows related to the application have been closed." Yes, the applet Jar is still being used.
    11. Minimise all the windows. The little X's box is still on the desktop.
    12. Click the little X's box.
    13. After a few seconds the box disappears. Does this mean the applet is no longer in use...?
    14. Recompile the app again into a deployable Jar. It works!
    By the way, you get the same experience with another Sun sample: the DraggableMP3Player at
    http://javafx.com/samples/DraggableMP3Player/index.html
    That, too, thinks it's implementing it's own close button, and again the same problem occurs.
    So it seems Stage.close() doesn't properly close the applet, and only the the little X in a box will do this.
    I'd like to be able to really close the applet from my own code. How can I do this?
    Many thanks
    Nik
    Edited by: nik.silver on Aug 6, 2009 12:48 PM

    After double tap home button, swipe up on the app card that appears above the icon.

  • How to make my applet run in eclipse browser..?

    I wrote an applet and it works fine when it is run as an applet in eclipse galileo.I need to embed it in a web page.I have searched this forum but unable to find adequate information.It is also not reporting any errors.Html file looks as below
    <html>
    <head>
    <title>Echo Applet</title>
    </head>
    <body><h1>This is an example of applet</h1>
    <applet code=com.mypackage.EchoApplet.class width="400" height="400"></applet>
    </body>
    </html>Directory structure is as below
    MyFirstApplet
           ->Java Resources:src
                 ->com.mypackage
                          ->EchoApplet.java
                 ->Libraries
          ->WebContent
                ->META-IMF
                          ->MANIFEST.MF
                ->WEB-INF  
                          ->lib
                          ->web.xml
                ->MyFirstApplet.htmlConsole of html file shows as below
    26 Aug, 2009 8:09:04 AM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8084
    26 Aug, 2009 8:09:04 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 2036 ms
    26 Aug, 2009 8:09:04 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    26 Aug, 2009 8:09:04 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.0.25
    26 Aug, 2009 8:09:04 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    26 Aug, 2009 8:09:06 AM org.apache.catalina.core.StandardHost getDeployer
    INFO: Create Host deployer for direct deployment ( non-jmx )
    26 Aug, 2009 8:09:06 AM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8084
    26 Aug, 2009 8:09:06 AM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8085
    26 Aug, 2009 8:09:06 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/53  config=null
    26 Aug, 2009 8:09:06 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1992 msany clue of where i might have gone wrong??Thanks in advance..!

    hello,
    the very first thing is the html console always look the one which you have posted here.it tells that server is started.
    directory structure is also ok.
    wi think the problem lies in the html file.After defining applet class you have to specify the jar file of your appletin the mannerarchive = "yourapplet.jar" have you any libraries with your applet? if yes then you have to include it in archive information
    i would like to know when you run this application does internet explorer opens if yes then can you tell me the error it is giving

  • JavaFX Applet not loading in IE. How can i make it work in IE?

    My helloWorld JavaFX applet is not loading in IE, It does however load in firefox. Can anyone give me any advice on why it does not load in IE?
    Below is the log from the console when attempting to load in IE.
    exception: null.
    java.io.FileNotFoundException: JNLP not available: HelloApplet_browser.jnlp
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.FileNotFoundException: JNLP not available: HelloApplet_browser.jnlp
    I have also include the HTML I have used.
    <html>
    <head>
    <title>Wiki</title>
    </head>
    <body>
    <h1>Wiki</h1>
    <script src="http://dl.javafx.com/dtfx.js"></script>
    <script>
    javafx(
    archive: "HelloApplet.jar,javafxrt.jar,Scenario.jar",
    draggable: true,
    width: 150,
    height: 100,
    code: "HelloApplet",
    name: "Wiki"
    </script>
         END     compliled
    </body>
    </html>
    Edited by: CaptainRhino on Dec 17, 2008 8:26 PM

    Like any good developer I have fixed my problem.
    This blog gave me some clues and I think it comes down to how i have built and deployed it.
    http://lexique-du-net.com/blog/index.php?post/2008/12/08/Deploy-a-JavaFX-app-as-an-applet-with-the-Java-Deployement-Toolkit
    In the meantime to see it work in a browser i have opened it offline and just opened the html page that was in my dist folder created by netbeans.

  • JavaFX + Applet Troubles

    Hey guys, you all have done a great job of answering my questions thus far, but I've got a couple architectural issues I'm trying to get through and would like some expert advice on what's going on.
    First of all, it would seem as though the absolute minimum required to get a JavaFX applet up and running is a download (presuming you haven't already run an applet using JavaFX) of a bit over 3 meg. This seems like a pretty hefty payload requirement...is there anything that be done to cut back on the initial loading cost?
    Second, I am scaling my content and it would seem as though the SwingTextField gets very odd mouse text selection issues when scaled up. Is there anything I can do fix that?
    Third, I'm getting errors every ~10th time I run the application. This inconsistency is rather worrisome. I get similar trouble when running as an Applet where it shows me the "Java downloading cycle progress display thingy" and just sits there spinning, but if I hit refresh in the browser it immediately launches the app the second time around. I'm launching via JNLP using the new JavaScript commands Sun provides.
    Thanks!

    Like any good developer I have fixed my problem.
    This blog gave me some clues and I think it comes down to how i have built and deployed it.
    http://lexique-du-net.com/blog/index.php?post/2008/12/08/Deploy-a-JavaFX-app-as-an-applet-with-the-Java-Deployement-Toolkit
    In the meantime to see it work in a browser i have opened it offline and just opened the html page that was in my dist folder created by netbeans.

  • Problem with threads within applet

    Hello,
    I got an applet, inside this applet I have a singleton, inside this singleton I have a thread.
    this thread is running in endless loop.
    he is doing something and go to sleep on and on.
    the problem is,
    when I refresh my IE6 browser I see more than 1 thread.
    for debug matter, I did the following things:
    inside the thread, sysout every time he goes to sleep.
    sysout in the singleton constructor.
    sysout in the singleton destructor.
    the output goes like this:
    when refresh the page, the singleton constructor loading but not every refresh, sometimes I see the constructor output and sometimes I dont.
    The thread inside the singleton is giving me the same output, sometime I see more than one thread at a time and sometimes I dont.
    The destructor never works (no output there).
    I don't understand what is going on.
    someone can please shed some light?
    thanks.
    btw. I am working with JRE 1.1
    this is very old and big applet and I can't convert it to something new.

    Ooops. sorry!
    I did.
         public void start() {
         public void stop() {
         public void destroy() {
              try {
                   resetAll();
                   Configuration.closeConnection();
                   QuoteItem.closeConnection();
              } finally {
                   try {
                        super.finalize();
                   } catch (Throwable e) {
                        e.printStackTrace();
         }

  • Open web pages from an applet

    I'm developing an applet that has to open some web pages.
    The only way I know is to use the method showDocument that
    needs and URL. So, how to pass parameters to the web page?
    I don't want to put them in the URL: everyone can see
    "secret data"!
    Help me, please.

    Take a look at this example that uses a JEditor pane to hold the HTML page.
    //Create a new JEditor Pane
    jep = new JEditorPane( );
    //Ensure the pane is not editable
    jep.setEditable(false);  
    //Use this to get local HTML file
    URL fileURL = this.getClass().getResource("Manual/Manual.htm");
    //add the html page to the JEditorPane
    jep.setPage(fileURL);Ok the core line of code here is this.
    URL fileURL = this.getClass().getResource("Manual/Manual.htm");The standard method for accessing a html file via a URL is thus. As you can see its very similar.
    URL fileURL = new URL("http://www.comp.glam.ac.uk/pages/staff/asscott/progranimate/docs/Manual/Manual.htm");this.getClass().getResourse() will return the file location of the class you are working with.
    By doing the following you can access manual.html in a folder called Manual that sits in the same file location as the class file you are using.
    URL fileURL = this.getClass().getResource("Manual/Manual.htm");I hope this helps.
    Andrew.

  • Unable to load database driver from my applet's jar file

    I'm trying to set up an applet that will talk to a MySQL database. I have no problem connecting to the database as I'm developing the code ("un-jarred"), but when I create a jar file of my code to test through a web browser, I cannot connect to the database due to the usual ClassNotFoundException. I have included mysql-connector-java-3.1.12-bin.jar (the current driver) in the jar, but I don't know if I'm supposed to supply some info through an attribute to the applet tag to let it know that the jar contains the driver it needs or if I have to call the driver differently in my code.
    Any help is appreciated, thanks.

    The simplest approach is always the best. :)Abso-lutely.
    Awesome, that worked perfectly. I Included the extra
    jar file in the applet tag and now my applet makes
    some sweet lovin' to the database.And you have succeeded where thousands have failed. Congratulations.

  • Applet java file not refreshing in browser

    I have an applet that I am updating and I am not seeing the corresponding update when I open the web page. I can manually download the java class file and look inside it and it definitely is the updated file. I have deleted the browser history. (I am running tests with Firefox 3, IE7, and Safari 4 public beta). Is there something else I need to do to make sure the browser pulls in the latest version of the class file referenced in the html?
    Here is the code:
    <HTML>
    <HEAD>
       <TITLE>A Simple Program</TITLE>
    </HEAD>
    <BODY>
       <CENTER>
          <APPLET CODE="SendRequest.class" WIDTH="500" HEIGHT="150">
          </APPLET>
       </CENTER>
    </BODY>
    </HTML>The applet refers to a hard coded URL to read through a urlconnection. It is always reading a file and showing content, but it is not showing the right file. If I change the name of the referenced file in the java program, it looks like the browser has cached the referred file, rather than throwing and error and saying the file doesn't exist.
    Here is the java
    import java.applet.*;
    import java.awt.*;
    import java.net.URLConnection;
    import java.net.URL;
    import org.w3c.dom.Document;
    import java.lang.String;
    import java.io.*;
    public class SendRequest extends Applet {
        @Override
        public void paint(Graphics g) {
            g.drawRect(0, 0, 499, 149);
            g.drawString(getResponseText(), 5, 70);
        public String getResponseText() {
            try {
                URL url = new URL("http://myserver.com/stats/logs/ex20090603000001-72.167.131.217.log");
                URLConnection urlconn = url.openConnection();
                BufferedReader in = new BufferedReader(
                                    new InputStreamReader(
                                    urlconn.getInputStream()));
                String inputLine;
                String htmlFile = "";
                try {
                    while ((inputLine = in.readLine()) != null)
                        htmlFile += inputLine;
                    in.close();
                    return htmlFile;
                } catch (Exception e) {
                    return "Can't get the string.";
            } catch (Exception e) {
                return "Problem accessing the response text.";
    }Any help would be appreciated. I heard that some files may cache more persistently than others, but I don't fully understand the details.
    Thanks,
    Jim

    Check this [document loader example|http://pscode.org/test/docload/] & follow the link to sandbox.html for tips on clearing the class cache. That relates specifically to caching a refused security certificate, but class caching is much the same. As an aside, getting a console can be tricky in modern times (unless the applet fails completely). It is handy to configure the [Java Control Panel|http://java.sun.com/docs/books/tutorial/information/player.jnlp] to pop the Java console on finding an applet (Advanced tab - Settings/Java Console/Show Console).
    Of course there are two better tools for testing applets, especially in regard to class caching. AppletViewer and Appleteer both make class refresh fairly easy. Appleteer is the better of the two. I can tell you that with confidence, since I wrote it. ;-)

  • EJB 3.0 - Communicate an Applet with a Session Bean

    Hello
    I'm developing an EJB 3.0 app (eclipse and glassfish tools bundle), and I have an applet that has to use remote session beans.
    QUESTION: Is it possible for the applet to connect to EJB?
    QUESTION: By creating a J2EE application client project, can I use @EJB annotations to inject the session bean directly to the applet, avoiding the JNDI lookup?
    (since I imagine that the anwser to the second one is NO, I do the following consideration)
    Given an application client project, I imagine that this application can run remotely on a client machine/JRE. Then this application can use Annotations/injection facilities whenever it runs on a J2EE client container (which I assume consists of a set of libraries provided by the application server vendor, Glassfish in that case). Could this application be deployed using Java Web Start? If so, why can't it be deployed as an applet? (both options run in a client JRE, don't they?).
    QUESTION: In either case (applet or JWS), how do I have to package the JAR file (using Eclipse) so that it contains the needed libraries for accessing the EJB? Which are those libraries?
    At the time being, I'm trying to implement a sample application that follows the "Applet doing JNDI lookup" approach. I have:
    - an EAR project
    - an EJB project (containing an Entity Bean and a Stateless Session Bean with a @Remote interface)
    @Remote
    public interface HelloRemote {
         public String hello(String name);
    @Stateless
    public class Hello implements HelloRemote {
         @Override
         public String hello(String name) {
              return "Hello "+name+"!!";
    }- an Application Client project (containing the applet code):
    public class ClientApplet extends JApplet {
         public void init(){     
              try {
                   Context jndiContext = getInitialContext( );
                   HelloRemote server = (HelloRemote) jndiContext.lookup(HelloRemote.class.getName());
                   setContentPane(new JLabel(server.hello("Gerard")));
              } catch (NamingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         private Context getInitialContext() throws NamingException{
              Properties props = new Properties();
              props.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
              props.setProperty("org.omg.CORBA.ORBInitialHost", "myhost");
              props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
              return new InitialContext(props);
    }- a static web project (with a sample web page that contains the applet object the corresponding applet JAR file)
    I tried to export the Application Client project as an "application client JAR", in the hope that the java EE libraries bundled with glassfish (listed as libraries of this project) would be packaged too.
    No success, so now I'll try to copy all the JAR files (one by one) into the +\WebContent\+ folder of the Web Project, and add references to each of them in the archive="" attribute of the +<applet>+ HTML tag. Although this might work, I suspect that I am missing the good/easy way of doing it. Any suggestions?
    Thanks in advance,
    Gerard
    Edited by: gsoldevila on May 6, 2009 7:09 AM

    An Applet can communicate with an EJB via JNDI lookup but I would (personally) use an intermediate Servlet to handle this. Client to Servlet communication is http whereas to ejb is iiop - which might be blocked.
    Injection only works in managed classes (EJB, Servlet, Listeners..) and an Application Client main class. So yes you could use an app client for handling resource injection.
    m

  • Error while accessing a public method of applet from javascript.

    Hi,
    I am getting "Object doesn't support this property or method" error
    when accessing a public method of applet from javascript in IE 6 using
    document.applets[0].myMethod();
    The same is working in IE 7.
    Thanks in advance.
    Regards,
    Phanikanth

    I don't know why it happens, but this works for me in both versions:
    <applet ..... name="MyApplet">
    </applet>and in javascript use
    document.MyApplet.myMethod()

  • Error while creating a deployable proxy for a URL in NWDS

    Hi ,
    There is a requirement for calling a webservice in the .NET platform from JAVA using NWDS. The webservice of the server is pinged using the URL of the webservice. when the URL is passed in the WS navigator of CRD ( that is Development Server) ,  the response is retreived successfully .  The version of NWDS is 7.0.23.
    we are facing problem when we are trying to create a Deployable proxy in NWDS by using the following steps :
    1) Create a Development Component
    2) Select the Deployable Proxy
    3) Create the Client Proxy Defintion of the created DC
    At step 3 , when we giving the url or WSDL link  like "http:// www3.authoring.syngenta/newswebservice.asmx?WSDL" (this is just for example) , it is showing as "Invalid wsdl or wsdl not found " . so  that we are not able to procees further.
    When we are trying to create proxy the for the WSDL link like " http:// www.authoring.syngenta/newswebservice.asmx?WSDL" , we are able to create successfully.
    can anyone suggest why we are able to create the proxy for the URL "http:// www.authoring.syngenta/newswebservice.asmx?WSDL" and not for the other URL.
    Any pointers or suggestions are very helpful.
    Thanks and Regards,
    Sreedevi

    Late response I know, but I have solved a similar problem recently and thought I would share.
    Firstly, the problem is not with the namespace. The "Namespace ..." part is just stating the namespace the "Incorrect Value" has. So this error is complaining about the value "Unknown" - which isn't very helpful.
    It appears the SAP SE80 importer does not like elements like the following because it can't understand <s:element ref="s:schema" />. It appears this is a common thing to be included in .NET generated WSDLs.
     <s:element minOccurs="0" maxOccurs="1" name="GetCursDynamicResult">      <s:complexType>          <s:sequence>               <s:element ref="s:schema" />               <s:any />          </s:sequence>     </s:complexType></s:element> 
    SAP will also not like this example as it does not support mixed content (see: http://www.w3schools.com/schema/schema_complex_mixed.asp)
    <s:element minOccurs="0" maxOccurs="1" name="SaldoXMLResult">
         <s:complexType mixed="true">
              <s:sequence>
                   <s:any />
              </s:sequence>
         </s:complexType>
    </s:element>
    You can "Fix" the problem in both cases by removing the offending text in a local copy of the WSDL file so remove line 4 in the first example and change line 2 in the second to <s:complexType> the proxy can then be generated. No idea if the resulting service will be fully operational though!

  • Can not view applet in browser (IE5.5)

    only my appletviewer shows my very simple applet.
    in the IE5.5 i can not view my applet... ?
    my applet just have write a string...
    any help ?

    http://forum.java.sun.com/thread.jsp?forum=31&thread=276607

Maybe you are looking for

  • Blue Screen when waking PC up while iPod connected

    Can anybody help here? Often, when I wake my PC from a low-power state I get a BSOD (Blue Screen of Death). The cause is usbaapl.sys. Any ideas of what I can do?

  • Is it possible to save a completed form?

    We would like to be able to save a completed registration/application form in PDF format as well as receive the spreadsheet data for our online database.   It is imperative that hard copies be utilized for portfolios. Thank you, Melanie

  • How to delete saved templates in Illustrator CS4?

    Hello, Inadvertently I created hundreds of documents that were saved as templates.  In addition I saved them as pdf's, which was the proper format I needed. I have been unsuccessful in deleting the templates (which are no longer needed and taking up

  • HDMI --- DVI lacks ability to use audio

    I bought an adapter cable that has HDMI on one end and DVI on the other. I got it in place and then realized that audio does not get carried through this cable. So do they make a cable that has HDMI on one end with DVI AND RCA audio cables on the oth

  • Trial version of CS6 Master Collection keeps asking me to validate a serial number.

    I downloaded the trial version of CS6 Master Collection for Windows. I installed it as a trial on a 64 bit windows machine. When I try to run any application, I am asked to validate a serial number even though none has ever been entered. I uninstalle