URL Creation

Hello All,
We have created a survey and trying to generate URL for that.
We are following according to the Best Practices Document. which says:
*>Open Parameter XML’s--->bsp* to create a new parameter with the following content.
Remember to replace the system settings (bold) by your respective CRM server settings.
Field     User action and values
ID     CRM_SVY_BSP_@<CRM system ID>_<CRM client>.XML
Description     BSP Parameterfile CS8
Content     <?xml version="1.0" encoding="UTF-8" ?>
  <SurveySystemParam Action = "http://pwdf0324.wdf.sap.corp:50054/sap/bc/bsp/sap/crm_svy_server/Survey.htm?sap-client=100"
Method="post"
Enctype="application/x-www-form-urlencoded"
AccessURL="http://pwdf0324.wdf.sap.corp: 50054/sap/bc/bsp/sap/crm_svy_server/Survey.htm"
IncludeStylesheetInOutput="true" />
When we are trying to generate URL with these details in client 100 we are suucessful, but unable to do the same in a different client of same server.
As the above clearly says Replace system settings with CRM seetings, we are unable to find out "50054" and"pwdf0324"
Please let us know what are these settings and where can we find them out.
2.   Also if we want to crete a URL through Http, how could we proceed.
Please respond ASP

Hi Raj,
I guess I don't understand what exactly you want to do.
But you can call iView like following
http://myportal:50000/irj/portal?NavigationTarget=ROLES://YOUR_iVIEW_ID
Otherwise following thread might be helpful for you.
Complete URL of an iView Component !!
Best Regards,
Nash

Similar Messages

  • Dynamic URL creation in Adapter Module

    I have a situation in which I need to create a dynamic URL to send data using an HTTP POST ( using  HTTPS).
    I created an UDF to use Dynamic Configuration, this works fine for the UrlParam in the HTTP CC and the TServerLocation in the SOAP CC.
    My issue is that both variables have the same limitation of 200 chars max, and sometimes the URL is longer than 200 chars (I have to pass more than 20 parameters in the URL). The message mapping with the UDF fails whenever I try to put more than 200 chars in the Dynamic Configuration Variables. Therefore I cannot use Dynamic Configuration.
    I'm now thinking of creating an Adapter Module which creates an URL out of the XML message passed to the adapter, and use this value to overrule the URL defined in the Communication Channel. The URL field in the Communication Channel does not have a  200 chars limitation.
    Does anybody know how to do this? Is it possible to replace the value of the URL field in the Communication Channel with another  value in an Adapter Module?
    I have to pass the data as parameters in the URL, not as Header fields in the message.
    Thanks,
    Andre

    Hello Chris,
    The error is:
    RuntimeException during appliction Java mapping com/sap/xi/tf/_mm_paymentClusterCreate_ Thrown: com.sap.aii.mappingtool.tf7.MessageMappingException: Runtime exception when processing target-field mapping /ns0:mt_newPaymentClusterData/merchant_name; root message: Exception:[java.lang.IllegalArgumentException: Value is too long (471/200):
    It's even in the SAP Help:
    http://help.sap.com/saphelp_nwpi711/helpdata/en/48/ce299c3a8e5430e10000000a42189b/frameset.htm
    The length of the attribute value is defined by the XI message protocol. Values can be a maximum of 200 characters long. If, for example, you assign longer values in the mapping or adapter modules then this can lead to processing errors at runtime or the values are shortened to 200 characters. This shortening can also lead to a processing error. The processing error that occurs depends on the components that access the attributes.

  • Regarding URL Creation

    I want to submit a request to action class Lookup.do with in the Portal context. I have a struts portlet associated with the Lookup action. How to create portal url for Lookup action in the following jsp.
    <%@ page language ="java" import="javax.portlet.PortletURL" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="http://www.bea.com/servers/portal/tags/netuix/render" prefix="render" %>
    <%@taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
    <html>
         <head>
              <script>
                   function doSubmit() {
                        document.lookupForm.action = 'kop/Lookup.do';
                        document.lookupForm.submit();
              </script>
              <title>Struts Application</title>
         </head>
         <body bgcolor="red">
         <html:errors />
              <html:form action="Lookup">
              <p><font face="Arial" size="3" color="white"><bean:message key="test.Heading"/></font>
              </p>
                   <table>
                        <tr>
                             <td><font face="Arial" size="3" color="white">Login Name:</font></td>
                             <td><html:text property="loginName" /></td>
                        </tr>
                        <tr>
                             <td><font face="Arial" size="3" color="white">Password:</font></td>
                             <td><html:password property="loginPassword" /></td>
                        </tr>
                        <tr>
                             <td><html:submit /></td>
                        </tr>
                   </table>
                   Click here to continue.
              </html:form>
    </html>

    Lalit,
    It is almost certainly a problem with your proxy configuration, as it works fine for me (with no proxy in between).
    John

  • Dynamic URL creation

    Hi Experts,
    I have a scenario where I need to call a particular URL via SOAP adapter.
    Now the URL is not constant. A part of the URL should be dynamically selected based on the payload value.
    For ex:
    https://collab.test.com/<name>/<agency>/groups.asmx
    Here, based on incoming payload data i need to populate the <name> and <agency> field in the communication channel.
    Do I need to write any UDF for Dynamic Configuration. If yes can you please guide in this regard.
    Thanks,
    Souvik

    Hi Souvik,
    Yes you need to write a UDF for setting this in the Dynamic Configuration. Please take a look at the below link of how you can use ASMA properties (point 6) to do the same:
    http://help.sap.com/saphelp_nwpi711/helpdata/en/48/327519a3af58d8e10000000a421937/content.htm
    Also take a look at this link:
    http://wiki.sdn.sap.com/wiki/display/profile/2007/06/22/SOAPAdapterdynamicURLconfiguration
    Here is the Sample code for it:
    //Get the dynamic configuration from the container
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    String url = "Your desired URL";   // the desired URL
    //Create the TServerLocation key in namespace http://sap.com/xi/XI/System/SOAP. This key will hold the dynamically created URL
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "TServerLocation");
    //Put the url value from the input in the configuration under the specified key
    conf.put(key, url);
    //return the data for mapping to the output
    return data;

  • Portal url creation

    Hi,
    in a jsp page (Portal application), how to create an url that points to
    an action in a jpf
    Thx
    Emmanuel

    hi,
    i need to keep the portal context...
    subba tanniru a ?crit :
    If the JSP is part of same JPF, use <netui:anchor> tag and specify action.
    Otherwise, use uri similar to struts.
    For example, to call 'goToPage1' action in /portalWeb/portlets/simple/simple.jpf, use Go To Page1. But You will loose portal context since you are directly going to page flow controller.
    Hope that helps
    -Subba

  • Folder url creation

    Hi.
    I want to create a link to a folder from within a content area and I was wondering if anyone could tell me how to dynamically find the folder id for a folder.
    I know the format of the url for the folder when it is accessed, but I dont know where the parameter _fid is stored. Is it in a table that I can reference?
    Thanks in advance,
    Bethany

    It's stored in a field ID table WWV_CORNERS.
    But i'm afaid it is not good idea to use pages id, because it will be changed after export and import site.
    Better way is using PAGENAME in http://www.mysite/pls/PORTAL30/url/FOLDER/PERSONALFOLDERS/A/ALEX/ format.

  • Calling external url like 'GOOGLE'  when user clicks on toolbar button

    Hi All,
           I have done the following steps for url creation:
       1. I have created an event and assigned it to newly created toolbar grp.Then in 'Define Application Layout' I have created an entry specifying name of application, toolbar, event, tab grp and version.
       2. Then in navigation for url generation I have created a method with blank object name. This method I have then assigned to a role.Here i have specified path for extenal link say 'google'.
       3. I have assigned same role to me in su01 transaction.
       4. when i run my application ,toolbar is getting displayed but when I click on toolbar nothing is getting open up.
               Is this the correct way for url generation or do i need to do something else?Is there any coding needs to be done?I have provided with steps done by me.Please help me further.
    Regards,
    vikas

    Hi.
    That's not possible in the PCUI since when the button is pressed a PCUI event is triggered and handle by the PCUI framework and we don't have access to the layout in order to react to such event (like placing javascript windows.open or kind of). The events defined in the PCUI are only supported by the PCUI framework. You could create an HTML container and then start the external web application (www.google.com or whatever) in this container (there is a good blog written by Gregor Wolf at <a href="/people/gregor.wolf3/blog/2005/05/27/use-crm-pcui-html-viewer-to-call-a-custom-url:///people/gregor.wolf3/blog/2005/05/27/use-crm-pcui-html-viewer-to-call-a-custom-url) or as Raj said you can use "Object Link Navigation" in order to start a new window with the PCUI layout where you can create another container with the web application you want to display (for more details have a look to the PCUI cookbook).
    Best regards.
    Armando Rodriguez.

  • Navigation (URL generation): is there general information?

    Hello people,
    is there any good documentation regarding the whole navigation/url-generation thing in PCUI? What I found in PCUI book is not very helpful.
    How do all the customizing transactions in crmc_blueprint_c-->navigation(url creation) fit together?
    How is it related to events (crmc_blueprint_c>application elements>events)? How does it relate to iViews and portal-roles?
    and to be more specific: in application for contact person, in tab page activities, how can i make the activity description a hyperlink to the activity application?
    thanks
    Andreas

    Hello Gregor,
    thanks for your advice!
    I already knew your blog, but the tracing functionality was new to me.
    My issue is still not solved; the activity-id is not linked by standard (at least it doesnt work), and this is exactly what i want to change, to make the activity-id (Vorgangs-ID) a hyperlink.
    If you have time, maybe you could please answer again?
    I'm dealing with the fieldgroup ACC_ACT_PROCESSTPYE, screen position 20
    Fieldname: OBJECT_ID
    Field type: input field
    Object-Link section::
    URL-type: portal-link
    Object-type: BUSINESSACTIVITYCRM
    Field Name-->Object Type: <blank>
    Method: APPLICATION
    Field Name --> Method: <blank>
    Field --> Object ID: OBJECT_KEY
    The definitions for Navigation(URL generation) are correct, also.
    I don't know what else could be wrong...
    thanks in Advance
    Andreas

  • Annotated URL for click tools

    Hi all,
    We are integrating CLICK TOOLS with CRMOD.In this, we need to pass an annotated URL to CLICK TOOLS. We created a weblink in Service Request and passed the Case Number to CLICK TOOLS. But the service request was not getting updated. We need to use "uriencodecomponent" to get this working. Could someone help me in using uriencodecomponent in CRMOD weblink URL creation
    I used the following in weblink URL creation to pass values to click tools:
    http://www.clicktools.com/survey?iv=3b129b067e0cb75&q1='+encodeURIComponent('%%%Id%%%')+'&q2='+encodeURIComponent('%%%Account_External_Id%%%')+'&q4='+encodeURIComponent('%%%M/M%%%')+'&q5='+encodeURIComponent('%%%Last_Name%%%')+'&q6='+encodeURIComponent('%%%First_Name%%%')+'&q7='+encodeURIComponent('%%%Personal_ADDR_Address1%%%|%%%Personal_ADDR2_Address2%%%|%%%PERSONAL_LIST_ZIP%%%|%%%Personal_CITY_City%%%|%%%Personal_COUNTRY_Country%%%')+'&q8='+encodeURIComponent('%%%Date_of_Birth%%%')+'&q9='+encodeURIComponent('%%%plChildren%%%')+'&q10='+encodeURIComponent('%%%Home_Phone_#%%%')+'&q11='+encodeURIComponent('%%%Cellular_
    Phone_#%%%')+'&q12='+encodeURIComponent('%%%Email_Address%%%')
    But in Click Tools the "uriencodecomponent" is stored as it is- like a string.It is not getting recognized.What is the correct format for this method when used in weblink URL creation in CRMOD?
    Thanks in advance
    sabarish

    I get the following error message when I try to sync CLICK TOOLS with CRMOD
    ERROR: Processing instance Consumer Contact feedback survey. Oracle error:
    com.oracle.crmod.servicerequest.ServiceRequest.setService RequestId(java.lang.String)

  • How to change sap-language parameter at runtime

    Hi
    I want to create a Change Language button on an webdynpro Application. I know that the parameter is determined during url creation, but i need the to give the user the posibility of changing the language without closing the browser and logging out etc.
    My idea is to us an Outbound plug assigned to lets say a Button. The plug is connected to an Inbound plug og the very same Window. So actually the Application will reload.
    The action on the button is like this
    data: l_language type sy-langu.
    l_language = cl_wd_runtime_services=>get_url_parameter( name = 'sap-language' ).
    wd_this->fire_language_plg(  ).
    Then i read the current language - i.ex: E
    But of course i will need to change the parameter sap-language to the new language - lets say: K
    But how?

    Hi,
    As far I know, there is no way to get the current url in browser. Alternately, you can get the url parameters and then construct the url with the parameters.
    write the below code in HANDLEDEFAULT method of Window:
    DATA: lt_parameters TYPE tihttpnvp.
    *Get URL params
      Wdevent->get_data(
      EXPORTING name = if_wd_application=>all_url_parameters
      IMPORTING value = lt_parameters ).
    *Construct URL
    CALL METHOD cl_wd_utilities=>construct_wd_url
         EXPORTING
           application_name = 'APPL_NAME' " your appl name
           it_parameters    = lt_parameters  " to this params itself you can append the sap-language
         IMPORTING
           out_absolute_url = lv_url.
    you may refer this document: Read URL Parameters in Web Dynpro ABAP
    Regards,
    Kiran

  • Open Videos in same player [help]

    I've altered this code to play multiple movies. The problem is that I'd like them all to use the same player, but they don't. Right now every time I click on a button to play a new video, a new player is created. This is a big problem because each new player uses up resources and soon the program crashes.
    Please Help if you can,
    -Alex
    import java.awt.*;
    import javax.swing.*;
    import java.net.*;
    import javax.media.*;
    * Demonstrate simple code to play a movie with Java Media Framework.
    * @author Ian F. Darwin, http://www.darwinsys.com/
    * @version $Id: JMFPlayer.java,v 1.9 2004/02/09 03:21:20 ian Exp $
    @SuppressWarnings("serial")
    public class JMFPlayer extends JPanel implements ControllerListener {
         public static JButton push;
         static JButton push2;
         static JPanel nupanel;
    public static int casska = 1;
    /** The player object */
    static Player thePlayer = null;
    /** The parent Frame we are in. */
    JFrame parentFrame = null;
    /** Our contentpane */
    Container cp;
    /** The visual component (if any) */
    Component visualComponent = null;
    /** The default control component (if any) */
    Component controlComponent = null;
    /** The name of this instance's media file. */
    String mediaName;
    /** The URL representing this media file. */
    URL theURL;
    /** Construct the player object and the GUI. */
    public JMFPlayer(JFrame pf, String media) {
    parentFrame = pf;
    mediaName = media;
    // cp = getContentPane();
    cp = this;
    cp.setLayout(new BorderLayout());
    try {
    theURL = new URL(getClass().getResource("."), mediaName);
    thePlayer = Manager.createPlayer(theURL);
    thePlayer.addControllerListener(this);
    } catch (MalformedURLException e) {
    System.err.println("JMF URL creation error: " + e);
    } catch (Exception e) {
    System.err.println("JMF Player creation error: " + e);
    return;
    //System.out.println("theURL = " + theURL);
    // Start the player: this will notify our ControllerListener.
    thePlayer.start(); // start playing
    /** Called to stop the audio, as from a Stop button or menuitem */
    public static void stop() {
    //if (thePlayer == null)
    //return;
    thePlayer.stop(); // stop playing!
    thePlayer.deallocate(); // free system resources
    /** Called when we are really finished (as from an Exit button). */
    public static void destroy() {
    //if (thePlayer == null)
    //return;
    thePlayer.close();
    /** Called by JMF when the Player has something to tell us about. */
    public synchronized void controllerUpdate(ControllerEvent event) {
    // System.out.println("controllerUpdate(" + event + ")");
    if (event instanceof RealizeCompleteEvent) {
    if ((visualComponent = thePlayer.getVisualComponent()) != null)
    cp.add(BorderLayout.CENTER, visualComponent);
    if ((controlComponent = thePlayer.getControlPanelComponent()) != null)
    //cp.add(BorderLayout.SOUTH, controlComponent);
    // re-size the main window
    if (parentFrame != null) {
    parentFrame.pack();
    parentFrame.setTitle(mediaName);
    public static void main(String[] argv) {
         push = new JButton ("Happy");
         push2 = new JButton ("Wicked");
         push.addActionListener(new ButtonListener());
         push2.addActionListener(new ButtonListener());
         nupanel = new JPanel(new GridLayout(9,1));
         nupanel.add (push);
         nupanel.add (push2);
    JFrame f = new JFrame("JMF Player Demo");
    Container frameCP = f.getContentPane();     
    JMFPlayer p = new JMFPlayer(f,
    argv.length == 0 ? "Angry.avi"
    : argv[0]);
    JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, nupanel,p);
    frameCP.add(BorderLayout.CENTER, sp);
    f.setSize(600, 400);
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //[[[[[Plays a new video file]]]]]
    public static void Happy()
         JFrame f = new JFrame("JMF Player Demo");
         JMFPlayer.destroy();
    JMFPlayer.thePlayer.close();
    JMFPlayer.thePlayer.realize();
    Container frameCP = f.getContentPane();     
    JMFPlayer p = new JMFPlayer(f,"Happy2.avi");
    JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, nupanel ,p);
    frameCP.add(BorderLayout.CENTER, sp);
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //[[[[[Plays a new video file]]]]]
    public static void Wicked()
         JFrame f = new JFrame("JMF Player Demo");
         JMFPlayer.destroy();
         JMFPlayer.thePlayer.close();
         JMFPlayer.thePlayer.realize();
    Container frameCP = f.getContentPane();     
    JMFPlayer p = new JMFPlayer(f,"Wicked.avi");
    JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, nupanel ,p);
    frameCP.add(BorderLayout.CENTER, sp);
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    Hostetler wrote:
    I've altered this code to play multiple movies. The problem is that I'd like them all to use the same player, but they don't. Right now every time I click on a button to play a new video, a new player is created. This is a big problem because each new player uses up resources and soon the program crashes.You can't use the same player to play multiple files. You need to realize that the Player object you think you have is actually a parent class for a bunch of different types of players. So, the Player that you have for the first movie probably can't play the second movie, etc. Because it's the wrong sub-type of Player.
    When you're done with a player object, close() it and get rid of all references to it. That'll allow it to be garbage collected. Then create a new one to play your next movie.
    And yeah, there may be memory leaks in the JMF code. There's nothing you can do about it, it won't ever be fixed because JMF is no longer supported. If this is going to be an issue for you, you're probably going to need to look elsewhere (JavaFX) for a movie player...
    Edited by: captfoss on May 11, 2009 1:54 PM

  • Multiple flows in one portlet

    Hi,
    Usually a web application will consist of many flows. But, while creating a portlet form an existing flow (WL 9.2B) I can select only one webflow. In this case, which tag-library should I use to create links between different flows in one portlet, to get a proper URL rewriting?
    Really appreciate any help.
    Best regards,
    Pawel Kozlowski

    You can use render tags. Check this out-
    http://e-docs.bea.com/workshop/docs81/doc/en/portal/taglib/navSkeletonRendering.html
    Or construct URLs on the run. Analyze how portal URLs look. Here are some 9.2Beta enhancements of how to simplify URL creation.
    http://e-docs.bea.com/wlp/docs81/url/simplify.html
    Seenu.

  • BBPSTART browser is not opening

    Hi friends,
    Could you please help me that I not able to open the browser properly through BBPSTART.
    I have activated all the ITS services but when I click on the test service, browser is showing as the server not found error page is being desplayed.
    Regards,
    sampath

    Hi
    Please use the standard SRM report - SIACPUBLISH_ALL_INTERNAL (Publish all Internet Services in one go)._
    Also, Please check that you have filled table TWPURLSVR that make the connection between ITS (integrated or not) and SRM server.
    Some other useful links ->
    Re: bbppu99 does not exist in SRM4.0 bbpstart
    Re: Connection via the Portal to SRM  5 - BBPSTART
    BBPSTART is unknown
    See OSS note 778488.
    Re: ITS Template not found
    BBPSTART/BBPGLOBAL logon page
    Create an URL iView in Portal with the URL http://<srm host>:<srmport>/sap/bc/gui/sap/its/bbpstart?sap-client=<clientno>
    if you dont know the procedure for URL creation , go through https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e4bbf0f9-0701-0010-6a8a-e8b2372f76d0
    Hope this will help. Do let me know.
    Regards
    - Atul

  • Entering login&password only one time?

    Hello,
    we have an appllication that is called from another by opening new brower window with URL http://..../pls/htmldb/f?p=107:1:::::P1_ID:12345
    The user is redirected to login page and after succesfully enter his login and password id redirected to page 1 and information obout object with ID 123456 are shown....
    My problem is that if another window is opened with URL say http://..../pls/htmldb/f?p=107:1:::::P1_ID:9999 the user needs to enter valid loginname and password again and new session is created. If I add the session id into URL
    then the session is reused and no login&password is needed.
    So the question : how can I make a user to enter login&password only once? Or how can i get the last session id that i should use in URL creation in my other appllication?
    Thanks for your help.

    Ivok - Your questions are perfectly reasonable. I didn't read your question carefully enough at first. You are right, you can't use &SESSION. in the URL itself. That substitution variable is for use during page rendering (during which time links are also rendered). In your case, you have a link on a page in application A that opens a popup window in application B. I assume application A is an APEX app (but maybe it isn't). If you don't have the session ID being used by app B, then the login page will be shown unless the page is a public page. So you might need a way for app A to get the current session ID from app B. Or you might be able to run both apps as one application in the same session. If you give us a little more detail about your specific requirements, we can go from there.
    Scott

  • Sax Parser application

    I have a Sax Parser Application which is working fine for parsing file with paths from D: or O: or N:
    Also I have the rights to access C: , but it gives me a following error when I access from C:
    java.net.MalformedURLException: unknown protocol: c
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at javax.xml.parsers.SAXParser.parse(Unknown Source)
    at javax.xml.parsers.SAXParser.parse(Unknown Source)
    at ProcessServlets.fileparser(ProcessServlets.java:47)
    at ProcessServlets.doGet(ProcessServlets.java:27)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:627)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:875)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
    at java.lang.Thread.run(Unknown Source)
    Edited by: Siddhesh77 on Jan 29, 2010 9:51 AM

    Siddhesh77 wrote:
    I have a Sax Parser Application which is working fine for parsing file with paths from D: or O: or N:
    Also I have the rights to access C: , but it gives me a following error when I access from C:
    java.net.MalformedURLException: unknown protocol: cThe exception says the URL you are providing is malformed.
    If you have any automatic file URL creation mechanism then check it first weather it is creating malformed URLs. I'll suggest to test your program with some static URL's.
    Please provide file URL's which are working and which are not working.

Maybe you are looking for

  • Error while generating HTML

    Hi, I have a design studio application I want to share publicly on BI Launch Pad for my company. The dashboard/application made in design studio works fine locally and on BI Platform public folder (through my login credentials). However, when other p

  • Error in mru internal routine: ORA-20001: no data found in tabular form

    Hi All, I am trying to do the Multi Row Update. Please go through the below process which i followes: > I have a table B which is of child table of A, the columns belongs to table B are B_ID, B_Name, B_Description and A_ID. > I have prepared a report

  • Infrared support

    InfraRed (MSI GeForce Fx 5600 VTDR128 VIVO) Does anybody have a software that work infrared receiver bilt in MSI GeForce Fx 5600 graphics card other than Media Center Deluxe II!:confused2: I had a freeware program from some russian site but i lost it

  • VI only runs in "lightbulb mode"

    I'm trying to run a VI that interfaces with a couple of external devices [one connected over a serial port (via a USB-to-Serial Port converter) and the other using GPIB (via a USB-to-GPIB converter].  I'm using the converters because my [newer] lapto

  • Smartforms: Printing Selective Pages

    My smartform have 5 pages. My aim is print selective pages (ie page 1-3). In the global definition -> initialization, i wrote the statement below:   OUTPUT_OPTIONS-TDPAGESLCT = '1-3'. My problem is all 5 pages are still being printed out instead of p