It seems mapproxy servlet does not work in 11.1.1.2

Dear Masters,
I used mapproxy?rtarget= to access mapviewer in JDeveloper 11.1.1.1 and everything was OK but when I switched to 11.1.1.2 mapproxy servlet does not return anything.
Is there any changes about mapproxy servlet?
Regards.

Hi,
in my web.xml file I see
<servlet-mapping>
<servlet-name>MapProxyServlet</servlet-name>
<url-pattern>/mapproxy/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
Frank

Similar Messages

  • Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upg

    Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upgrade from? So now I have spent lots $$ and nothing working. Why is this so complicated? what do I need to do?

    Hi Rave,
    Thanks for this; my issue is that I have now supposedly purchased a retail version of Acrobat X1 (i.e just spent more $$, after the upgrade attempt  to Acrobat X1 failed), and while this feigns an OK install, it fails in someway to override the "Upgrade Acrobat X1 version".  E.G. once I load up to read an acrobat file the "upgrade version" executes/intercepts and ask for serial numbers and check for a previous qualifying version which I do not have, (BUT what I do have is the current retail version of acrobat X1 which is not recognised)
    Do I need to uninstall and start over again? (I am reluctant to do this as I am sure serial number issues will arise, as I assume downloaded file will be cleaned up etc, and I am not spending more money trying again!)
    Any suggestions?

  • [JAXM] Several call to same servlet does not work

    I have a working jaxm client, which works fine. But for test purpose I wanted to send several requests to my server using the same connection.
    If I do // Send the message
    reply = connection.call(message, endpoint); it works fine.
    But if I try this:// Send the message
    reply = connection.call(message, endpoint);
    // Send it again
    reply = connection.call(message, endpoint);the first call success, but the second one crashes and
    I get the following exception in my client :java.io.FileNotFoundException: http://localhost:7001/SOAPRPCRouterServlet
            at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:545)
            at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:230)
            at com.sun.xml.messaging.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:203)
            at com.sun.xml.messaging.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:110)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.xml.messaging.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:89)And the following one in my server (weblogic 5.1) :Fri Jan 04 11:13:58 CET 2002:<E> <HTTP> Connection failure
    java.net.SocketException: Connection shutdown: JVM_recv in socket input stream read
            at java.net.SocketInputStream.socketRead(Native Method)
            at java.net.SocketInputStream.read(SocketInputStream.java:86)
            at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:209)
            at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)I tried to build a new message, but the result is exaclty the same.
    Does I do things in the wrong way (maybe connection must be closed and reopen for each message, but I didn't found anything about this in the doc) or is it a bug in JaxM ?

    I have a possible suggestion. The reference implementation sends a SOAP message via the HTTP protocol. The standard HTTP protocol approach is to open a connection, perform the operation, and then close the connection. I have a feeling that once you have used the SOAPConnection object to send and retrieve the message, the underlying HTTP connection is automatically closed.HTTP is a stateless protocol so once the server has delivered the request, it closes the connection and has no memory of the reuqest. Hence you cannot send subsequent requests on the same HTTP connection, any attempts to do so result in the errors that you see. What you will have to do is open up a new SOAPConnection object for each new message sent.
    Hope this helps.

  • After upgrade to version 20 of Firefox websites do not display anymore. Seems like v20 does not work well with ISA

    After upgrade to version 20, we receive the following error when trying to open a website:
    Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)
    Everything worked fine in the previous version of Firefox.

    Found the fix for this:
    Just set the following values to false in about:config.
    network.automatic-ntlm-auth.allow-proxies
    network.negotiate-auth.allow-proxies

  • Rtexprvalue true does not work

    I write a tag ,it works well( tomcat 5.5 ,jdk5):
         <u:repeat num="5">
                   ${count} of 5<br>
              </u:repeat>
         <%
              request.setAttribute("number",2);
         %>
    but when I use it like this:
              <u:repeat num="${number}">
                   ${count} of 5
              </u:repeat>     
    i got the error:
    NumberFormatException: For input string: "${number}"
    It seems the rtexprvalue does not work at runtime.
    tag class:
    import javax.servlet.jsp.JspException;
    import javax.servlet.jsp.tagext.SimpleTagSupport;
    import java.util.HashMap;
    import java.io.IOException;
    public class RepeatSimpleTag extends SimpleTagSupport {
         private int num;
         public void doTag() throws JspException, IOException {
              for (int i = 0; i < num; i++) {
                   getJspContext().setAttribute("count", String.valueOf(i + 1));
                   getJspBody().invoke(null);
         public void setNum(int num) {
              this.num = num;
    TLD:
         <tag>
              <name>repeat</name>
              <tag-class>boc.common.tags.RepeatSimpleTag</tag-class>
              <body-content>scriptless</body-content>
              <variable>
                   <description>Current invocation count (1 to num)</description>
                   <name-given>count</name-given>
              </variable>
              <attribute>
                   <name>num</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
         </tag>
    then I change the code to:
         public void setNum(String num) {
              this.num = Integer.parseInt(num);
    still got the error
    org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/spring/userauth.jsp:22
    19:           request.setAttribute("number",2);
    20:      %>
    21:      
    22:           <u:repeat num="${number}">
    23:                ${count} of 5
    24:           </u:repeat>          
    25:           <u:repeat num="5">
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    root cause
    java.lang.NumberFormatException: For input string: "${number}"
         java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         java.lang.Integer.parseInt(Integer.java:447)

    I set <el-ignored>true</el-ignored>
    change it to false and all is ok

  • TS4062 My Iphone won't appear in my devices in Itune.... And the WiFi does not work on my phone.... I seems like there is no solution to update my phone to the new ios on my computer or WiFi without using the 3g because of this!!! help me out

    My Iphone won't appear in my devices in Itune.... And the WiFi does not work on my phone.... I seems like there is no solution to update my phone to the new ios on my computer or WiFi without using the 3g because of this!!! help me out

    Hello there, TempestBelcher.
    It seems you've covered all the bases, but feel free to review the iPhone Troubleshooting Assistant for connectivity here:
    Apple - Support - iPhone - Calls Troubleshooting Assistant
    http://www.apple.com/support/iphone/assistant/calls/#section_0
    If you've followed all the instructions then there are a few good recommendations for what to do next in the last step.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • I have iMovie '11, and I am unable to access mpeg HD video files that I want to edit.  The files are fine (I can open and watch them using VLC), but I cannot seem to import the files into iMovie. File Import does not work.  Any suggestions??

    More detail: I have a bunch of mpeg HD video files that were shot on a SONY HDR-HC3 Handycam camcorder.  I would like to edit these into a single video production.  I can access and view the mpeg files using VLC (Quicktime does not work with them).  However, I seem to be unable to get the mpeg files to interface with iMovie '11 -- I cannot use the File --> Import command, nor can I drag-and-drop them into iMovie.
    Is there something anyone might suggest to get this to work?  Or are these files incompatible with iMovie?  If so, I assume I must purchase a different video editing software program (e.g. Adobe Premeir Pro).  Suggestions???
    Many thanks in advance for your time and consideration

      Yes, I tried that.   The files were ordered by their original numbers as imported from the camera, but I batched them through Phocoshop to downsize all of them into a more manageable file size.   I opened that destination folder from quick time  from where it said select image sequence.   I clicked on the first one and opened it.   The result was a large image with an arrow indicating a movie was ready to go.   When I pressed the arrow, though, I realized it had only imported that one frame so there was no movie.   The files are Jpgs and are about 450 KB each. 
        To your knowledge are there any links to iMovie tutorials or quick time tutorials that may address this situation?  Maybe there will be one I haven't looked at yet. 
        Thanks

  • BUG: Oracle Schema Processor does not work in Servlets

    We found a bug with Oracle's Schema Processor. It does not work in Servlets.
    When we try to validate a XML document in a Servlet it does not work, but we can execute the same code in a stand alone application and it works.
    The following is the code we are using:
    try {
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    } catch(Exception e){System.out.println("there is Error"+e.getMessage());}
    null

    I don't think this is related to Servlets per se.
    Check that the Schema processor classes used by the servlet container, and your application are the same.
    Java does not have proper versioning of classes, I have seen many applications collapse. People compiled their code on developer machines, where it worked fine, but when moved to a production machine they failed because the production machine had a different version of classes. Usually the name of the class doesn't change, but either a method or a variable is missing in several classes. VM doesn't complain but simply crashes.
    In your Schema Processor classes that are used by the servlet engine might be different from the one that the app uses. Do a search on the file system to see how many copy of the same class bundle (zip, jar) you have on the system.

  • How do I set up a mail group on mac mail?  All the advise on line seems to refer to 'address book' and I only have 'contacts'.  The guidance does not work when using 'contacts' - can anyone help me?

    How do I set up a mail group on mac mail?  All the advise on line seems to refer to 'address book' and I only have 'contacts'.  The guidance does not work when using 'contacts' - can anyone help me?

    Create a group and send mail
    http://www.dummies.com/how-to/content/how-to-create-a-basic-contact-group-in-mac -os-x-li.html
    http://www.macworld.com/article/1165582/how_to_email_groups_with_mail.html
    Best.

  • Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from

    Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from Best Buy.   What other information does Best Buy need?   What will they do?   Will I get a new box?   What happened to the days of just typing in a simple s/n?   

    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • In google chrome my keyboard does not work, but seemingly only on a particular website....any suggestions?

    my keyboard does not work, but seemingly only on a particular website while using Chrome....any suggestions?
    Using a MacBook  OSX 10.9.2   

    does it work in other browsers?  Also, what website?   When did this start happening?

  • No calls are going through or coming in, also my sms/mms does not work the only thing that seems to be working is mobile internet anyone help???

    No calls are going through or coming in, also my sms/mms does not work the only thing that seems to be working is mobile internet anyone help???
    When I try calling someone it beeps twice and says 'call failed' also when someone tries calling me it does not come through. Also SMS/MMS cannot be sent or recieved. Only mobile internet is working
    iPhone 5s
    ANYONE HELP???

    Restart your phone by holding the power and home button until the Apple logo appears. If that does not solve the issue contact your cell provider so they can resolve the issue.

  • HT1937 My Iphone 3GS has just restored and I completed the things on the Iphone and then it says no sim card activated and I tried everything it said if it does not work, but nothing seems to work.

    My Iphone 3GS has just restored and I completed the things on the Iphone and then it says no sim card activated and I tried everything it said if it does not work, but nothing seems to work?

    All iPhones require a SIM for activation.
    Insert a SIM in the iPhone.

  • Updated my iPhone to new iOS6 and my Memory Loader app does not work!  Is there a fix for the problem as it seems I am not the only one coming across this issue?

    Updated my iPhone to new iOS6 and my Memory Loader app does not work!  Is there a fix for the problem as it seems I am not the only one coming across this issue?

    Other than what you have already done, you should clear the cache from your browser and, if you use it, your Facebook app.  Also, deleting old texts can free up some room.

  • Has anyone been able to contact Adobe to learn why their Flash Player does not work on Mac OS 10.6.8, no matter how many updates you install?  This seems like a big error by Adobe.

    I have thee Mac computers with Mac OS 10.6.8, one of which is a Mac Pro.  No matter how many updates I install from Adobe, their Flash Player does not work on any of these 3 computers.  I don't know how to contact Adobe Systems about this problem, but I think it is their responsibility to make sure that their so-called "universal" software works proplerly on a relatively recent operating system like OS 10.6.8 that is still in widespread use.  When you install the updates, nothing happens -- not even an error message.  What is the point of a universal player that is not universal?  It works fine on my MacBook Pro with OS 9 Mavericks, but it does not work at all -- indeed, has never worked -- on my 3 Macs with OS 10.6.8.  Has anyone contacted Adobe Systems to find out why the Flash Player does not work with OS 10.6.8 and what they plan to do about it?

    Where are you getting Flash from?
    Get the appropriate dmg installer here and then run it.
    http://www.adobe.com/products/flashplayer/distribution3.html
    If it still won't install, do these two things: First uninstall any Flash by going into the second level Hard Drive Library>Internet Plug-ins, and trash the Flash Player.plugin and flashplayer.xpt. Then boot into Safe Boot, Shift at the startup chime (give it much longer than a usual boot) and run the installer while booted in Safe Boot.

Maybe you are looking for

  • No Audio Output Device - HP Pavilion DV6707us

    I, like many I have read about, am having an issue with the audio on my work laptop. It is an HP DV6707us running a Windows 7 64-bit operating system. The issue is basically this; an intermittent failure of my audio device. Scenario 1: Most times, I

  • Samsung TV as second display

    I have a late 2009 27inch iMac and I would like to use my Samsung TV (Model #UN32EH5000 32-Inch 1080p 60Hz LED TV) as a second display. The resolution on the Samsung TV is set to 1080p yet the picture is not as crisp as on my iMac Display. Any idea o

  • TG797n v3 log on to 10.0.0.138 User name and Password for wireless set-up

    I have a TG797n v3 on Windows 7 to a Dell XPS via ethernet cable. Has been working fine, but. . . just aquired an iPad Mini for family use.When trying to configure the iPad Mini, I can't get past the log in requirements of the "found" wireless networ

  • ALE for Accounting (Billing- IDOC- Accounting(target sys))

    Hi Gurus, Here i have a situation, source system: Up on creating a billing document it should generate a IDOC Target system: The idoc Generated by the source system should be processed to create accounting document. is this possible with ALE, Please

  • Flash Video Encoder CS3

    I want to convert a 12M .wmv file to flash video. I set the audio to be the same quality, make the dimensions smaller, and set the lower than what the wmv is set for. For some reason my flv file is 51M. How can I get the file size down closer to what