Use XE and HTML DB as a public web service?

Is this advisable? (max 50 concurrent users)
How do i tell XE/html db to respond with the right application when the user asks for www.xxxxxx.com
By default you get the page:
Index of /
Name
i/ Mon, 14 Nov 2005 12:21:21 GMT
public/ Mon, 10 Oct 2005 20:28:44 GMT
sys/ Mon, 10 Oct 2005 20:28:54 GMT

Is this advisable? (max 50 concurrent users)<br><br>
You might need to clarify your question - are you are asking if XE/HTML DB will adequately run an internet website with 50 concurrent users? The answer is - yes (depending on the application of course ;) )
<br><br>
How do i tell XE/html db to respond with the right
application when the user asks for www.xxxxxx.com<br><br>
XE contains its own web server in the database as part of the XDB so that you no longer need to run the apache webserver. I suggest the XDB listener is principally intended to provide access to database schemas and stored procedures (one of which provides access to the HTMLDB application that you see on the GUI), rather than act as a fully blown webserver like Apache with its features.
<br><br>
Aspects of the listener (http port, folders etc) can be managed within the database programmatically by using the package dbms_xdb You can also allow access to other database schemas directly by placing calls to the dbms_epg package.
<br><br>
Perhaps someone can correct me, but I can't see anything for configuring virtual hosts in the xdb listener, so if you want that sort of functionality, you might want to look at Re: Change Database Homepage Port in front of XE for that purpose.
<br><br>
HTH,
<br><br>
Mike

Similar Messages

  • Render and Email SSRS reports via SOAP/Web Services

    Hi all
    Running SQL Server 2008 R2 RTM and wondering if the ReportExecution2005.asmx web service can be used to render AND email a report all within the web service (ie. Not wanting to render the report and then having to email it manually). Since RS has the capability
    to email via report manager schedule, wondering if this can be achieved programmatically.
    George

    Hi George,
    In Reporting Services, it supports us to use ReportExecution2005 web service to render a report as MHTML or other formats. And we can use ReportingService2010 web service to subscribe and delivery report. The Reporting Services Execution
    Web service allows developers to programmatically process and render reports from a report server.
    The ReportingService2010 Web service allows developers to programmatically create a subscription in the report server database.
    To process a specific report and render it in the specified format, we can use the “Render” method in the ReportExecutionService. To create a subscription, we can use “CreateSubscription” method in ReportingService2010.
    References:
    Report Server Web Service Methods
    ReportingService2010.CreateSubscription Method
    ReportExecutionService.Render Method
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • TS4055 How do I use my MacBook Air to access the Amazon Web Service?

    How do I use my MacBook Air to access AWS (Amazon web Service)?  The information provided to me by Apple Care seems to be about allowing outside access to my MacBook.

    Sorry, but does this relate to Apple Remote Desktop, Apple's software for managing networked Macs, in some way? If so, how are you using ARD in relation to Amazon's services?

  • Error While Consuming Public Web Service through Stand Alone Proxy

    Hi,
    I am getting the below error when I am consuming a public web service through Stand Alone Proxy.
    java.rmi.RemoteException: Service call exception; nested exception is:
         com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (407) Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  ).
         at com.mindtree.examples.GlobalWeatherSoapStub.getCitiesByCountry(GlobalWeatherSoapStub.java:159)
         at com.mindtree.examples.GlobalWeatherSoapStub.getCitiesByCountry(GlobalWeatherSoapStub.java:168)
         at com.mindtree.examples.WebServiceClient.main(WebServiceClient.java:18)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (407) Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  ).
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:903)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1346)
         at com.mindtree.examples.GlobalWeatherSoapStub.getCitiesByCountry(GlobalWeatherSoapStub.java:152)
         ... 2 more
    Regards,
    Venkatesh

    Hi,
    I am still facing the same issue.
    Regards,
    Venkatesh

  • DW crashes when I use PHP and HTML

    Hi, I need to use PHP with DW to validate a form.
    However, when I use PHP with HTML DW crashes. I use a PHP
    script to to select the correct radio button when the form is
    submitted (see below).
    It works fine in the browsers and I can even edit in Notepad.
    I am not sure how to solve this - I altered the DTD from
    strict to transitional (it didn't work). I am using the latest
    version of DW CS3.
    Any ideas?
    <dt>How did you find out about the site?</dt>
    <dd>
    <label for="how_did_you_find_out_about_the_site1">
    <input name="how_did_you_find_out_about_the_site"
    id="how_did_you_find_out_about_the_site1" type="radio"
    value="Link_from_another site" <?php echo
    ($_POST["how_did_you_find_out_about_the_site"] ==
    "Link_from_another site") ? "checked=checked" : "";?> />
    Link from another site</label>
    </dd>
    <dd>
    <label for="how_did_you_find_out_about_the_site2">
    <input name="how_did_you_find_out_about_the_site"
    id="how_did_you_find_out_about_the_site2" type="radio"
    value="Read_about_it_in a_booklet_or_card" <?php echo
    ($_POST["how_did_you_find_out_about_the_site"] == "Read_about_it_in
    a_booklet_or_card") ? "checked=checked" : "";?> />
    Read about it in a booklet/card</label>
    </dd>
    <dd>
    <label for="how_did_you_find_out_about_the_site3">
    <input name="how_did_you_find_out_about_the_site"
    id="how_did_you_find_out_about_the_site3" type="radio"
    value="Recommended_by_my tutor" <?php echo
    ($_POST["how_did_you_find_out_about_the_site"] ==
    "Recommended_by_my tutor") ? "checked=checked" : "";?> />
    Recommended</label>
    </dd>
    <dd>
    <label for="how_did_you_find_out_about_the_site4">
    <input name="how_did_you_find_out_about_the_site"
    id="how_did_you_find_out_about_the_site4" type="radio"
    value="Found_it_when_I_used_the_search" <?php echo
    ($_POST["how_did_you_find_out_about_the_site"] ==
    "Found_it_when_I_used_the_search") ? "checked=checked" : "";?>
    />
    Found it when I used the search</label>
    </dd>
    <dd>
    <label for="how_did_you_find_out_about_the_site5">
    <input name="how_did_you_find_out_about_the_site"
    id="how_did_you_find_out_about_the_site5" type="radio"
    value="Other" <?php echo
    ($_POST["how_did_you_find_out_about_the_site"] == "Other") ?
    "checked=checked" : "";?>/>
    Other</label>
    <label
    for="how_did_you_find_out_about_the_site6">(please specify)
    <input name="how_did_you_find_out_about_the_site_specify"
    id="how_did_you_find_out_about_the_site6" type="text"
    value="<?php echo ($_POST["how_did_you_find_out_about_the_site"]
    == "Other") ? $_POST["how_did_you_find_out_about_the_site_specify"]
    : "";?>"/>
    </label>
    </dd>

    Steve84 wrote:
    > Hi, I need to use PHP with DW to validate a form.
    >
    > However, when I use PHP with HTML DW crashes.
    http://www.adobe.com/go/kb402776
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How to get or show multiple record data pagewise using JSPBean and HTML

    Hi ,
    I am using JSP bean for getting the data from database and html toe present the data.
    The problem is when the user inputs data
    in the search field and clicks on Search button ,i need to get all matching rows fromw the database ,which i am already getting.
    Now if i have got suppose 100 rows i need to show 6 recrods on each page the rest should be shown when the user clicks NEXT or PREV buttons.
    example
    Name: input data here
    Description: input data here
    SEARCH Button
    Show here the first 6 records
    PREV 1 2 3 4 5..... NEXT
    The page will look somewhat like this.
    So the rows will be shown just below the search fields .If i am getting more than 6 record i should show PREV and NEXT with the number for each page holding 6 records.
    Have anybody worked on such thing can you help me out .
    Thanks

    Hi This may help, Previous does not work properly, coz I didnt find much difficult to code so you can build on your own from Next option logic
    Here is the code. Here and there couple of probs exist but they are solvable easily,
    <HTML>
    <%@ page language="java"
         import="
         java.util.* "
    %>
    <%!
         Vector customers;
    %>
    <%!
    void dummyMethod()
         customers = new Vector();
         for (int i=0;i<30;++i)
              // Prints only one time when browser opened first time.
              System.out.println("I:"+i);
              customers.add(i+"");
    %>
    <body>
    <script language=JavaScript>
    function getNextRows(begin,end)
         document.frmPage.begin.value = begin;
         document.frmPage.end.value = end;
         document.frmPage.which.value = "next";
         document.frmPage.action = "getRows.jsp";
         document.frmPage.method="post";
         document.frmPage.submit();
    function getPrevRows(begin,end)
         document.frmPage.begin.value = begin;
         document.frmPage.end.value = end;
         document.frmPage.which.value = "prev";
         document.frmPage.action = "getRows.jsp";
         document.frmPage.method="post";
         document.frmPage.submit();
    </script>
    </body>
    <%! int x = 0; %>
    <HEAD>
    <TITLE>Customer Account Information</TITLE>
    <META HTTP-EQUIV="Expires" CONTENT="0">
    </HEAD>
    <BODY BGCOLOR = "#FFFFFF" >
    <form name=frmPage>
    <input type=hidden name="begin" value="0">
    <input type=hidden name="end" value="10">
    <input type=hidden name="which" value="">
    <H2 ALIGN="CENTER"><FONT COLOR="#000099">Customer Account Information</FONT></H2>
    <H2><FONT COLOR="#000099"></FONT></H2>
    <P>
    <TABLE BORDER="1" cellpadding="0" cellspacing="0" WIDTH="80%" ALIGN="CENTER">
    <TR>
    <TD WIDTH="10%" BGCOLOR="#CCCCFF"><FONT FACE="Italic">Acct# </FONT> </TD>
    </TR>
    <%
    int begin = Integer.parseInt((request.getParameter("begin")==null)?"0":request.getParameter("begin"));
    int end = Integer.parseInt((request.getParameter("end")==null)?"10":request.getParameter("end"));
    int max=0;
    if (request.getSession(false).isNew() ||
    request.getSession(false) == null)
         dummyMethod();
    max = customers.size();
    String     which = (request.getParameter("which")==null)?"next":request.getParameter("which");
    if (which.equals("next"))
         for (x = begin; x < max && x <= end; ++x)
              out.println("<TR>"+
                   "<TD WIDTH='50%' BGCOLOR='#CCFFCC'>"+customers.elementAt(x)+"</TD>"+
                   "</TR>");
         begin = end;
         end +=10;
    else
         for (x=begin; x <max &&x <= end; --x)
              out.println("<TR>"+
                   "<TD WIDTH='50%' BGCOLOR='#CCFFCC'>"+customers.elementAt(x)+"</TD>"+
                   "</TR>");
         end = begin;
         begin -=10;
    %>
    </TABLE>
    <%
         if (begin == max)
              out.println("<tr><td>Next  <a href='javascript:getPrevRows("+begin+","+end+")'>Previous </a></td></tr>");
         else
              out.println("<tr><td><a href='javascript:getNextRows("+begin+","+end+")'>Next </a></td></tr>");
    %>          
    </BODY>
    </HTML>

  • Axis securing seemingly public web services

    Hi,
    Their may be an obvious answer to this question, but I've done some searching and come up blank so far.
    I am wondering if you can restrict which domains are allowed to access the web services on your axis web application (I am running axis on tomcat).
    It is my understanding that anyone who know the address of a servlet that generates a WSDL file will be able to consume this service. I want to be able to prevent this and only allow my own domain access to web service.
    Any advice would be most appreciated.
    :|

    use HTTP basic authentication? In addition if you don't want the public internet to access it, hide it behind a firewall.

  • Using interfaces as input or output parameters in web service

    hello
    I searched the web looking for a clear answer wether my web service
    can return or receive an interface (when using rpc), but i haven't got one.
    My web application methods were designed to return interfaces, so now
    i'm having a problem creating web services from those methods.
    Do i have to change my application to fit the web services spec?
    Amir

    Hello,
    If your backend components use non-built-in data types as parameters or
    return values, you must create the Java code of the data type and then
    create or generate the serialization class that converts the data
    between XML and Java. See:
    http://edocs.bea.com/wls/docs81/webserv/implement.html#1068229
    The supported Java non-built-in data types are listed here:
    http://edocs.bea.com/wls/docs81/webserv/assemble.html#1068595
    If you have a short example would be helpful to see what you are
    building.
    Regards,
    Bruce
    WL wrote:
    >
    hello
    I searched the web looking for a clear answer wether my web service
    can return or receive an interface (when using rpc), but i haven't got one.
    My web application methods were designed to return interfaces, so now
    i'm having a problem creating web services from those methods.
    Do i have to change my application to fit the web services spec?
    Amir

  • Username and password token retrieval from SOAP web services

    We are implementing one JAX-WS Web services which requires to retrieve the username and password in SOAP header elements and use those for further use/processing.
    When we are retrieving username/password it’s coming as null. Please help ...
    if (Boolean.FALSE.equals(context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY))) {     
    try {
    SOAPMessage sm = context.getMessage();
    //SOAPEnvelope envelope = context.getMessage().getSOAPPart().getEnvelope();
    SOAPEnvelope envelope = sm.getSOAPPart().getEnvelope();
    SOAPHeader sh = envelope.getHeader();
    System.out.println("Message: "+envelope);
    System.out.println("Envelope: "+envelope);
    System.out.println("Header: "+sh.toString());
    Iterator it = sh.examineAllHeaderElements();
    while(it.hasNext()){
    System.out.println(it.next());
    String username;
    username = sh.getAttribute("Username");
    // username = sh.getAttributeValue("Username");
    //String password = sh.getAttribute("Password");
    System.out.println("uid:"+username);
    //System.out.println("pass: "+password);
    context.put("Username", username);
    //context.put("Passsword", password);
    // default scope is HANDLER (i.e., not readable by SEI
    // implementation)
    context.setScope("Username", MessageContext.Scope.APPLICATION);

    <S12:Envelope xmlns:S11="..." xmlns:wsse="..." xmlns:wsu= "...">
    <S12:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:Username>TestUser</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">TestPassword</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </S12:Header>
    </S12:Envelope>

  • Error combining Snapfish and ePrintCent​er accounts for HP Web Services

    Hi,
    I'm attempting to log into my existing ePrintCenter account and I'm now being presented with the following message:
    Your ePrintCenter account using <email> is associated with a Snapfish by HP account with the same email. These accounts will be combined into an HP Web Services account that will allow you to sign in to both Snapfish and ePrintCenter with one account.
    This is all good and well, however when I provide my Snapfish credentials (checked by going through forgot password and changing the password) the login process rejects my Snapfish password.
    How can I get past this in order to do some maintenance on my ePrintCenter account?
    thanks, Mark

    Hi wyzarde,
    Are you still receiving this screen when trying to log in?
    I was an HP employee.
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may select the "Kudos" button on any helpful post to give that person a quick thanks.

  • Using Client Side Extensions (SWF) to call external Web Service

    Hi,
    I'm using .swf files to extend my CRMOD application, and one of my requirements is to be able to show information on a custom applet using the Client Side Extensions. This information is coming from an external system, so i'm trying to call this external web service using .swf.
    When i create my swf application and i run it locally, i can access the web service and receive the results into my browser, but when i do the same call from the custom web applet in CRMOD i don't get any results.
    Can someone tell me if this is possible? And if so, how to do it?
    Best Regards,
    NF

    Post Author: luke
    CA Forum: Data Integration
    Yes. I  have figured out the way to do it.
    Luke.

  • Use installshield to create setup file from mvc web service

    I need help from gurus :)
    I have an mvc web service and I need to create a setup package with installshield but I don't know how to do it.
    I want create setup to install at another machine (under IIS)
    Can someone help me please?
    Thanks in advance.

    Hello,
    Welcome to MSDN forum.
    Your issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because you want to use InstallShield which we don't provide support, I suggest you to consult your issue on InstallShield forums for better support.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Use other application server to run Oracle generated web services

    Hi all,
    I am currently running an Oracle 9i database and application server (OC4J) and use WebservicesAssembler (JPublisher) to expose PL/SQL packages as web services to an external PDA application.
    Is it possible to run the EAR files (the assembled web service) generated in this way on another type of application server? This question because I need to use Resin in a live environment.
    If this is not possible, would there be a way to work around it? I mean by manually programming the web service against the PL/SQL package. And if so, has anybody tried that out before?
    Are there other alternatives?
    Thanks in advance for your help!
    Regards,
    Stijn Lambert

    Hello,
    Which version of OracleAS/Web Service stack are you using?
    If you are using a version prior to 10.1.3 the Web Service stack is proprietary and not portable.
    JAX-RPC used in 10.1.3 is more portable but you have to be very careful about the way you create your deployment descriptor.
    In a general manner you can always create pure JDBC/JPublisher clients and expose them using the Web Service that you want.
    Regards
    Tugdual Grall

  • Axis and Mime to send Images with Web Services

    Hi, I have been reading a lot of information about MIME and how I have to send images or attachaments with Web Services, and I am a little lost. I would to find a simple example to use MIME with AXIS 1.4 . Do anybody know where I can find some example to use attachements with AXIS???
    Thank you very much in advance

    Hi,
    When you are using JAX-WS, there is a tool wsimport, with which you are going to generate the artifacts required to implement the web service.
    When you pass the WSDL as a parameter to the wsimport tool, it will be create the required beans also(JAXB Objects).
    So need of any other external implementation of JAXB when you are working with JAXWS
    Thanks,

  • Public Web services

    I'm working on a Web Services client application which invokes Web Services methods through a proxy server.
    I'm looking for sites where sample web services are available to test my proxy server access.
    I appreciate some help.
    Regards.

    use HTTP basic authentication? In addition if you don't want the public internet to access it, hide it behind a firewall.

Maybe you are looking for