You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scout-dev@ws.apache.org by "Lin Sun (JIRA)" <sc...@ws.apache.org> on 2007/05/14 22:32:16 UTC

[jira] Created: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
-------------------------------------------------------------------------------------------------------

                 Key: SCOUT-34
                 URL: https://issues.apache.org/jira/browse/SCOUT-34
             Project: Scout
          Issue Type: Bug
          Components: Scout Implementation
    Affects Versions: 1.0
         Environment: win XP + sun 1.5 SDK
            Reporter: Lin Sun
         Assigned To: Anil Saldhana
             Fix For: 1.0
         Attachments: scout34.patch

This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:

<urn:discoveryURLs>
  <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
  </urn:discoveryURL>
</urn:discoveryURLs>
<urn:discoveryURLs>
  <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
  </urn:discoveryURL>
</urn:discoveryURLs>

This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.

<urn:discoveryURLs>
  <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
  </urn:discoveryURL>
  <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
  </urn:discoveryURL>
</urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Updated: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Lin Sun (JIRA)" <sc...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lin Sun updated SCOUT-34:
-------------------------

    Attachment: scout34.patch

> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Anil Saldhana
>             Fix For: 1.0
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Commented: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Lin Sun (JIRA)" <sc...@ws.apache.org>.
    [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12496076 ] 

Lin Sun commented on SCOUT-34:
------------------------------

Anil, you're welcome!:-)  I'd be grateful if someone can review and apply this patch if it makes sense.:)



> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Anil Saldhana
>             Fix For: 1.0
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Reopened: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Kurt Stam (JIRA)" <sc...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kurt Stam reopened SCOUT-34:
----------------------------


Need to add the right Fix Version

> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>            Assignee: Anil Saldhana
>             Fix For: 1.0rc1
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Closed: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Kurt Stam (JIRA)" <sc...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kurt Stam closed SCOUT-34.
--------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.0)
                   1.0rc1

> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>            Assignee: Anil Saldhana
>             Fix For: 1.0rc1
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Resolved: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Davanum Srinivas (JIRA)" <sc...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas resolved SCOUT-34.
-----------------------------------

    Resolution: Fixed

Applied in svn revision - 538277

-- dims

> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Anil Saldhana
>             Fix For: 1.0
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org


[jira] Commented: (SCOUT-34) DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity

Posted by "Anil Saldhana (JIRA)" <sc...@ws.apache.org>.
    [ https://issues.apache.org/jira/browse/SCOUT-34?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12496044 ] 

Anil Saldhana commented on SCOUT-34:
------------------------------------

Lin. Thanks for all your patches.

> DiscoveryURLs aren't constructed correctly when there is more than 1 discoveryURLs for a businessEntity
> -------------------------------------------------------------------------------------------------------
>
>                 Key: SCOUT-34
>                 URL: https://issues.apache.org/jira/browse/SCOUT-34
>             Project: Scout
>          Issue Type: Bug
>          Components: Scout Implementation
>    Affects Versions: 1.0
>         Environment: win XP + sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Anil Saldhana
>             Fix For: 1.0
>
>         Attachments: scout34.patch
>
>
> This was working fine for scout 0.5, but not with the latest trunk.  If a businessEntity contains more than one discoveryURLs, it will be constructed as this:
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>
> This will cause prob in juddi when abstractservice doPost is called and one of the discoveryURLs won't get processed and will be lost.  The fix is to call biz.addNewDiscoveryURLs() only once per iteration  (result below) so that only same as scout 0.5.
> <urn:discoveryURLs>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page2.html
>   </urn:discoveryURL>
>   <urn:discoveryURL useType="businessEntityExt">http://localhost:8080/page1.html
>   </urn:discoveryURL>
> </urn:discoveryURLs>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org